#!/usr/bin/perl use strict; use diagnostics; use lib qw(/usr/lib/libDrakX); use standalone; use common; use ugtk2 qw(:create :helpers :wrappers); use interactive; use harddrake::data; #- needs to stay after use-ugtk2 as long as this module defines globals containing some N() use POSIX qw(:sys_wait_h); # { field => [ short_translation, full_description] } my %fields = ( "alternative_drivers" => [ N("Alternative drivers"), N("the list of alternative drivers for this sound card") ], "bus" => [ N("Bus"), N("this is the physical bus on which the device is plugged (eg: PCI, USB, ...)") ], "channel" => [ N("Channel"), N("EIDE/SCSI channel") ], "bogomips" => [ N("Bogomips"), N("the GNU/Linux kernel needs to run a calculation loop at boot time to initialize a timer counter. Its result is stored as bogomips as a way to \"benchmark\" the cpu.") ], "bus_id" => [ N("Bus identification"), N("- PCI and USB devices: this lists the vendor, device, subvendor and subdevice PCI/USB ids") ], "bus_location" => [ N("Location on the bus"), N("- pci devices: this gives the PCI slot, device and function of this card - eide devices: the device is either a slave or a master device - scsi devices: the scsi bus and the scsi device ids") ], "cache size" => [ N("Cache size"), N("size of the (second level) cpu cache") ], "capacity" => [ N("Drive capacity"), N("special capacities of the driver (burning ability and or DVD support)") ], #-PO Translators, here "comas" is the medical coma, not the lexical coma!! "coma_bug" => [ N("Coma bug"), N("whether this cpu has the Cyrix 6x86 Coma bug") ], "cpu family" => [ N("Cpuid family"), N("family of the cpu (eg: 6 for i686 class)") ], "cpuid level" => [ N("Cpuid level"), N("information level that can be obtained through the cpuid instruction") ], "cpu MHz" => [ N("Frequency (MHz)"), N("the CPU frequency in MHz (Megahertz which in first approximation may be coarsely assimilated to number of instructions the cpu is able to execute per second)") ], "description" => [ N("Description"), N("this field describes the device") ], "device" => [ N("Old device file"), N("old static device name used in dev package") ], "devfs_device" => [ N("New devfs device"), N("new dynamic device name generated by core kernel devfs") ], #-PO Translators, here "module" is the "jargon term" for a kernel driver "driver" => [ N("Module"), N("the module of the GNU/Linux kernel that handles the device") ], "flags" => [ N("Flags"), N("CPU flags reported by the kernel") ], "fdiv_bug" => [ N("Fdiv bug"), N("Early Intel Pentium chips manufactured have a bug in their floating point processor which did not achieve the required precision when performing a Floating point DIVision (FDIV)") ], "fpu" => [ N("Is FPU present"), N("yes means the processor has an arithmetic coprocessor") ], "fpu_exception" => [ N("Whether the FPU has an irq vector"), N("yes means the arithmetic coprocessor has an exception vector attached") ], "f00f_bug" => [N("F00f bug"), N("early pentiums were buggy and freezed when decoding the F00F bytecode")], "hlt_bug" => [ N("Halt bug"), N("Some of the early i486DX-100 chips cannot reliably return to operating mode after the \"halt\" instruction is used") ], "info" => [N("Floppy format"), N("format of floppies supported by the drive")], "level" => [N("Level"), N("sub generation of the cpu")], "media_type" => [ N("Media class"), N("class of hardware device") ], "Model" => [N("Model"), N("hard disk model")], "model" => [N("Model"), N("generation of the cpu (eg: 8 for PentiumIII, ...)")], "model name" => [N("Model name"), N("official vendor name of the cpu")], "nbuttons" => [ N("Number of buttons"), N("the number of buttons the mouse has") ], "name" => [ N("Name"), N("the name of the CPU") ], "port" => [N("Port"), N("network printer port")], "processor" => [ N("Processor ID"), N("the number of the processor") ], "stepping" => [ N("Model stepping"), N("stepping of the cpu (sub model (generation) number)") ], "type" => [ N("Type"), N("the type of bus on which the mouse is connected") ], "Vendor" => [ N("Vendor"), N("the vendor name of the device") ], "vendor_id" => [ N("Vendor"), N("the vendor name of the processor") ], "wp" => [ N("Write protection"), N("the WP flag in the CR0 register of the cpu enforce write proctection at the memory page level, thus enabling the processor to prevent unchecked kernel accesses to user memory (aka this is a bug guard)") ], ); my ($in, %IDs, $pid, $w); my (%options, %check_boxes); my $conffile = "/etc/sysconfig/harddrake2/ui.conf"; my ($modem_check_box, $printer_check_box, $current_device, $current_configurator); #-PO Translators, please keep all "/" charaters !!! my %menus = ( 'options' => N("/_Options"), 'help' => N("/_Help") ); my %menu_options = ( 'PRINTERS_DETECTION' => [ $menus{options}, N("/Autodetect _printers") ], 'MODEMS_DETECTION' => [ $menus{options}, N("/Autodetect _modems") ], 'JAZZ_DETECTION' => [ $menus{options}, N("/Autodetect _jazz drives") ], ); my @menu_items = ( [ N("/_File"), undef, undef, undef, '' ], [ N("/_File").N("/_Quit"), N("Q"), \&quit_global, undef, '', 'gtk-quit' ], [ join('', @{$menu_options{PRINTERS_DETECTION}}), undef, sub { $options{PRINTERS_DETECTION} = $check_boxes{PRINTERS_DETECTION}->get_active }, undef, '' ], [ join('', @{$menu_options{MODEMS_DETECTION}}), undef, sub { $options{MODEMS_DETECTION} = $check_boxes{MODEMS_DETECTION}->get_active }, undef, '' ], [ join('', @{$menu_options{JAZZ_DETECTION}}), undef, sub { $options{JAZZ_DETECTION} = $check_boxes{JAZZ_DETECTION}->get_active }, undef, '' ], [ $menus{help}, undef, undef, undef, '' ], [ $menus{help}.N("/_Help"), undef, sub { unless (fork()) { exec("drakhelp --id harddrake") } }, undef, '' ], [ $menus{help}.N("/_Fields description"), undef, sub { if ($current_device) { create_dialog(N("Harddrake help"), N("Description of the fields:\n\n") #-PO Do not alter the and tags . join("\n\n", map { if_($fields{$_}[0], formatAlaTeX("$fields{$_}[0]: $fields{$_}[1]")) } sort keys %$current_device), { use_markup => 1, if_(!$::isEmbedded, transient => $w->{window}), height => 400, scroll => 1 }) } else { create_dialog(N("Select a device !"), N("Once you've selected a device, you'll be able to see the device information in fields displayed on the right frame (\"Information\")"), { if_(!$::isEmbedded, transient => $w->{window}) }) } }, undef, '' ], [ $menus{help}.N("/_Report Bug"), undef, sub { unless (fork()) { exec("drakbug --report harddrake2 &") } }, undef, '' ], [ $menus{help}.N("/_About..."), undef, sub { create_dialog(N("About Harddrake"), #-PO Do not alter the and tags N("This is HardDrake, a Mandrake hardware configuration tool.\nVersion: %s Author: Thierry Vignaud <tvignaud\@mandrakesoft.com>\n\n", $harddrake::data::version) . formatAlaTeX($::license), { use_markup => 1, if_(!$::isEmbedded, transient => $w->{window}) }); }, undef, '' ] ); $in = 'interactive'->vnew('su'); #require_root_capability(); my $wait = $in->wait_message(N("Please wait"), N("Detection in progress")); gtkflush(); %options = getVarsFromSh($conffile); # Build the gui add_icon_path('/usr/share/pixmaps/harddrake2/'); $::noBorder = 1; $w = ugtk2->new(N("Harddrake2 version %s", $harddrake::data::version)); local $::main_window; # fake diagnostics pragma my ($menubar, $factory, $opt_menu, $help_menu); if ($::isEmbedded) { ($menubar, $factory) = create_factory_popup_menu($::Plug, @menu_items); $opt_menu = $factory->get_widget("
" . strip_first_underscore($menus{options})); $help_menu = $factory->get_widget("
" . strip_first_underscore($menus{help})); } else { $::main_window = $w->{rwindow}; ($menubar, $factory) = create_factory_menu($w->{rwindow}, @menu_items); $w->{window}->set_size_request(805, 550); } my $tree_model = Gtk2::TreeStore->new("Gtk2::Gdk::Pixbuf", "Glib::String", "Glib::Int"); my ($statusbar, $sig_id); $w->{window}->add(gtkpack_(0, Gtk2::VBox->new(0, 0), if_(!$::isEmbedded, 0, $menubar), 1, create_hpaned(gtkadd(Gtk2::Frame->new(N("Detected hardware")), create_scrolled_window(gtkset_size_request(my $tree = Gtk2::TreeView->new_with_model($tree_model), $::isEmbedded ? 250 : 350, -1), ['automatic', 'automatic'])), gtkpack_(0, Gtk2::VBox->new(0, 0), 1, gtkadd(my $frame = Gtk2::Frame->new(N("Information")), create_scrolled_window(my $text = Gtk2::TextView->new)), 0, my $module_cfg_button = gtksignal_connect(Gtk2::Button->new(N("Configure module")), clicked => sub { require modules::interactive; modules::interactive::config_window($in, $current_device); gtkset_mousecursor_normal(); }), 0, my $config_button = gtksignal_connect(Gtk2::Button->new(N("Run config tool")), # we've a configurator, let's add a button for it and show it clicked => sub { return 1 if defined $pid; if ($pid = fork()) { $sig_id = $statusbar->push($statusbar->get_context_id("id"), N("Running \"%s\" ...", $current_configurator)); } else { exec($current_configurator) or die "$current_configurator missing\n"; } }) ), ), 0, $statusbar = Gtk2::Statusbar->new, if_($::isEmbedded, 0, gtkpack(create_hbox(), gtksignal_connect(Gtk2::Button->new(N("Options")), event => popup_menu($opt_menu), $menubar), gtksignal_connect(Gtk2::Button->new(N("Help")), event => popup_menu($help_menu), $menubar), gtksignal_connect(Gtk2::Button->new(N("Quit")), clicked => \&quit_global), ), ) ) ); $text->set_wrap_mode('word'); $frame->set_size_request(300, 450) unless $::isEmbedded; # $tree->set_column_auto_resize(0, 1); my (@data, @configurators); $tree->append_column(my $pixcolumn = Gtk2::TreeViewColumn->new_with_attributes(undef, Gtk2::CellRendererPixbuf->new, 'pixbuf' => 0)); $tree->append_column(my $textcolumn = Gtk2::TreeViewColumn->new_with_attributes(undef, Gtk2::CellRendererText->new, 'text' => 1)); $tree->set_headers_visible(0); $tree->get_selection->signal_connect('changed' => sub { my ($select) = @_; my ($model, $iter) = $select->get_selected; if ($model) { my $idx = $model->get($iter, 2); $current_device = $data[$idx]; if ($idx ne -1) { use Gtk2::Pango; gtktext_insert($text, [ map { # The U+200E character is to force LTR display, as what what follows the colon is always in LTR (device names, paths, etc), # this ensures proper displaying of names like /dev/fd0 (otherwise it gets 'dev/fd0/'). # it must come *after* the space, as the space must follow the colon following the direction of writting. if_($_ && $fields{$_}[0], [ $fields{$_}[0] . ": \x{200e}", { 'foreground' => 'royalblue3', 'weight' => Gtk2::Pango->PANGO_WEIGHT_BOLD } ], [ ($current_device->{$_} =~ /^(unknown)/ ? N("unknown") : $current_device->{$_} =~ /^(Unknown)/ ? N("Unknown") : $current_device->{$_} eq 'yes' ? N("Yes") : $current_device->{$_} eq 'no' ? N("No") : $current_device->{$_}) . "\n\n", { 'foreground' => ($_ eq 'driver' && $current_device->{$_} =~ /^unknown|^Bad:/ ? 'indian red' : 'black') } ]) } sort keys %$current_device ]); foreach (keys %$current_device) { print "Warning: skip \"$_\" field => \"$current_device->{$_}\"\n\n" unless $fields{$_}[0]; }; # if we've valid driver, let's offer to configure it, else hide buttons show_hide(defined($current_device->{driver}) && $current_device->{driver} !~ /^unknown|^Bad|^Card|^Hsf|^Removable:|\|/, $module_cfg_button); $current_configurator = $configurators[$idx]; show_hide(-x first(split /\s+/, $current_configurator), $config_button); # strip arguments for -x test return 1; } } $text->get_buffer->set_text(N("Click on a device in the left tree in order to display its information here.")); undef $current_device; $config_button->hide; $module_cfg_button->hide; }); my $index = 0; # Fill the graphic devices tree with a "tree branch" widget per device category foreach (@harddrake::data::tree) { my ($Ident, $title, $icon, $configurator, $detector) = @$_; next if ref($detector) ne "CODE"; #skip class witouth detector next if $Ident =~ /(MODEM|PRINTER)/ && $::testing; next if $Ident =~ /JAZZ/ && !$options{JAZZ_DETECTION}; next if $Ident =~ /MODEM/ && !$options{MODEMS_DETECTION}; next if $Ident =~ /PRINTER/ && !$options{PRINTERS_DETECTION}; my @devices = &$detector; next unless @devices; # Skip empty class (no devices) my $parent_iter = $tree_model->append_set(undef, [ 0 => gtkcreate_pixbuf($icon), 1 => $title, 2 => -1 ]); # Fill the graphic tree with a "tree leaf" widget per device foreach (@devices) { # we really should test for $title there: if ($_->{bus} && $_->{bus} eq "PCI") { my $i = $_; $_->{bus_id} = join ':', map { if_($i->{$_} ne "65535", sprintf("%lx", $i->{$_})) } qw(vendor id subvendor subid); $_->{bus_location} = join ':', map { sprintf("%lx", $i->{$_}) } qw(pci_bus pci_device pci_function); } # split description into manufacturer/description ($_->{Vendor}, $_->{description}) = split(/\|/, $_->{description}) if $_->{description}; if ($_->{val}) { # Scanner ? my $val = $_->{val}; ($_->{Vendor}, $_->{description}) = split(/\|/, $val->{DESCRIPTION}); } # EIDE detection incoherency: if ($_->{bus} && $_->{bus} eq 'ide') { $_->{channel} = $_->{channel} ? N("secondary") : N("primary"); delete $_->{info}; } elsif ($_->{bus} && $_->{bus} !~ /USB|PCI/) { # SCSI detection incoherency: my $i = $_; $_->{bus_location} = join ':', map { sprintf("%lx", $i->{$_}) } qw(channel id lun); } if (defined $_->{capacity}) { my ($burner, $dvd) = (N("burner"), N("DVD")); $_->{capacity} =~ s/burner/$burner/; $_->{capacity} =~ s/DVD/$dvd/; } $configurator .= harddrake::data::set_removable_configurator($Ident, $_); if ($Ident eq "AUDIO") { require harddrake::sound; my $alter = harddrake::sound::get_alternative($_->{driver}); my $alternative_drivers = join(':', @$alter) if $alter->[0] ne 'unknown'; $_->{alternative_drivers} = $alternative_drivers if $alternative_drivers; } rename_field($_, 'usb_description', 'description'); rename_field($_, 'vendor_name', 'Vendor'); rename_field($_, 'usb_driver', 'driver'); rename_field($_, 'usb_media_type', 'media_type'); foreach my $i (qw(MOUSETYPE XMOUSETYPE auxmouse devfs_prefix id pci_bus pci_device pci_function subid subvendor unsafe usb_bus usb_pci_bus usb_pci_device usb_vendor val vendor wacom)) { delete $_->{$i} }; my $custom_id = harddrake::data::custom_id($_, $title); foreach my $field (qw(devfs_device device)) { $_->{$field} = '/dev/'.$_->{$field} if $_->{$field}; } $tree_model->append_set($parent_iter, [ 1 => $custom_id, 2 => $index++ ]); push @data, $_; push @configurators, $configurator; } $tree->expand_row($tree_model->get_path($parent_iter), 1) unless $title eq N("Unknown/Others"); } $SIG{CHLD} = sub { undef $pid; $statusbar->pop($sig_id); # reap zombies my $child_pid; do { $child_pid = waitpid(-1, POSIX::WNOHANG) } until $child_pid > 0; }; $w->{rwindow}->signal_connect(delete_event => \&quit_global); $w->{rwindow}->set_position('center') unless $::isEmbedded; foreach (keys %menu_options) { my $title = strip_first_underscore(@{$menu_options{$_}}); $options{$_} = 0 unless defined($options{$_}); # force detection by default $check_boxes{$_} = $factory->get_widget("
" . $title); $check_boxes{$_}->set_active($options{$_}); # restore saved values } $textcolumn->set_min_width(350); #$textcolumn->set_minmax_width(400); $textcolumn->set_sizing('GTK_TREE_VIEW_COLUMN_AUTOSIZE');#GROW_ONLY #$tree->columns_autosize(); $tree->signal_connect(realize => sub { $tree->get_selection->select_path(Gtk2::TreePath->new_first) }); $w->{rwindow}->show_all; undef $wait; gtkset_mousecursor_normal(); $_->hide foreach $module_cfg_button, $config_button; # hide buttons while no device $w->main; sub quit_global() { kill(15, $pid) if $pid; setVarsInSh($conffile, \%options); ugtk2->exit(0); } sub show_hide { my ($bool, $button) = @_; if ($bool) { $button->show } else { $button->hide } } sub strip_first_underscore { join '', map { s/_//; $_ } @_; } sub rename_field { my ($dev, $field, $new_field) = @_; if ($dev->{$field}) { if ($dev->{$new_field}) { $dev->{$new_field} .= " ($dev->{$field})"; } else { $dev->{$new_field} = $dev->{$field}; } delete $dev->{$field}; } } sub popup_menu { my ($menu) = @_; sub { my (undef, $event) = @_; if ($event->type eq 'button-press') { $menu->popup(undef, undef, undef, undef, $event->button, $event->time); # Tell calling code that we have handled this event; the buck stops here. return 1; } # Tell calling code that we have not handled this event; pass it on. return 0; } } tat' width='100%'> -rw-r--r--perl-install/share/po/nl.po4888
-rw-r--r--perl-install/share/po/no.po442
-rw-r--r--perl-install/share/po/pl.po5177
-rw-r--r--perl-install/share/po/pt.po7236
-rw-r--r--perl-install/share/po/pt_BR.po7325
-rw-r--r--perl-install/share/po/ro.po4801
-rw-r--r--perl-install/share/po/ru.po5715
-rw-r--r--perl-install/share/po/sk.po5220
-rw-r--r--perl-install/share/po/sp.po442
-rw-r--r--perl-install/share/po/sr.po6203
-rw-r--r--perl-install/share/po/sv.po6907
-rw-r--r--perl-install/share/po/th.po6107
-rw-r--r--perl-install/share/po/tr.po4941
-rw-r--r--perl-install/share/po/uk.po4905
-rw-r--r--perl-install/share/po/vi.po8343
-rw-r--r--perl-install/share/po/wa.po5981
42 files changed, 143723 insertions, 88446 deletions
diff --git a/perl-install/share/po/DrakX.pot b/perl-install/share/po/DrakX.pot
index 4aa6a5123..848710a4c 100644
--- a/perl-install/share/po/DrakX.pot
+++ b/perl-install/share/po/DrakX.pot
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: 2001-04-13 23:10+0200\n"
+"POT-Creation-Date: 2001-04-17 16:58+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -14,84 +14,84 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: ENCODING\n"
-#: ../../Xconfigurator.pm_.c:231
+#: ../../Xconfigurator.pm_.c:232
msgid "Configure all heads independantly"
msgstr ""
-#: ../../Xconfigurator.pm_.c:232
+#: ../../Xconfigurator.pm_.c:233
msgid "Use Xinerama extension"
msgstr ""
-#: ../../Xconfigurator.pm_.c:235
+#: ../../Xconfigurator.pm_.c:236
#, c-format
msgid "Configure only card \"%s\" (%s)"
msgstr ""
-#: ../../Xconfigurator.pm_.c:238
+#: ../../Xconfigurator.pm_.c:239
msgid "Multi-head configuration"
msgstr ""
-#: ../../Xconfigurator.pm_.c:239
+#: ../../Xconfigurator.pm_.c:240
msgid ""
"Your system support multiple head configuration.\n"
"What do you want to do?"
msgstr ""
-#: ../../Xconfigurator.pm_.c:248
+#: ../../Xconfigurator.pm_.c:249
msgid "Graphic card"
msgstr ""
-#: ../../Xconfigurator.pm_.c:248
+#: ../../Xconfigurator.pm_.c:249
msgid "Select a graphic card"
msgstr ""
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfigurator.pm_.c:250
msgid "Choose a X server"
msgstr ""
-#: ../../Xconfigurator.pm_.c:249
+#: ../../Xconfigurator.pm_.c:250
msgid "X server"
msgstr ""
-#: ../../Xconfigurator.pm_.c:302 ../../Xconfigurator.pm_.c:309
+#: ../../Xconfigurator.pm_.c:304 ../../Xconfigurator.pm_.c:311
#, c-format
msgid "XFree %s"
msgstr ""
-#: ../../Xconfigurator.pm_.c:305
+#: ../../Xconfigurator.pm_.c:307
msgid "Which configuration of XFree do you want to have?"
msgstr ""
-#: ../../Xconfigurator.pm_.c:318
+#: ../../Xconfigurator.pm_.c:320
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-#: ../../Xconfigurator.pm_.c:320 ../../Xconfigurator.pm_.c:353
+#: ../../Xconfigurator.pm_.c:322 ../../Xconfigurator.pm_.c:355
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
-#: ../../Xconfigurator.pm_.c:322 ../../Xconfigurator.pm_.c:355
+#: ../../Xconfigurator.pm_.c:324 ../../Xconfigurator.pm_.c:357
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr ""
-#: ../../Xconfigurator.pm_.c:330 ../../Xconfigurator.pm_.c:344
+#: ../../Xconfigurator.pm_.c:332 ../../Xconfigurator.pm_.c:346
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
-#: ../../Xconfigurator.pm_.c:332 ../../Xconfigurator.pm_.c:346
+#: ../../Xconfigurator.pm_.c:334 ../../Xconfigurator.pm_.c:348
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr ""
-#: ../../Xconfigurator.pm_.c:341
+#: ../../Xconfigurator.pm_.c:343
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -99,27 +99,27 @@ msgid ""
"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-#: ../../Xconfigurator.pm_.c:361
+#: ../../Xconfigurator.pm_.c:363
msgid "XFree configuration"
msgstr ""
-#: ../../Xconfigurator.pm_.c:394
+#: ../../Xconfigurator.pm_.c:396
msgid "Select the memory size of your graphic card"
msgstr ""
-#: ../../Xconfigurator.pm_.c:441
+#: ../../Xconfigurator.pm_.c:443
msgid "Choose options for server"
msgstr ""
-#: ../../Xconfigurator.pm_.c:458
+#: ../../Xconfigurator.pm_.c:460
msgid "Choose a monitor"
msgstr ""
-#: ../../Xconfigurator.pm_.c:458
+#: ../../Xconfigurator.pm_.c:460
msgid "Monitor"
msgstr ""
-#: ../../Xconfigurator.pm_.c:461
+#: ../../Xconfigurator.pm_.c:463
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -133,190 +133,190 @@ msgid ""
" If in doubt, choose a conservative setting."
msgstr ""
-#: ../../Xconfigurator.pm_.c:468
+#: ../../Xconfigurator.pm_.c:470
msgid "Horizontal refresh rate"
msgstr ""
-#: ../../Xconfigurator.pm_.c:469
+#: ../../Xconfigurator.pm_.c:471
msgid "Vertical refresh rate"
msgstr ""
-#: ../../Xconfigurator.pm_.c:506
+#: ../../Xconfigurator.pm_.c:508
msgid "Monitor not configured"
msgstr ""
-#: ../../Xconfigurator.pm_.c:509
+#: ../../Xconfigurator.pm_.c:511
msgid "Graphic card not configured yet"
msgstr ""
-#: ../../Xconfigurator.pm_.c:512
+#: ../../Xconfigurator.pm_.c:514
msgid "Resolutions not chosen yet"
msgstr ""
-#: ../../Xconfigurator.pm_.c:528
+#: ../../Xconfigurator.pm_.c:530
msgid "Do you want to test the configuration?"
msgstr ""
-#: ../../Xconfigurator.pm_.c:532
+#: ../../Xconfigurator.pm_.c:534
msgid "Warning: testing this graphic card may freeze your computer"
msgstr ""
-#: ../../Xconfigurator.pm_.c:535
+#: ../../Xconfigurator.pm_.c:537
msgid "Test of the configuration"
msgstr ""
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfigurator.pm_.c:576
msgid ""
"\n"
"try to change some parameters"
msgstr ""
-#: ../../Xconfigurator.pm_.c:574
+#: ../../Xconfigurator.pm_.c:576
msgid "An error has occurred:"
msgstr ""
-#: ../../Xconfigurator.pm_.c:596
+#: ../../Xconfigurator.pm_.c:598
#, c-format
msgid "Leaving in %d seconds"
msgstr ""
-#: ../../Xconfigurator.pm_.c:606
+#: ../../Xconfigurator.pm_.c:609
msgid "Is this the correct setting?"
msgstr ""
-#: ../../Xconfigurator.pm_.c:614
+#: ../../Xconfigurator.pm_.c:617
msgid "An error has occurred, try to change some parameters"
msgstr ""
-#: ../../Xconfigurator.pm_.c:661 ../../printerdrake.pm_.c:277
+#: ../../Xconfigurator.pm_.c:663 ../../printerdrake.pm_.c:277
#: ../../services.pm_.c:125
msgid "Resolution"
msgstr ""
-#: ../../Xconfigurator.pm_.c:701
+#: ../../Xconfigurator.pm_.c:710
msgid "Choose the resolution and the color depth"
msgstr ""
-#: ../../Xconfigurator.pm_.c:703
+#: ../../Xconfigurator.pm_.c:712
#, c-format
msgid "Graphic card: %s"
msgstr ""
-#: ../../Xconfigurator.pm_.c:704
+#: ../../Xconfigurator.pm_.c:713
#, c-format
msgid "XFree86 server: %s"
msgstr ""
-#: ../../Xconfigurator.pm_.c:720 ../../standalone/draknet_.c:273
-#: ../../standalone/draknet_.c:276
+#: ../../Xconfigurator.pm_.c:729 ../../standalone/draknet_.c:280
+#: ../../standalone/draknet_.c:283
msgid "Expert Mode"
msgstr ""
-#: ../../Xconfigurator.pm_.c:721
+#: ../../Xconfigurator.pm_.c:730
msgid "Show all"
msgstr ""
-#: ../../Xconfigurator.pm_.c:763
+#: ../../Xconfigurator.pm_.c:773
msgid "Resolutions"
msgstr ""
-#: ../../Xconfigurator.pm_.c:1287
+#: ../../Xconfigurator.pm_.c:1299
#, c-format
msgid "Keyboard layout: %s\n"
msgstr ""
-#: ../../Xconfigurator.pm_.c:1288
+#: ../../Xconfigurator.pm_.c:1300
#, c-format
msgid "Mouse type: %s\n"
msgstr ""
-#: ../../Xconfigurator.pm_.c:1289
+#: ../../Xconfigurator.pm_.c:1301
#, c-format
msgid "Mouse device: %s\n"
msgstr ""
-#: ../../Xconfigurator.pm_.c:1290
+#: ../../Xconfigurator.pm_.c:1302
#, c-format
msgid "Monitor: %s\n"
msgstr ""
-#: ../../Xconfigurator.pm_.c:1291
+#: ../../Xconfigurator.pm_.c:1303
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr ""
-#: ../../Xconfigurator.pm_.c:1292
+#: ../../Xconfigurator.pm_.c:1304
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr ""
-#: ../../Xconfigurator.pm_.c:1293
+#: ../../Xconfigurator.pm_.c:1305
#, c-format
msgid "Graphic card: %s\n"
msgstr ""
-#: ../../Xconfigurator.pm_.c:1294
+#: ../../Xconfigurator.pm_.c:1306
#, c-format
msgid "Graphic memory: %s kB\n"
msgstr ""
-#: ../../Xconfigurator.pm_.c:1296
+#: ../../Xconfigurator.pm_.c:1308
#, c-format
msgid "Color depth: %s\n"
msgstr ""
-#: ../../Xconfigurator.pm_.c:1297
+#: ../../Xconfigurator.pm_.c:1309
#, c-format
msgid "Resolution: %s\n"
msgstr ""
-#: ../../Xconfigurator.pm_.c:1299
+#: ../../Xconfigurator.pm_.c:1311
#, c-format
msgid "XFree86 server: %s\n"
msgstr ""
-#: ../../Xconfigurator.pm_.c:1300
+#: ../../Xconfigurator.pm_.c:1312
#, c-format
msgid "XFree86 driver: %s\n"
msgstr ""
-#: ../../Xconfigurator.pm_.c:1319
+#: ../../Xconfigurator.pm_.c:1331
msgid "Preparing X-Window configuration"
msgstr ""
-#: ../../Xconfigurator.pm_.c:1339
+#: ../../Xconfigurator.pm_.c:1351
msgid "What do you want to do?"
msgstr ""
-#: ../../Xconfigurator.pm_.c:1344
+#: ../../Xconfigurator.pm_.c:1356
msgid "Change Monitor"
msgstr ""
-#: ../../Xconfigurator.pm_.c:1345
+#: ../../Xconfigurator.pm_.c:1357
msgid "Change Graphic card"
msgstr ""
-#: ../../Xconfigurator.pm_.c:1347
+#: ../../Xconfigurator.pm_.c:1359
msgid "Change Server options"
msgstr ""
-#: ../../Xconfigurator.pm_.c:1348
+#: ../../Xconfigurator.pm_.c:1360
msgid "Change Resolution"
msgstr ""
-#: ../../Xconfigurator.pm_.c:1349
+#: ../../Xconfigurator.pm_.c:1361
msgid "Show information"
msgstr ""
-#: ../../Xconfigurator.pm_.c:1350
+#: ../../Xconfigurator.pm_.c:1362
msgid "Test again"
msgstr ""
-#: ../../Xconfigurator.pm_.c:1351 ../../bootlook.pm_.c:220
+#: ../../Xconfigurator.pm_.c:1363 ../../bootlook.pm_.c:220
msgid "Quit"
msgstr ""
-#: ../../Xconfigurator.pm_.c:1359
+#: ../../Xconfigurator.pm_.c:1371
#, c-format
msgid ""
"Keep the changes?\n"
@@ -325,20 +325,20 @@ msgid ""
"%s"
msgstr ""
-#: ../../Xconfigurator.pm_.c:1380
+#: ../../Xconfigurator.pm_.c:1392
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr ""
-#: ../../Xconfigurator.pm_.c:1400
+#: ../../Xconfigurator.pm_.c:1412
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr ""
-#: ../../Xconfigurator.pm_.c:1403
+#: ../../Xconfigurator.pm_.c:1415
msgid "X at startup"
msgstr ""
-#: ../../Xconfigurator.pm_.c:1404
+#: ../../Xconfigurator.pm_.c:1416
msgid ""
"I can set up your computer to automatically start X upon booting.\n"
"Would you like X to start when you reboot?"
@@ -392,51 +392,51 @@ msgstr ""
msgid "16 MB or more"
msgstr ""
-#: ../../Xconfigurator_consts.pm_.c:119
+#: ../../Xconfigurator_consts.pm_.c:120
msgid "Standard VGA, 640x480 at 60 Hz"
msgstr ""
-#: ../../Xconfigurator_consts.pm_.c:120
+#: ../../Xconfigurator_consts.pm_.c:121
msgid "Super VGA, 800x600 at 56 Hz"
msgstr ""
-#: ../../Xconfigurator_consts.pm_.c:121
+#: ../../Xconfigurator_consts.pm_.c:122
msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
msgstr ""
-#: ../../Xconfigurator_consts.pm_.c:122
+#: ../../Xconfigurator_consts.pm_.c:123
msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
msgstr ""
-#: ../../Xconfigurator_consts.pm_.c:123
+#: ../../Xconfigurator_consts.pm_.c:124
msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
msgstr ""
-#: ../../Xconfigurator_consts.pm_.c:124
+#: ../../Xconfigurator_consts.pm_.c:125
msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
msgstr ""
-#: ../../Xconfigurator_consts.pm_.c:125
+#: ../../Xconfigurator_consts.pm_.c:126
msgid "High Frequency SVGA, 1024x768 at 70 Hz"
msgstr ""
-#: ../../Xconfigurator_consts.pm_.c:126
+#: ../../Xconfigurator_consts.pm_.c:127
msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
msgstr ""
-#: ../../Xconfigurator_consts.pm_.c:127
+#: ../../Xconfigurator_consts.pm_.c:128
msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
msgstr ""
-#: ../../Xconfigurator_consts.pm_.c:128
+#: ../../Xconfigurator_consts.pm_.c:129
msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
msgstr ""
-#: ../../Xconfigurator_consts.pm_.c:129
+#: ../../Xconfigurator_consts.pm_.c:130
msgid "Monitor that can do 1600x1200 at 70 Hz"
msgstr ""
-#: ../../Xconfigurator_consts.pm_.c:130
+#: ../../Xconfigurator_consts.pm_.c:131
msgid "Monitor that can do 1600x1200 at 76 Hz"
msgstr ""
@@ -523,7 +523,7 @@ msgstr ""
#: ../../any.pm_.c:160 ../../any.pm_.c:737
#: ../../install_steps_interactive.pm_.c:904 ../../netconnect.pm_.c:627
#: ../../printerdrake.pm_.c:98 ../../printerdrake.pm_.c:132
-#: ../../standalone/draknet_.c:522
+#: ../../standalone/draknet_.c:567
msgid "Password"
msgstr ""
@@ -709,12 +709,12 @@ msgstr ""
msgid "Do you have any %s interfaces?"
msgstr ""
-#: ../../any.pm_.c:608 ../../interactive.pm_.c:100 ../../my_gtk.pm_.c:614
+#: ../../any.pm_.c:608 ../../interactive.pm_.c:100 ../../my_gtk.pm_.c:615
#: ../../printerdrake.pm_.c:237
msgid "No"
msgstr ""
-#: ../../any.pm_.c:608 ../../interactive.pm_.c:100 ../../my_gtk.pm_.c:614
+#: ../../any.pm_.c:608 ../../interactive.pm_.c:100 ../../my_gtk.pm_.c:615
msgid "Yes"
msgstr ""
@@ -1029,18 +1029,19 @@ msgstr ""
#: ../../bootlook.pm_.c:218 ../../standalone/draknet_.c:88
#: ../../standalone/draknet_.c:120 ../../standalone/draknet_.c:184
-#: ../../standalone/draknet_.c:288 ../../standalone/draknet_.c:447
-#: ../../standalone/draknet_.c:564
+#: ../../standalone/draknet_.c:302 ../../standalone/draknet_.c:394
+#: ../../standalone/draknet_.c:471 ../../standalone/draknet_.c:507
+#: ../../standalone/draknet_.c:609
msgid "OK"
msgstr ""
#: ../../bootlook.pm_.c:220 ../../install_steps_gtk.pm_.c:576
-#: ../../interactive.pm_.c:110 ../../interactive.pm_.c:263
-#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:356
-#: ../../my_gtk.pm_.c:359 ../../my_gtk.pm_.c:615
+#: ../../interactive.pm_.c:110 ../../interactive.pm_.c:265
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:357
+#: ../../my_gtk.pm_.c:360 ../../my_gtk.pm_.c:616
#: ../../standalone/drakgw_.c:639 ../../standalone/draknet_.c:95
-#: ../../standalone/draknet_.c:127 ../../standalone/draknet_.c:311
-#: ../../standalone/draknet_.c:459 ../../standalone/draknet_.c:578
+#: ../../standalone/draknet_.c:127 ../../standalone/draknet_.c:295
+#: ../../standalone/draknet_.c:483 ../../standalone/draknet_.c:623
#: ../../standalone/tinyfirewall_.c:63
msgid "Cancel"
msgstr ""
@@ -1217,7 +1218,7 @@ msgid "Empty"
msgstr ""
#: ../../diskdrake.pm_.c:117 ../../install_steps_gtk.pm_.c:407
-#: ../../mouse.pm_.c:144
+#: ../../mouse.pm_.c:145
msgid "Other"
msgstr ""
@@ -2994,30 +2995,30 @@ msgstr ""
msgid "Can't use broadcast with no NIS domain"
msgstr ""
-#: ../../install_any.pm_.c:638
+#: ../../install_any.pm_.c:647
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr ""
-#: ../../install_any.pm_.c:642
+#: ../../install_any.pm_.c:651
msgid "This floppy is not FAT formatted"
msgstr ""
-#: ../../install_any.pm_.c:652
+#: ../../install_any.pm_.c:661
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
-#: ../../install_any.pm_.c:674
+#: ../../install_any.pm_.c:683
msgid "Error reading file $f"
msgstr ""
#: ../../install_gtk.pm_.c:84 ../../install_steps_gtk.pm_.c:310
#: ../../interactive.pm_.c:95 ../../interactive.pm_.c:110
-#: ../../interactive.pm_.c:263 ../../interactive_newt.pm_.c:166
-#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:355
-#: ../../my_gtk.pm_.c:615 ../../my_gtk.pm_.c:638
+#: ../../interactive.pm_.c:265 ../../interactive_newt.pm_.c:166
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:356
+#: ../../my_gtk.pm_.c:616 ../../my_gtk.pm_.c:639
msgid "Ok"
msgstr ""
@@ -4151,11 +4152,11 @@ msgstr ""
msgid "kdesu missing"
msgstr ""
-#: ../../interactive.pm_.c:261
+#: ../../interactive.pm_.c:263
msgid "Advanced"
msgstr ""
-#: ../../interactive.pm_.c:284
+#: ../../interactive.pm_.c:286
msgid "Please wait"
msgstr ""
@@ -4468,11 +4469,11 @@ msgstr ""
msgid "GlidePoint"
msgstr ""
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:62
msgid "Kensington Thinking Mouse"
msgstr ""
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:58
msgid "Genius NetMouse"
msgstr ""
@@ -4480,95 +4481,95 @@ msgstr ""
msgid "Genius NetScroll"
msgstr ""
-#: ../../mouse.pm_.c:43
-msgid "Generic"
+#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:67
+msgid "1 button"
msgstr ""
#: ../../mouse.pm_.c:44
+msgid "Generic"
+msgstr ""
+
+#: ../../mouse.pm_.c:45
msgid "Wheel"
msgstr ""
-#: ../../mouse.pm_.c:47
+#: ../../mouse.pm_.c:48
msgid "serial"
msgstr ""
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:50
msgid "Generic 2 Button Mouse"
msgstr ""
-#: ../../mouse.pm_.c:50
+#: ../../mouse.pm_.c:51
msgid "Generic 3 Button Mouse"
msgstr ""
-#: ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:52
msgid "Microsoft IntelliMouse"
msgstr ""
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:53
msgid "Logitech MouseMan"
msgstr ""
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:54
msgid "Mouse Systems"
msgstr ""
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:56
msgid "Logitech CC Series"
msgstr ""
-#: ../../mouse.pm_.c:56
+#: ../../mouse.pm_.c:57
msgid "Logitech MouseMan+/FirstMouse+"
msgstr ""
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:59
msgid "MM Series"
msgstr ""
-#: ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:60
msgid "MM HitTablet"
msgstr ""
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:61
msgid "Logitech Mouse (serial, old C7 type)"
msgstr ""
-#: ../../mouse.pm_.c:64
+#: ../../mouse.pm_.c:65
msgid "busmouse"
msgstr ""
-#: ../../mouse.pm_.c:66
-msgid "1 button"
-msgstr ""
-
-#: ../../mouse.pm_.c:67
+#: ../../mouse.pm_.c:68
msgid "2 buttons"
msgstr ""
-#: ../../mouse.pm_.c:68
+#: ../../mouse.pm_.c:69
msgid "3 buttons"
msgstr ""
-#: ../../mouse.pm_.c:71
+#: ../../mouse.pm_.c:72
msgid "none"
msgstr ""
-#: ../../mouse.pm_.c:73
+#: ../../mouse.pm_.c:74
msgid "No mouse"
msgstr ""
-#: ../../my_gtk.pm_.c:355
+#: ../../my_gtk.pm_.c:356
msgid "Finish"
msgstr ""
-#: ../../my_gtk.pm_.c:355
+#: ../../my_gtk.pm_.c:356
msgid "Next ->"
msgstr ""
-#: ../../my_gtk.pm_.c:356
+#: ../../my_gtk.pm_.c:357
msgid "<- Previous"
msgstr ""
-#: ../../my_gtk.pm_.c:615
+#: ../../my_gtk.pm_.c:616
msgid "Is this correct?"
msgstr ""
@@ -4599,7 +4600,7 @@ msgid ""
msgstr ""
#: ../../netconnect.pm_.c:159 ../../netconnect.pm_.c:901
-#: ../../netconnect.pm_.c:929 ../../netconnect.pm_.c:1006
+#: ../../netconnect.pm_.c:930 ../../netconnect.pm_.c:1008
msgid "Network Configuration"
msgstr ""
@@ -4623,35 +4624,35 @@ msgstr ""
msgid "Please fill or check the field below"
msgstr ""
-#: ../../netconnect.pm_.c:237 ../../standalone/draknet_.c:505
+#: ../../netconnect.pm_.c:237 ../../standalone/draknet_.c:550
msgid "Card IRQ"
msgstr ""
-#: ../../netconnect.pm_.c:238 ../../standalone/draknet_.c:506
+#: ../../netconnect.pm_.c:238 ../../standalone/draknet_.c:551
msgid "Card mem (DMA)"
msgstr ""
-#: ../../netconnect.pm_.c:239 ../../standalone/draknet_.c:507
+#: ../../netconnect.pm_.c:239 ../../standalone/draknet_.c:552
msgid "Card IO"
msgstr ""
-#: ../../netconnect.pm_.c:240 ../../standalone/draknet_.c:508
+#: ../../netconnect.pm_.c:240 ../../standalone/draknet_.c:553
msgid "Card IO_0"
msgstr ""
-#: ../../netconnect.pm_.c:241 ../../standalone/draknet_.c:509
+#: ../../netconnect.pm_.c:241 ../../standalone/draknet_.c:554
msgid "Card IO_1"
msgstr ""
-#: ../../netconnect.pm_.c:242 ../../standalone/draknet_.c:510
+#: ../../netconnect.pm_.c:242 ../../standalone/draknet_.c:555
msgid "Your personal phone number"
msgstr ""
-#: ../../netconnect.pm_.c:243 ../../standalone/draknet_.c:511
+#: ../../netconnect.pm_.c:243 ../../standalone/draknet_.c:556
msgid "Provider name (ex provider.net)"
msgstr ""
-#: ../../netconnect.pm_.c:244 ../../standalone/draknet_.c:512
+#: ../../netconnect.pm_.c:244 ../../standalone/draknet_.c:557
msgid "Provider phone number"
msgstr ""
@@ -4663,15 +4664,15 @@ msgstr ""
msgid "Provider dns 2"
msgstr ""
-#: ../../netconnect.pm_.c:247 ../../standalone/draknet_.c:517
+#: ../../netconnect.pm_.c:247 ../../standalone/draknet_.c:562
msgid "Dialing mode"
msgstr ""
-#: ../../netconnect.pm_.c:248 ../../standalone/draknet_.c:515
+#: ../../netconnect.pm_.c:248 ../../standalone/draknet_.c:560
msgid "Account Login (user name)"
msgstr ""
-#: ../../netconnect.pm_.c:249 ../../standalone/draknet_.c:516
+#: ../../netconnect.pm_.c:249 ../../standalone/draknet_.c:561
msgid "Account Password"
msgstr ""
@@ -4789,43 +4790,43 @@ msgstr ""
msgid "Dialup options"
msgstr ""
-#: ../../netconnect.pm_.c:624 ../../standalone/draknet_.c:519
+#: ../../netconnect.pm_.c:624 ../../standalone/draknet_.c:564
msgid "Connection name"
msgstr ""
-#: ../../netconnect.pm_.c:625 ../../standalone/draknet_.c:520
+#: ../../netconnect.pm_.c:625 ../../standalone/draknet_.c:565
msgid "Phone number"
msgstr ""
-#: ../../netconnect.pm_.c:626 ../../standalone/draknet_.c:521
+#: ../../netconnect.pm_.c:626 ../../standalone/draknet_.c:566
msgid "Login ID"
msgstr ""
-#: ../../netconnect.pm_.c:628 ../../standalone/draknet_.c:523
+#: ../../netconnect.pm_.c:628 ../../standalone/draknet_.c:568
msgid "Authentication"
msgstr ""
-#: ../../netconnect.pm_.c:628 ../../standalone/draknet_.c:523
+#: ../../netconnect.pm_.c:628 ../../standalone/draknet_.c:568
msgid "PAP"
msgstr ""
-#: ../../netconnect.pm_.c:628 ../../standalone/draknet_.c:523
+#: ../../netconnect.pm_.c:628 ../../standalone/draknet_.c:568
msgid "Script-based"
msgstr ""
-#: ../../netconnect.pm_.c:628 ../../standalone/draknet_.c:523
+#: ../../netconnect.pm_.c:628 ../../standalone/draknet_.c:568
msgid "Terminal-based"
msgstr ""
-#: ../../netconnect.pm_.c:629 ../../standalone/draknet_.c:524
+#: ../../netconnect.pm_.c:629 ../../standalone/draknet_.c:569
msgid "Domain name"
msgstr ""
-#: ../../netconnect.pm_.c:630 ../../standalone/draknet_.c:525
+#: ../../netconnect.pm_.c:630 ../../standalone/draknet_.c:570
msgid "First DNS Server (optional)"
msgstr ""
-#: ../../netconnect.pm_.c:631 ../../standalone/draknet_.c:526
+#: ../../netconnect.pm_.c:631 ../../standalone/draknet_.c:571
msgid "Second DNS Server (optional)"
msgstr ""
@@ -4876,8 +4877,8 @@ msgstr ""
msgid "Internet connection & configuration"
msgstr ""
-#: ../../netconnect.pm_.c:808 ../../netconnect.pm_.c:955
-#: ../../netconnect.pm_.c:965 ../../netconnect.pm_.c:980
+#: ../../netconnect.pm_.c:808 ../../netconnect.pm_.c:957
+#: ../../netconnect.pm_.c:967 ../../netconnect.pm_.c:982
msgid "Network Configuration Wizard"
msgstr ""
@@ -4924,7 +4925,7 @@ msgstr ""
#: ../../netconnect.pm_.c:880
msgid ""
"Which dhcp client do you want to use?\n"
-"Default is dhcpd"
+"Default is dhcpcd"
msgstr ""
#: ../../netconnect.pm_.c:897
@@ -4943,7 +4944,7 @@ msgid ""
"%s"
msgstr ""
-#: ../../netconnect.pm_.c:930
+#: ../../netconnect.pm_.c:931
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
@@ -4951,7 +4952,7 @@ msgid ""
"Internet & Network connection.\n"
msgstr ""
-#: ../../netconnect.pm_.c:956
+#: ../../netconnect.pm_.c:958
msgid ""
"Welcome to The Network Configuration Wizard\n"
"\n"
@@ -4959,69 +4960,69 @@ msgid ""
"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
-#: ../../netconnect.pm_.c:958
+#: ../../netconnect.pm_.c:960
msgid "Choose the profile to configure"
msgstr ""
-#: ../../netconnect.pm_.c:959
+#: ../../netconnect.pm_.c:961
msgid "Use auto detection"
msgstr ""
-#: ../../netconnect.pm_.c:965 ../../printerdrake.pm_.c:19
+#: ../../netconnect.pm_.c:967 ../../printerdrake.pm_.c:19
msgid "Detecting devices..."
msgstr ""
-#: ../../netconnect.pm_.c:972
+#: ../../netconnect.pm_.c:974
msgid "Normal modem connection"
msgstr ""
-#: ../../netconnect.pm_.c:972
+#: ../../netconnect.pm_.c:974
#, c-format
msgid "detected on port %s"
msgstr ""
-#: ../../netconnect.pm_.c:973
+#: ../../netconnect.pm_.c:975
msgid "ISDN connection"
msgstr ""
-#: ../../netconnect.pm_.c:973
+#: ../../netconnect.pm_.c:975
#, c-format
msgid "detected %s"
msgstr ""
-#: ../../netconnect.pm_.c:974
+#: ../../netconnect.pm_.c:976
msgid "DSL (or ADSL) connection"
msgstr ""
-#: ../../netconnect.pm_.c:974
+#: ../../netconnect.pm_.c:976
#, c-format
msgid "detected on interface %s"
msgstr ""
-#: ../../netconnect.pm_.c:975
+#: ../../netconnect.pm_.c:977
msgid "Cable connection"
msgstr ""
-#: ../../netconnect.pm_.c:976
+#: ../../netconnect.pm_.c:978
msgid "LAN connection"
msgstr ""
-#: ../../netconnect.pm_.c:976
+#: ../../netconnect.pm_.c:978
msgid "ethernet card(s) detected"
msgstr ""
-#: ../../netconnect.pm_.c:981
+#: ../../netconnect.pm_.c:983
msgid "How do you want to connect to the Internet?"
msgstr ""
-#: ../../netconnect.pm_.c:998
+#: ../../netconnect.pm_.c:1000
msgid ""
"Congratulation, The network and internet configuration is finished.\n"
"\n"
"The configuration will now be applied to your system."
msgstr ""
-#: ../../netconnect.pm_.c:1001
+#: ../../netconnect.pm_.c:1003
msgid ""
"After that is done, we recommend you to restart your X\n"
"environnement to avoid hostname changing problem."
@@ -5072,11 +5073,11 @@ msgid " (driver $module)"
msgstr ""
#: ../../network.pm_.c:336 ../../standalone/draknet_.c:231
-#: ../../standalone/draknet_.c:401
+#: ../../standalone/draknet_.c:425
msgid "IP address"
msgstr ""
-#: ../../network.pm_.c:337 ../../standalone/draknet_.c:402
+#: ../../network.pm_.c:337 ../../standalone/draknet_.c:426
msgid "Netmask"
msgstr ""
@@ -5105,7 +5106,7 @@ msgstr ""
msgid "DNS server"
msgstr ""
-#: ../../network.pm_.c:394 ../../standalone/draknet_.c:518
+#: ../../network.pm_.c:394 ../../standalone/draknet_.c:563
msgid "Gateway"
msgstr ""
@@ -5992,7 +5993,7 @@ msgstr ""
msgid "Network configuration (%d adapters)"
msgstr ""
-#: ../../standalone/draknet_.c:66 ../../standalone/draknet_.c:492
+#: ../../standalone/draknet_.c:66 ../../standalone/draknet_.c:537
msgid "Profile: "
msgstr ""
@@ -6024,11 +6025,11 @@ msgstr ""
msgid "Type:"
msgstr ""
-#: ../../standalone/draknet_.c:163 ../../standalone/draknet_.c:352
+#: ../../standalone/draknet_.c:163 ../../standalone/draknet_.c:354
msgid "Gateway:"
msgstr ""
-#: ../../standalone/draknet_.c:163 ../../standalone/draknet_.c:352
+#: ../../standalone/draknet_.c:163 ../../standalone/draknet_.c:354
msgid "Interface:"
msgstr ""
@@ -6036,22 +6037,22 @@ msgstr ""
msgid "Status:"
msgstr ""
-#: ../../standalone/draknet_.c:170 ../../standalone/draknet_.c:355
-#: ../../standalone/net_monitor_.c:122 ../../standalone/net_monitor_.c:228
+#: ../../standalone/draknet_.c:170 ../../standalone/draknet_.c:357
+#: ../../standalone/net_monitor_.c:122 ../../standalone/net_monitor_.c:224
msgid "Connected"
msgstr ""
-#: ../../standalone/draknet_.c:170 ../../standalone/draknet_.c:355
+#: ../../standalone/draknet_.c:170 ../../standalone/draknet_.c:357
#: ../../standalone/net_monitor_.c:83 ../../standalone/net_monitor_.c:122
-#: ../../standalone/net_monitor_.c:228
+#: ../../standalone/net_monitor_.c:224
msgid "Not connected"
msgstr ""
-#: ../../standalone/draknet_.c:173 ../../standalone/draknet_.c:356
+#: ../../standalone/draknet_.c:173 ../../standalone/draknet_.c:358
msgid "Connect..."
msgstr ""
-#: ../../standalone/draknet_.c:173 ../../standalone/draknet_.c:356
+#: ../../standalone/draknet_.c:173 ../../standalone/draknet_.c:358
msgid "Disconnect..."
msgstr ""
@@ -6079,7 +6080,7 @@ msgstr ""
msgid "Configure Internet Access..."
msgstr ""
-#: ../../standalone/draknet_.c:226 ../../standalone/draknet_.c:385
+#: ../../standalone/draknet_.c:226 ../../standalone/draknet_.c:409
msgid "LAN configuration"
msgstr ""
@@ -6103,76 +6104,88 @@ msgstr ""
msgid "Configure Local Area Network..."
msgstr ""
-#: ../../standalone/draknet_.c:276
+#: ../../standalone/draknet_.c:283
msgid "Normal Mode"
msgstr ""
-#: ../../standalone/draknet_.c:293
-msgid "Please Wait... Applying the configuration"
+#: ../../standalone/draknet_.c:288
+msgid "Apply"
msgstr ""
-#: ../../standalone/draknet_.c:305
-msgid "Apply"
+#: ../../standalone/draknet_.c:307
+msgid "Please Wait... Applying the configuration"
msgstr ""
#: ../../standalone/draknet_.c:389
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/draknet_.c:413
msgid "LAN Configuration"
msgstr ""
-#: ../../standalone/draknet_.c:397
+#: ../../standalone/draknet_.c:421
#, c-format
msgid "Adapter %s: %s"
msgstr ""
-#: ../../standalone/draknet_.c:403
+#: ../../standalone/draknet_.c:427
msgid "Boot Protocol"
msgstr ""
-#: ../../standalone/draknet_.c:404
+#: ../../standalone/draknet_.c:428
msgid "Started on boot"
msgstr ""
-#: ../../standalone/draknet_.c:405
+#: ../../standalone/draknet_.c:429
msgid "DHCP client"
msgstr ""
-#: ../../standalone/draknet_.c:440 ../../standalone/draknet_.c:444
+#: ../../standalone/draknet_.c:464 ../../standalone/draknet_.c:468
msgid "Disable"
msgstr ""
-#: ../../standalone/draknet_.c:440 ../../standalone/draknet_.c:444
+#: ../../standalone/draknet_.c:464 ../../standalone/draknet_.c:468
msgid "Enable"
msgstr ""
-#: ../../standalone/draknet_.c:481
+#: ../../standalone/draknet_.c:502
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/draknet_.c:526
msgid "Internet connection configuration"
msgstr ""
-#: ../../standalone/draknet_.c:485
+#: ../../standalone/draknet_.c:530
msgid "Internet Connection Configuration"
msgstr ""
-#: ../../standalone/draknet_.c:494
+#: ../../standalone/draknet_.c:539
msgid "Connection type: "
msgstr ""
-#: ../../standalone/draknet_.c:500
+#: ../../standalone/draknet_.c:545
msgid "Parameters"
msgstr ""
-#: ../../standalone/draknet_.c:513
+#: ../../standalone/draknet_.c:558
msgid "Provider dns 1 (optional)"
msgstr ""
-#: ../../standalone/draknet_.c:514
+#: ../../standalone/draknet_.c:559
msgid "Provider dns 2 (optional)"
msgstr ""
-#: ../../standalone/draknet_.c:527
+#: ../../standalone/draknet_.c:572
msgid "Ethernet Card"
msgstr ""
-#: ../../standalone/draknet_.c:528
+#: ../../standalone/draknet_.c:573
msgid "DHCP Client"
msgstr ""
@@ -6315,23 +6328,19 @@ msgid ""
"Verify your configuration in the Mandrake Control Center."
msgstr ""
-#: ../../standalone/net_monitor_.c:132
-msgid "cannot fork: "
-msgstr ""
-
-#: ../../standalone/net_monitor_.c:192
+#: ../../standalone/net_monitor_.c:188
msgid "sent: "
msgstr ""
-#: ../../standalone/net_monitor_.c:195
+#: ../../standalone/net_monitor_.c:191
msgid "received: "
msgstr ""
-#: ../../standalone/net_monitor_.c:226
+#: ../../standalone/net_monitor_.c:222
msgid "Connect"
msgstr ""
-#: ../../standalone/net_monitor_.c:226
+#: ../../standalone/net_monitor_.c:222
msgid "Disconnect"
msgstr ""
diff --git a/perl-install/share/po/af.po b/perl-install/share/po/af.po
index da4dfb251..a88a9225a 100644
--- a/perl-install/share/po/af.po
+++ b/perl-install/share/po/af.po
@@ -5,41 +5,65 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2000-11-11 21:39+0100\n"
+"POT-Creation-Date: 2001-04-17 16:58+0200\n"
"PO-Revision-Date: Tue Sep 26 2000 08:03:14+0200\n"
"Last-Translator: Schalk W. Cronjé <schalkc@ntaba.co.za>\n"
"Language-Team: Afrikaans <lia@af.org.za>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
-"Content-Transfer-Encoding:8bit\n"
+"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KTranslator v 0.6.0\n"
-#: ../../Xconfigurator.pm_.c:179
+#: ../../Xconfigurator.pm_.c:232
+msgid "Configure all heads independantly"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:233
+msgid "Use Xinerama extension"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:236
+#, c-format
+msgid "Configure only card \"%s\" (%s)"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:239
+#, fuzzy
+msgid "Multi-head configuration"
+msgstr "Konfigurasie word gelees"
+
+#: ../../Xconfigurator.pm_.c:240
+msgid ""
+"Your system support multiple head configuration.\n"
+"What do you want to do?"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:249
msgid "Graphic card"
msgstr "Videokaart"
-#: ../../Xconfigurator.pm_.c:179
+#: ../../Xconfigurator.pm_.c:249
msgid "Select a graphic card"
msgstr "Selekteer 'n videokaart"
-#: ../../Xconfigurator.pm_.c:180
+#: ../../Xconfigurator.pm_.c:250
msgid "Choose a X server"
msgstr "Kies 'n X-bediener"
-#: ../../Xconfigurator.pm_.c:180
+#: ../../Xconfigurator.pm_.c:250
msgid "X server"
msgstr "X-bediener"
-#: ../../Xconfigurator.pm_.c:217 ../../Xconfigurator.pm_.c:223
+#: ../../Xconfigurator.pm_.c:304 ../../Xconfigurator.pm_.c:311
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:220
+#: ../../Xconfigurator.pm_.c:307
msgid "Which configuration of XFree do you want to have?"
msgstr "Watter tipe XFree-konfigurasie verlang u?"
-#: ../../Xconfigurator.pm_.c:232
+#: ../../Xconfigurator.pm_.c:320
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -48,30 +72,18 @@ msgstr ""
"U videokaart kan slegs 3D-versnelling onder XFree %s ondersteun.\n"
"DIt word wel onder XFree %s ondersteun wat dalk beter 2D-ondersteuning het."
-#: ../../Xconfigurator.pm_.c:234 ../../Xconfigurator.pm_.c:257
+#: ../../Xconfigurator.pm_.c:322 ../../Xconfigurator.pm_.c:355
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"U videokaart kan vir 3D-hardewareversnelling ondestuen word in XFree %s."
-#: ../../Xconfigurator.pm_.c:236 ../../Xconfigurator.pm_.c:259
+#: ../../Xconfigurator.pm_.c:324 ../../Xconfigurator.pm_.c:357
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s met 3D-hardwareversnelling"
-#: ../../Xconfigurator.pm_.c:245
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
-"Your card is supported by XFree %s which may have a better support in 2D."
-msgstr ""
-"Hierdie kaart kan ondersteuning vir 3D-hardewareversnelling onder XFree86 %s "
-"bied,\n"
-"MAAR LET DAAROP DAT DIT EKSPERIMENTEEL IS EN DIE REKENAAR MAG VRIES.\n"
-"U kaart word deur XFree %s ondersteun, wat beter 2D-ondersteuning bied."
-
-#: ../../Xconfigurator.pm_.c:248
+#: ../../Xconfigurator.pm_.c:332 ../../Xconfigurator.pm_.c:346
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -81,32 +93,44 @@ msgstr ""
"bied,\n"
"MAAR LET DAAROP DAT DIT EKSPERIMENTEEL IS EN DIE REKENAAR MAG VRIES."
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfigurator.pm_.c:334 ../../Xconfigurator.pm_.c:348
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s met EKSPERIMENTELE 3D-hardewareversnelling"
-#: ../../Xconfigurator.pm_.c:265
+#: ../../Xconfigurator.pm_.c:343
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+"Hierdie kaart kan ondersteuning vir 3D-hardewareversnelling onder XFree86 %s "
+"bied,\n"
+"MAAR LET DAAROP DAT DIT EKSPERIMENTEEL IS EN DIE REKENAAR MAG VRIES.\n"
+"U kaart word deur XFree %s ondersteun, wat beter 2D-ondersteuning bied."
+
+#: ../../Xconfigurator.pm_.c:363
msgid "XFree configuration"
msgstr "XFree-konfigurasie"
-#: ../../Xconfigurator.pm_.c:303
+#: ../../Xconfigurator.pm_.c:396
msgid "Select the memory size of your graphic card"
msgstr "Kies die geheue grootte van u videokaart"
-#: ../../Xconfigurator.pm_.c:347
+#: ../../Xconfigurator.pm_.c:443
msgid "Choose options for server"
msgstr "Selekteer opsies vir bediener"
-#: ../../Xconfigurator.pm_.c:358
+#: ../../Xconfigurator.pm_.c:460
msgid "Choose a monitor"
msgstr "Kies 'n monitor"
-#: ../../Xconfigurator.pm_.c:358
+#: ../../Xconfigurator.pm_.c:460
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:361
+#: ../../Xconfigurator.pm_.c:463
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -128,40 +152,40 @@ msgstr ""
"monitor spesifiseer nie, dit kan die monitor beskadig. Indien u twyfel,\n"
"kies konservatief."
-#: ../../Xconfigurator.pm_.c:368
+#: ../../Xconfigurator.pm_.c:470
msgid "Horizontal refresh rate"
msgstr "Horisontale verfristempo"
-#: ../../Xconfigurator.pm_.c:368
+#: ../../Xconfigurator.pm_.c:471
msgid "Vertical refresh rate"
msgstr "Vertikale verfristempo"
-#: ../../Xconfigurator.pm_.c:407
+#: ../../Xconfigurator.pm_.c:508
msgid "Monitor not configured"
msgstr "Monitor is nie opgestel nie"
-#: ../../Xconfigurator.pm_.c:410
+#: ../../Xconfigurator.pm_.c:511
msgid "Graphic card not configured yet"
msgstr "Grafikakaart is nog nie konfigureer nie"
-#: ../../Xconfigurator.pm_.c:413
+#: ../../Xconfigurator.pm_.c:514
msgid "Resolutions not chosen yet"
msgstr "Resolusie is nog nie gekies nie"
-#: ../../Xconfigurator.pm_.c:429
+#: ../../Xconfigurator.pm_.c:530
msgid "Do you want to test the configuration?"
msgstr "Wil u die konfigurasie toets?"
#
-#: ../../Xconfigurator.pm_.c:433
+#: ../../Xconfigurator.pm_.c:534
msgid "Warning: testing this graphic card may freeze your computer"
msgstr "Waarskuwing: Toetsing is gevaarlik met hierdie videokaart"
-#: ../../Xconfigurator.pm_.c:436
+#: ../../Xconfigurator.pm_.c:537
msgid "Test of the configuration"
msgstr "Toets konfigurasie"
-#: ../../Xconfigurator.pm_.c:475
+#: ../../Xconfigurator.pm_.c:576
msgid ""
"\n"
"try to change some parameters"
@@ -169,146 +193,153 @@ msgstr ""
"\n"
"probeer van die parameters verander"
-#: ../../Xconfigurator.pm_.c:475
+#: ../../Xconfigurator.pm_.c:576
msgid "An error has occurred:"
msgstr "Daar was 'n fout:"
-#: ../../Xconfigurator.pm_.c:497
+#: ../../Xconfigurator.pm_.c:598
#, c-format
msgid "Leaving in %d seconds"
msgstr "uitgang binne %ds"
-#: ../../Xconfigurator.pm_.c:507
+#: ../../Xconfigurator.pm_.c:609
msgid "Is this the correct setting?"
msgstr "Is dit korrek?"
-#: ../../Xconfigurator.pm_.c:515
+#: ../../Xconfigurator.pm_.c:617
msgid "An error has occurred, try to change some parameters"
msgstr "Hier is fout, probeer van die parameters verander"
-#: ../../Xconfigurator.pm_.c:552 ../../printerdrake.pm_.c:276
+#: ../../Xconfigurator.pm_.c:663 ../../printerdrake.pm_.c:277
+#: ../../services.pm_.c:125
msgid "Resolution"
msgstr "Resolusie"
-#: ../../Xconfigurator.pm_.c:587
+#: ../../Xconfigurator.pm_.c:710
msgid "Choose the resolution and the color depth"
msgstr "Kies die resolusie en kleurdiepte"
-#: ../../Xconfigurator.pm_.c:589
+#: ../../Xconfigurator.pm_.c:712
#, c-format
msgid "Graphic card: %s"
msgstr "Videokaart: %s"
-#: ../../Xconfigurator.pm_.c:590
+#: ../../Xconfigurator.pm_.c:713
#, c-format
msgid "XFree86 server: %s"
msgstr "XFree86 bediener: %s"
-#: ../../Xconfigurator.pm_.c:599
+#: ../../Xconfigurator.pm_.c:729 ../../standalone/draknet_.c:280
+#: ../../standalone/draknet_.c:283
+#, fuzzy
+msgid "Expert Mode"
+msgstr "Kundige modus"
+
+#: ../../Xconfigurator.pm_.c:730
msgid "Show all"
msgstr "Vertoon almal"
-#: ../../Xconfigurator.pm_.c:623
+#: ../../Xconfigurator.pm_.c:773
msgid "Resolutions"
msgstr "Resolusies"
-#: ../../Xconfigurator.pm_.c:1021
+#: ../../Xconfigurator.pm_.c:1299
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Sleutelbord uitleg: %s\n"
-#: ../../Xconfigurator.pm_.c:1022
+#: ../../Xconfigurator.pm_.c:1300
#, c-format
msgid "Mouse type: %s\n"
msgstr "Muistipe: %s\n"
-#: ../../Xconfigurator.pm_.c:1023
+#: ../../Xconfigurator.pm_.c:1301
#, c-format
msgid "Mouse device: %s\n"
msgstr "Muistoestel: %s\n"
-#: ../../Xconfigurator.pm_.c:1024
+#: ../../Xconfigurator.pm_.c:1302
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1025
+#: ../../Xconfigurator.pm_.c:1303
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Monitor HoriSink: %s\n"
-#: ../../Xconfigurator.pm_.c:1026
+#: ../../Xconfigurator.pm_.c:1304
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Monitor VertVerfris: %s\n"
-#: ../../Xconfigurator.pm_.c:1027
+#: ../../Xconfigurator.pm_.c:1305
#, c-format
msgid "Graphic card: %s\n"
msgstr "Videokaart: %s\n"
-#: ../../Xconfigurator.pm_.c:1028
+#: ../../Xconfigurator.pm_.c:1306
#, c-format
msgid "Graphic memory: %s kB\n"
msgstr "Video geheue: %s kB\n"
-#: ../../Xconfigurator.pm_.c:1030
+#: ../../Xconfigurator.pm_.c:1308
#, c-format
msgid "Color depth: %s\n"
msgstr "Kleurdiepte: %s\n"
-#: ../../Xconfigurator.pm_.c:1031
+#: ../../Xconfigurator.pm_.c:1309
#, c-format
msgid "Resolution: %s\n"
msgstr "Resolusie: %s\n"
-#: ../../Xconfigurator.pm_.c:1033
+#: ../../Xconfigurator.pm_.c:1311
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 bediener: %s\n"
-#: ../../Xconfigurator.pm_.c:1034
+#: ../../Xconfigurator.pm_.c:1312
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86-drywer: %s\n"
-#: ../../Xconfigurator.pm_.c:1053
+#: ../../Xconfigurator.pm_.c:1331
msgid "Preparing X-Window configuration"
msgstr "X-Window konfigurasie word opgestel"
-#: ../../Xconfigurator.pm_.c:1067
+#: ../../Xconfigurator.pm_.c:1351
+msgid "What do you want to do?"
+msgstr "Wat wil u doen?"
+
+#: ../../Xconfigurator.pm_.c:1356
msgid "Change Monitor"
msgstr "Verander monitor"
-#: ../../Xconfigurator.pm_.c:1068
+#: ../../Xconfigurator.pm_.c:1357
msgid "Change Graphic card"
msgstr "Verander videokaart"
-#: ../../Xconfigurator.pm_.c:1069
+#: ../../Xconfigurator.pm_.c:1359
msgid "Change Server options"
msgstr "Verander bedienerinstellings"
-#: ../../Xconfigurator.pm_.c:1070
+#: ../../Xconfigurator.pm_.c:1360
msgid "Change Resolution"
msgstr "Verander resolusie"
-#: ../../Xconfigurator.pm_.c:1071
+#: ../../Xconfigurator.pm_.c:1361
msgid "Show information"
msgstr "Vertoon inligting"
-#: ../../Xconfigurator.pm_.c:1072
+#: ../../Xconfigurator.pm_.c:1362
msgid "Test again"
msgstr "Toets weer"
-#: ../../Xconfigurator.pm_.c:1073 ../../standalone/rpmdrake_.c:46
+#: ../../Xconfigurator.pm_.c:1363 ../../bootlook.pm_.c:220
msgid "Quit"
msgstr "Verlaat"
-#: ../../Xconfigurator.pm_.c:1077 ../../standalone/drakboot_.c:40
-msgid "What do you want to do?"
-msgstr "Wat wil u doen?"
-
-#: ../../Xconfigurator.pm_.c:1084
+#: ../../Xconfigurator.pm_.c:1371
#, c-format
msgid ""
"Keep the changes?\n"
@@ -321,20 +352,20 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfigurator.pm_.c:1105
+#: ../../Xconfigurator.pm_.c:1392
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Teken asb. weer in %s om veranderinge te aktiveer"
-#: ../../Xconfigurator.pm_.c:1125
+#: ../../Xconfigurator.pm_.c:1412
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Teken uit en gebruik dan Ctrl-Alt-Backspace"
-#: ../../Xconfigurator.pm_.c:1128
+#: ../../Xconfigurator.pm_.c:1415
msgid "X at startup"
msgstr "X met herlaai"
-#: ../../Xconfigurator.pm_.c:1129
+#: ../../Xconfigurator.pm_.c:1416
msgid ""
"I can set up your computer to automatically start X upon booting.\n"
"Would you like X to start when you reboot?"
@@ -342,27 +373,6 @@ msgstr ""
"Ek kan u rekenaar so opstel om X outomaties te laai.\n"
"Wil u X begin met 'n herlaai?"
-#: ../../Xconfigurator.pm_.c:1153
-msgid "Autologin"
-msgstr "Outointeken"
-
-#: ../../Xconfigurator.pm_.c:1154
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"If you don't want to use this feature, click on the cancel button."
-msgstr ""
-"Ek kan u rekenaar so opstel om X outomaties een gebruiker in te teken.\n"
-"Kliek op kanselleer indien u nie hierdie funksionaliteit verlang nie."
-
-#: ../../Xconfigurator.pm_.c:1156
-msgid "Choose the default user:"
-msgstr "Kies die verstek gebruiker:"
-
-#
-#: ../../Xconfigurator.pm_.c:1157
-msgid "Choose the window manager to run:"
-msgstr "Kies die vensterbestuurder om te loop:"
-
#: ../../Xconfigurator_consts.pm_.c:6
msgid "256 colors (8 bits)"
msgstr "256 kleure (8 bis)"
@@ -411,163 +421,214 @@ msgstr "8 MB"
msgid "16 MB or more"
msgstr "16MB of meer"
-#: ../../Xconfigurator_consts.pm_.c:117 ../../Xconfigurator_consts.pm_.c:118
+#: ../../Xconfigurator_consts.pm_.c:120
msgid "Standard VGA, 640x480 at 60 Hz"
msgstr "Standaard VGA, 640x480 teen 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:119
+#: ../../Xconfigurator_consts.pm_.c:121
msgid "Super VGA, 800x600 at 56 Hz"
msgstr "Super VGA, 800x600 teen 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:120
+#: ../../Xconfigurator_consts.pm_.c:122
msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
msgstr "8514-aanpasbaar, 1024x768 teen 87Hz interverweef (nie 800x600 nie)"
-#: ../../Xconfigurator_consts.pm_.c:121
+#: ../../Xconfigurator_consts.pm_.c:123
msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
msgstr "Super VGA, 102x768 teen 87 Hz interverweef, 800x600 teen 56 Hz "
-#: ../../Xconfigurator_consts.pm_.c:122
+#: ../../Xconfigurator_consts.pm_.c:124
msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
msgstr "Verlengde Super VGA, 800x600 teen 60 Hz, 640x480 teen 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:123
+#: ../../Xconfigurator_consts.pm_.c:125
msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
msgstr "Nie-interverweefde SVGA, 1024x768 teen 60 Hz, 800x600 teen 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:124
+#: ../../Xconfigurator_consts.pm_.c:126
msgid "High Frequency SVGA, 1024x768 at 70 Hz"
msgstr "Hod frekwensie SVGA, 1024x768 teen 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:125
+#: ../../Xconfigurator_consts.pm_.c:127
msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
msgstr "Multi-frekwensie wat 1280x1024 kan doen teen 60Hz"
-#: ../../Xconfigurator_consts.pm_.c:126
+#: ../../Xconfigurator_consts.pm_.c:128
msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
msgstr "Multi-frekwensie wat 1280x1024 kan doen teen 74Hz"
-#: ../../Xconfigurator_consts.pm_.c:127
+#: ../../Xconfigurator_consts.pm_.c:129
msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
msgstr "Multi-frekwensie wat 1280x1024 kan doen teen 76Hz"
-#: ../../Xconfigurator_consts.pm_.c:128
+#: ../../Xconfigurator_consts.pm_.c:130
msgid "Monitor that can do 1600x1200 at 70 Hz"
msgstr "Monitor wat 1600x1220 kan doen teen 70Hz"
-#: ../../Xconfigurator_consts.pm_.c:129
+#: ../../Xconfigurator_consts.pm_.c:131
msgid "Monitor that can do 1600x1200 at 76 Hz"
msgstr "Monitor wat 1600x1220 kan doen teen 76Hz"
-#: ../../any.pm_.c:91 ../../any.pm_.c:121 ../../any_new.pm_.c:91
-#: ../../any_new.pm_.c:121
+#: ../../any.pm_.c:99 ../../any.pm_.c:124
msgid "First sector of boot partition"
msgstr "Eerste sektor van herlaaipartisie"
-#: ../../any.pm_.c:91 ../../any.pm_.c:121 ../../any.pm_.c:150
-#: ../../any_new.pm_.c:91 ../../any_new.pm_.c:121 ../../any_new.pm_.c:150
+#: ../../any.pm_.c:99 ../../any.pm_.c:124 ../../any.pm_.c:196
msgid "First sector of drive (MBR)"
msgstr "Eerste sektor van skyf (MBR)"
-#: ../../any.pm_.c:95 ../../any_new.pm_.c:95
+#: ../../any.pm_.c:103
msgid "SILO Installation"
msgstr "SILO installasie"
-#: ../../any.pm_.c:96 ../../any.pm_.c:102 ../../any_new.pm_.c:96
-#: ../../any_new.pm_.c:102
+#: ../../any.pm_.c:104 ../../any.pm_.c:117
msgid "Where do you want to install the bootloader?"
msgstr "Waar wil u die herlaaistelsel installeer"
-#: ../../any.pm_.c:101 ../../any_new.pm_.c:101
+#: ../../any.pm_.c:116
msgid "LILO/grub Installation"
msgstr "LILO/grub installasie"
-#: ../../any.pm_.c:111 ../../any_new.pm_.c:111
-#: ../../install_steps_interactive.pm_.c:736
-msgid "None"
-msgstr "Niks"
+#: ../../any.pm_.c:128 ../../any.pm_.c:142
+msgid "SILO"
+msgstr ""
+
+#: ../../any.pm_.c:130
+msgid "LILO with text menu"
+msgstr ""
+
+#: ../../any.pm_.c:131 ../../any.pm_.c:142
+msgid "LILO with graphical menu"
+msgstr ""
+
+#: ../../any.pm_.c:134
+msgid "Grub"
+msgstr ""
+
+#: ../../any.pm_.c:138
+msgid "Boot from DOS/Windows (loadlin)"
+msgstr ""
-#: ../../any.pm_.c:111 ../../any_new.pm_.c:111
-msgid "Which bootloader(s) do you want to use?"
-msgstr "Watter herlaaistelsel(s) wil u gebruik?"
+#: ../../any.pm_.c:140 ../../any.pm_.c:142
+msgid "Yaboot"
+msgstr "Yaboot"
-#: ../../any.pm_.c:125 ../../any_new.pm_.c:125
+#: ../../any.pm_.c:148 ../../any.pm_.c:179
+msgid "Bootloader main options"
+msgstr "Herlaaistelsel hoofopsies"
+
+#: ../../any.pm_.c:149 ../../any.pm_.c:180
+#, fuzzy
+msgid "Bootloader to use"
+msgstr "Herlaaistelsel hoofopsies"
+
+#: ../../any.pm_.c:151
msgid "Bootloader installation"
msgstr "Herlaaiprogram installasie"
-#: ../../any.pm_.c:127 ../../any_new.pm_.c:127
+#: ../../any.pm_.c:153 ../../any.pm_.c:182
msgid "Boot device"
msgstr "Herlaaitoestel"
-#: ../../any.pm_.c:128 ../../any_new.pm_.c:128
+#: ../../any.pm_.c:154
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (werk nie op 'n ou BIOS nie)"
-#: ../../any.pm_.c:129 ../../any_new.pm_.c:129
+#: ../../any.pm_.c:155
msgid "Compact"
msgstr "Kompak"
-#: ../../any.pm_.c:129 ../../any_new.pm_.c:129
+#: ../../any.pm_.c:155
msgid "compact"
msgstr "kompak"
-#: ../../any.pm_.c:130 ../../any.pm_.c:199 ../../any_new.pm_.c:130
-#: ../../any_new.pm_.c:199
+#: ../../any.pm_.c:156 ../../any.pm_.c:255
msgid "Video mode"
msgstr "Videomodus"
-#: ../../any.pm_.c:132 ../../any_new.pm_.c:132
+#: ../../any.pm_.c:158
msgid "Delay before booting default image"
msgstr "Wagperiode voro verstekstelsel gelaai word"
-#: ../../any.pm_.c:134 ../../any_new.pm_.c:134
-#: ../../install_steps_interactive.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:815 ../../netconnect.pm_.c:560
-#: ../../netconnect_new.pm_.c:686 ../../printerdrake.pm_.c:94
-#: ../../printerdrake.pm_.c:128 ../../standalone/adduserdrake_.c:42
+#: ../../any.pm_.c:160 ../../any.pm_.c:737
+#: ../../install_steps_interactive.pm_.c:904 ../../netconnect.pm_.c:627
+#: ../../printerdrake.pm_.c:98 ../../printerdrake.pm_.c:132
+#: ../../standalone/draknet_.c:567
msgid "Password"
msgstr "Wagwoord"
-#: ../../any.pm_.c:135 ../../any_new.pm_.c:135
-#: ../../install_steps_interactive.pm_.c:765
-#: ../../install_steps_interactive.pm_.c:816
-#: ../../standalone/adduserdrake_.c:43
+#: ../../any.pm_.c:161 ../../any.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:905
msgid "Password (again)"
msgstr "Wagwoord (weer)"
-#: ../../any.pm_.c:136 ../../any_new.pm_.c:136
+#: ../../any.pm_.c:162
msgid "Restrict command line options"
msgstr "Beperk instruksielynopsies"
-#: ../../any.pm_.c:136 ../../any_new.pm_.c:136
+#: ../../any.pm_.c:162
msgid "restrict"
msgstr "beperk"
-#: ../../any.pm_.c:142 ../../any_new.pm_.c:142
-msgid "Bootloader main options"
-msgstr "Herlaaistelsel hoofopsies"
+#: ../../any.pm_.c:164
+msgid "Clean /tmp at each boot"
+msgstr "Maak /tmp skoon met elke herlaai"
-#: ../../any.pm_.c:145 ../../any_new.pm_.c:145
+#: ../../any.pm_.c:165
+#, c-format
+msgid "Precise RAM size if needed (found %d MB)"
+msgstr "Presiese RAM grootte indien nodig (%d MB bespeur)"
+
+#: ../../any.pm_.c:167
+msgid "Enable multi profiles"
+msgstr "Ontsper multiprofiele"
+
+#: ../../any.pm_.c:171
+msgid "Give the ram size in MB"
+msgstr "Gee die geheuegrootte in MB"
+
+#: ../../any.pm_.c:173
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Opsie ``Beperk instruksielynopsies'' kan nie sonder wagwoord gebruikword nie"
-#: ../../any.pm_.c:146 ../../any_new.pm_.c:146
-#: ../../install_steps_interactive.pm_.c:774
-#: ../../install_steps_interactive.pm_.c:829
-#: ../../standalone/adduserdrake_.c:56
+#: ../../any.pm_.c:174 ../../any.pm_.c:714
+#: ../../install_steps_interactive.pm_.c:899
msgid "Please try again"
msgstr "Probeer asb. weer"
-#: ../../any.pm_.c:146 ../../any_new.pm_.c:146
-#: ../../install_steps_interactive.pm_.c:774
-#: ../../install_steps_interactive.pm_.c:829
-#: ../../standalone/adduserdrake_.c:56
+#: ../../any.pm_.c:174 ../../any.pm_.c:714
+#: ../../install_steps_interactive.pm_.c:899
msgid "The passwords do not match"
msgstr "Die wagwoorde stem nie ooreen nie."
-#: ../../any.pm_.c:157 ../../any_new.pm_.c:157
+#: ../../any.pm_.c:181
+msgid "Init Message"
+msgstr ""
+
+#: ../../any.pm_.c:183
+msgid "Open Firmware Delay"
+msgstr ""
+
+#: ../../any.pm_.c:184
+msgid "Kernel Boot Timeout"
+msgstr ""
+
+#: ../../any.pm_.c:185
+msgid "Enable CD Boot?"
+msgstr ""
+
+#: ../../any.pm_.c:186
+msgid "Enable OF Boot?"
+msgstr ""
+
+#: ../../any.pm_.c:187
+#, fuzzy
+msgid "Default OS?"
+msgstr "Verstek"
+
+#: ../../any.pm_.c:209
msgid ""
"Here are the different entries.\n"
"You can add some more or change the existing ones."
@@ -575,143 +636,148 @@ msgstr ""
"Hier is die huidige inskrywings\n"
"U kan byvoeg or verwyder soos nodig."
-#: ../../any.pm_.c:165 ../../any_new.pm_.c:165 ../../printerdrake.pm_.c:352
-#: ../../standalone/rpmdrake_.c:302
+#: ../../any.pm_.c:219 ../../printerdrake.pm_.c:356
msgid "Add"
msgstr "Voeg by"
-#: ../../any.pm_.c:165 ../../any_new.pm_.c:165 ../../diskdrake.pm_.c:46
-#: ../../install_steps_interactive.pm_.c:809 ../../netconnect.pm_.c:842
-#: ../../netconnect_new.pm_.c:984 ../../printerdrake.pm_.c:352
-#: ../../standalone/adduserdrake_.c:36
+#: ../../any.pm_.c:219 ../../any.pm_.c:725 ../../diskdrake.pm_.c:46
+#: ../../printerdrake.pm_.c:356
msgid "Done"
msgstr "Klaar"
-#: ../../any.pm_.c:174 ../../any_new.pm_.c:174
+#: ../../any.pm_.c:219
+#, fuzzy
+msgid "Modify"
+msgstr "Verander RAID"
+
+#: ../../any.pm_.c:227
msgid "Which type of entry do you want to add?"
msgstr "Watter tipe inskrywing wil u byvoeg?"
-#: ../../any.pm_.c:175 ../../any_new.pm_.c:175
+#: ../../any.pm_.c:228
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:175 ../../any_new.pm_.c:175
+#: ../../any.pm_.c:228
msgid "Other OS (SunOS...)"
msgstr "Ander bedryfstelsel (SunOS...)"
-#: ../../any.pm_.c:175 ../../any_new.pm_.c:175
+#: ../../any.pm_.c:229
+msgid "Other OS (MacOS...)"
+msgstr "Ander bedryfstelsel (MacOS...)"
+
+#: ../../any.pm_.c:229
msgid "Other OS (windows...)"
msgstr "Ander bedryfstelsel (windows...)"
-#: ../../any.pm_.c:196 ../../any_new.pm_.c:196
+#: ../../any.pm_.c:249 ../../any.pm_.c:251
msgid "Image"
msgstr "Beeld"
-#: ../../any.pm_.c:197 ../../any.pm_.c:206 ../../any_new.pm_.c:197
-#: ../../any_new.pm_.c:206
+#: ../../any.pm_.c:252 ../../any.pm_.c:263
msgid "Root"
msgstr "Basis"
-#: ../../any.pm_.c:198 ../../any_new.pm_.c:198
+#: ../../any.pm_.c:253 ../../any.pm_.c:282
msgid "Append"
msgstr "Aanlas"
-#: ../../any.pm_.c:200 ../../any_new.pm_.c:200
+#: ../../any.pm_.c:257
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:201 ../../any_new.pm_.c:201
+#: ../../any.pm_.c:258
msgid "Read-write"
msgstr "Lees-skryf"
-#: ../../any.pm_.c:208 ../../any_new.pm_.c:208
+#: ../../any.pm_.c:265
msgid "Table"
msgstr "Tabel"
-#: ../../any.pm_.c:209 ../../any_new.pm_.c:209
+#: ../../any.pm_.c:266
msgid "Unsafe"
msgstr "Onveilig"
-#: ../../any.pm_.c:215 ../../any_new.pm_.c:215
+#: ../../any.pm_.c:273 ../../any.pm_.c:278 ../../any.pm_.c:281
msgid "Label"
msgstr "Etiket"
-#: ../../any.pm_.c:217 ../../any_new.pm_.c:217
+#: ../../any.pm_.c:275 ../../any.pm_.c:286
msgid "Default"
msgstr "Verstek"
-#: ../../any.pm_.c:220 ../../any_new.pm_.c:220 ../../install_gtk.pm_.c:82
-#: ../../install_steps_interactive.pm_.c:762 ../../interactive.pm_.c:76
-#: ../../interactive.pm_.c:86 ../../interactive.pm_.c:250
-#: ../../interactive_newt.pm_.c:51 ../../interactive_newt.pm_.c:99
-#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:243
-#: ../../my_gtk.pm_.c:486 ../../my_gtk.pm_.c:661 ../../printerdrake.pm_.c:444
-#: ../../printerdrake.pm_.c:464
-msgid "Ok"
-msgstr "OK"
+#: ../../any.pm_.c:283
+#, fuzzy
+msgid "Initrd-size"
+msgstr "Initrd"
-#: ../../any.pm_.c:220 ../../any_new.pm_.c:220
+#: ../../any.pm_.c:285
+msgid "NoVideo"
+msgstr ""
+
+#: ../../any.pm_.c:293
msgid "Remove entry"
msgstr "Verwyder inskrywing"
-#: ../../any.pm_.c:223 ../../any_new.pm_.c:223
+#: ../../any.pm_.c:296
msgid "Empty label not allowed"
msgstr "Leë etiket word nie toegelaat nie"
-#: ../../any.pm_.c:224 ../../any_new.pm_.c:224
+#: ../../any.pm_.c:297
msgid "This label is already used"
msgstr "Hierdie etiket is alreeds in gebruik"
-#: ../../any.pm_.c:500 ../../any_new.pm_.c:492
+#: ../../any.pm_.c:316
+#, fuzzy
+msgid "What type of partitioning?"
+msgstr "Oor watter tipe drukker beskik u?"
+
+#: ../../any.pm_.c:604
#, c-format
msgid "Found %s %s interfaces"
msgstr "Het %s %s koppelvlakke gevind"
-#: ../../any.pm_.c:501 ../../any_new.pm_.c:493
+#: ../../any.pm_.c:605
msgid "Do you have another one?"
msgstr "Beskik u oor nog?"
-#: ../../any.pm_.c:502 ../../any_new.pm_.c:494
+#: ../../any.pm_.c:606
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Het u enige %s koppelvlakke?"
-#: ../../any.pm_.c:504 ../../any_new.pm_.c:496 ../../interactive.pm_.c:81
-#: ../../my_gtk.pm_.c:485 ../../netconnect.pm_.c:90 ../../netconnect.pm_.c:470
-#: ../../netconnect_new.pm_.c:148 ../../netconnect_new.pm_.c:509
-#: ../../printerdrake.pm_.c:233
+#: ../../any.pm_.c:608 ../../interactive.pm_.c:100 ../../my_gtk.pm_.c:615
+#: ../../printerdrake.pm_.c:237
msgid "No"
msgstr "Nee"
-#: ../../any.pm_.c:504 ../../any_new.pm_.c:496 ../../interactive.pm_.c:81
-#: ../../my_gtk.pm_.c:485 ../../netconnect.pm_.c:88 ../../netconnect.pm_.c:468
-#: ../../netconnect_new.pm_.c:146 ../../netconnect_new.pm_.c:507
+#: ../../any.pm_.c:608 ../../interactive.pm_.c:100 ../../my_gtk.pm_.c:615
msgid "Yes"
msgstr "Ja"
-#: ../../any.pm_.c:505 ../../any_new.pm_.c:497
+#: ../../any.pm_.c:609
msgid "See hardware info"
msgstr "Sien hardeware inligting"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:522 ../../any_new.pm_.c:533
+#: ../../any.pm_.c:644
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Drywer vir %s kaart %s in installasieproses"
-#: ../../any.pm_.c:523 ../../any_new.pm_.c:534
+#: ../../any.pm_.c:645
#, c-format
msgid "(module %s)"
msgstr "(module %s)"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:534 ../../any_new.pm_.c:545
+#: ../../any.pm_.c:656
#, c-format
msgid "Which %s driver should I try?"
msgstr "Watter %s drywer meot ek probeer?"
-#: ../../any.pm_.c:542 ../../any_new.pm_.c:553
+#: ../../any.pm_.c:664
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -727,20 +793,20 @@ msgstr ""
"rekenaar self daarvoor aftas. IN uitsonderlike gevalle mag die rekenaar\n"
"ophang, maar dit sal nie skade veroorsaak nie."
-#: ../../any.pm_.c:547 ../../any_new.pm_.c:558
+#: ../../any.pm_.c:669
msgid "Autoprobe"
msgstr "Aftas"
-#: ../../any.pm_.c:547 ../../any_new.pm_.c:558
+#: ../../any.pm_.c:669
msgid "Specify options"
msgstr "Spesifieer opsies"
-#: ../../any.pm_.c:551 ../../any_new.pm_.c:562
+#: ../../any.pm_.c:673
#, c-format
msgid "You may now provide its options to module %s."
msgstr "U kan die opsies vir module %s hier intik."
-#: ../../any.pm_.c:557 ../../any_new.pm_.c:568
+#: ../../any.pm_.c:679
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -751,11 +817,11 @@ msgstr ""
"Opsies is in die formaat ``naam=waarde naam2=waarde2 ...''.\n"
"Bv. ``io=0x300 irq-7''"
-#: ../../any.pm_.c:560 ../../any_new.pm_.c:571
+#: ../../any.pm_.c:682
msgid "Module options:"
msgstr "Module opsies:"
-#: ../../any.pm_.c:570 ../../any_new.pm_.c:581
+#: ../../any.pm_.c:693
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -764,12 +830,91 @@ msgstr ""
"Laai van module %s het gefaal.\n"
"Wil u ander parameters probeer?"
+#: ../../any.pm_.c:711
+#, c-format
+msgid "(already added %s)"
+msgstr "(%s alreeds bygevoeg)"
+
+#: ../../any.pm_.c:715
+msgid "This password is too simple"
+msgstr "Die wagwoorde is te eenvoudig"
+
+#: ../../any.pm_.c:716
+msgid "Please give a user name"
+msgstr "Gee asb. 'n gebruikerskode"
+
+#: ../../any.pm_.c:717
+msgid ""
+"The user name must contain only lower cased letters, numbers, `-' and `_'"
+msgstr ""
+"Die gebruikerskode maag alleenlikui kleinletter, nommers, '-' en '_' bestaan"
+
+#: ../../any.pm_.c:718
+msgid "This user name is already added"
+msgstr "Hierdie genruikerskode bestaan alreeds"
+
+#: ../../any.pm_.c:722
+msgid "Add user"
+msgstr "Voeg gebruiker by"
+
+#: ../../any.pm_.c:723
+#, c-format
+msgid ""
+"Enter a user\n"
+"%s"
+msgstr ""
+"Tik 'n gebruiker in\n"
+"%s"
+
+#: ../../any.pm_.c:724
+msgid "Accept user"
+msgstr "Aanvaar gebruiker"
+
+#: ../../any.pm_.c:735
+msgid "Real name"
+msgstr "Regte naam"
+
+#: ../../any.pm_.c:736 ../../printerdrake.pm_.c:97
+#: ../../printerdrake.pm_.c:131
+msgid "User name"
+msgstr "Gebruikerskode"
+
+#: ../../any.pm_.c:739
+msgid "Shell"
+msgstr "Dop"
+
+#: ../../any.pm_.c:741
+msgid "Icon"
+msgstr "Ikoon"
+
+#: ../../any.pm_.c:762
+msgid "Autologin"
+msgstr "Outointeken"
+
+#: ../../any.pm_.c:763
+msgid ""
+"I can set up your computer to automatically log on one user.\n"
+"If you don't want to use this feature, click on the cancel button."
+msgstr ""
+"Ek kan u rekenaar so opstel om X outomaties een gebruiker in te teken.\n"
+"Kliek op kanselleer indien u nie hierdie funksionaliteit verlang nie."
+
+#: ../../any.pm_.c:765
+msgid "Choose the default user:"
+msgstr "Kies die verstek gebruiker:"
+
+#
+#: ../../any.pm_.c:766
+msgid "Choose the window manager to run:"
+msgstr "Kies die vensterbestuurder om te loop:"
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#
-#: ../../bootloader.pm_.c:234
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#: ../../bootloader.pm_.c:262
#, fuzzy, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -792,58 +937,239 @@ msgstr ""
# transliteration be used; or maybe the english text be used; as it is best
# The lines must fit on screen, aka length < 80
# and only one line per string for the GRUB messages
-#: ../../bootloader.pm_.c:596
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#: ../../bootloader.pm_.c:795
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welkom by GRUB, die bedryfstelselkieskaart!"
-#: ../../bootloader.pm_.c:597
+#: ../../bootloader.pm_.c:796
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr ""
"Gebruik die %c en %c sleutels om die inskrywing te kies wat uitgelig moet "
"word."
-#: ../../bootloader.pm_.c:598
+#: ../../bootloader.pm_.c:797
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Druk ENTER om die gekose bedryfstelsel te laai, 'e' om te redigeer."
-#: ../../bootloader.pm_.c:599
+#: ../../bootloader.pm_.c:798
msgid "commands before booting, or 'c' for a command-line."
msgstr "instruksies voor herlaai, of 'c' vir 'n instruksielyn."
-#: ../../bootloader.pm_.c:600
+#: ../../bootloader.pm_.c:799
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Die uitgeligte inskrywing sal outomaties in %ds gelaai word."
-#: ../../bootloader.pm_.c:604
+#: ../../bootloader.pm_.c:803
msgid "not enough room in /boot"
msgstr "nie genoeg spasie in /boot nie"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:696
+#: ../../bootloader.pm_.c:895
msgid "Desktop"
msgstr "Werkskerm"
-#: ../../bootloader.pm_.c:696
+#: ../../bootloader.pm_.c:895
msgid "Start Menu"
msgstr "Beginkieskaart"
-#: ../../common.pm_.c:610
+#: ../../bootlook.pm_.c:46
+msgid "no help implemented yet.\n"
+msgstr ""
+
+#: ../../bootlook.pm_.c:62
+#, fuzzy
+msgid "Boot Style Configuration"
+msgstr "Postinstallasiekonfigurasie"
+
+#: ../../bootlook.pm_.c:79
+#, fuzzy
+msgid "/_File"
+msgstr "Lęers:\n"
+
+#: ../../bootlook.pm_.c:81
+msgid "/File/_New"
+msgstr ""
+
+#: ../../bootlook.pm_.c:82
+msgid "<control>N"
+msgstr ""
+
+#: ../../bootlook.pm_.c:84
+msgid "/File/_Open"
+msgstr ""
+
+#: ../../bootlook.pm_.c:85
+msgid "<control>O"
+msgstr ""
+
+#: ../../bootlook.pm_.c:87
+msgid "/File/_Save"
+msgstr ""
+
+#: ../../bootlook.pm_.c:88
+msgid "<control>S"
+msgstr ""
+
+#: ../../bootlook.pm_.c:90
+msgid "/File/Save _As"
+msgstr ""
+
+#: ../../bootlook.pm_.c:91
+msgid "/File/-"
+msgstr ""
+
+#: ../../bootlook.pm_.c:93
+msgid "/File/_Quit"
+msgstr ""
+
+#: ../../bootlook.pm_.c:94
+msgid "<control>Q"
+msgstr ""
+
+#: ../../bootlook.pm_.c:96
+msgid "/_Options"
+msgstr ""
+
+#: ../../bootlook.pm_.c:98
+msgid "/Options/Test"
+msgstr ""
+
+#: ../../bootlook.pm_.c:99
+msgid "/_Help"
+msgstr ""
+
+#: ../../bootlook.pm_.c:101
+msgid "/Help/_About..."
+msgstr ""
+
+#: ../../bootlook.pm_.c:111 ../../standalone/drakgw_.c:634
+#: ../../standalone/draknet_.c:262 ../../standalone/tinyfirewall_.c:57
+#, fuzzy
+msgid "Configure"
+msgstr "Stel X op"
+
+#: ../../bootlook.pm_.c:114
+#, fuzzy, c-format
+msgid ""
+"You are currently using %s as Boot Manager.\n"
+"Click on Configure to launch the setup wizard."
+msgstr "Internetkonneksiedeling"
+
+#: ../../bootlook.pm_.c:121
+#, fuzzy
+msgid "Lilo/grub mode"
+msgstr "Belmetode"
+
+#: ../../bootlook.pm_.c:131
+msgid "NewStyle Categorizing Monitor"
+msgstr ""
+
+#: ../../bootlook.pm_.c:134
+#, fuzzy
+msgid "NewStyle Monitor"
+msgstr "Monitor"
+
+#: ../../bootlook.pm_.c:137
+#, fuzzy
+msgid "Traditional Monitor"
+msgstr "Verander monitor"
+
+#: ../../bootlook.pm_.c:140
+msgid "Traditional Gtk+ Monitor"
+msgstr ""
+
+#: ../../bootlook.pm_.c:144
+msgid "Launch Aurora at boot time"
+msgstr ""
+
+#: ../../bootlook.pm_.c:169
+#, fuzzy
+msgid "Boot mode"
+msgstr "Herlaaitoestel"
+
+#: ../../bootlook.pm_.c:179
+msgid "Launch the X-Window system at start"
+msgstr ""
+
+#: ../../bootlook.pm_.c:187
+msgid "No, I don't want autologin"
+msgstr ""
+
+#: ../../bootlook.pm_.c:193
+msgid "Yes, I want autologin with this (user, desktop)"
+msgstr ""
+
+#: ../../bootlook.pm_.c:210
+msgid "System mode"
+msgstr ""
+
+#: ../../bootlook.pm_.c:218 ../../standalone/draknet_.c:88
+#: ../../standalone/draknet_.c:120 ../../standalone/draknet_.c:184
+#: ../../standalone/draknet_.c:302 ../../standalone/draknet_.c:394
+#: ../../standalone/draknet_.c:471 ../../standalone/draknet_.c:507
+#: ../../standalone/draknet_.c:609
+msgid "OK"
+msgstr ""
+
+#: ../../bootlook.pm_.c:220 ../../install_steps_gtk.pm_.c:576
+#: ../../interactive.pm_.c:110 ../../interactive.pm_.c:265
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:357
+#: ../../my_gtk.pm_.c:360 ../../my_gtk.pm_.c:616
+#: ../../standalone/drakgw_.c:639 ../../standalone/draknet_.c:95
+#: ../../standalone/draknet_.c:127 ../../standalone/draknet_.c:295
+#: ../../standalone/draknet_.c:483 ../../standalone/draknet_.c:623
+#: ../../standalone/tinyfirewall_.c:63
+msgid "Cancel"
+msgstr "Kanselleer"
+
+#: ../../bootlook.pm_.c:297
+msgid "can not open /etc/inittab for reading: $!"
+msgstr ""
+
+#: ../../bootlook.pm_.c:351
+msgid "can not open /etc/sysconfig/autologin for reading: $!"
+msgstr ""
+
+#: ../../bootlook.pm_.c:416 ../../standalone/drakboot_.c:47
+msgid "Installation of LILO failed. The following error occured:"
+msgstr "LILO installasie het gefaal a.g.v. hierdie fout: "
+
+#: ../../common.pm_.c:634
+msgid "GB"
+msgstr ""
+
+#: ../../common.pm_.c:634
+msgid "KB"
+msgstr ""
+
+#: ../../common.pm_.c:634 ../../diskdrake.pm_.c:660
+#: ../../install_steps_graphical.pm_.c:287
+#: ../../install_steps_graphical.pm_.c:334
+msgid "MB"
+msgstr "MB"
+
+#: ../../common.pm_.c:642
+msgid "TB"
+msgstr ""
+
+#: ../../common.pm_.c:655
#, c-format
msgid "%d minutes"
msgstr "%d minute"
-#: ../../common.pm_.c:612
+#: ../../common.pm_.c:657
msgid "1 minute"
msgstr "1 minuut"
-#: ../../common.pm_.c:614
+#: ../../common.pm_.c:659
#, c-format
msgid "%d seconds"
msgstr "%d sekondes"
-#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:427
+#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:462
msgid "Create"
msgstr "Skep"
@@ -851,7 +1177,7 @@ msgstr "Skep"
msgid "Unmount"
msgstr "Ontheg"
-#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:429
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:464
msgid "Delete"
msgstr "Uitwis"
@@ -859,16 +1185,16 @@ msgstr "Uitwis"
msgid "Format"
msgstr "Formatteer"
-#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:610
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:653
msgid "Resize"
msgstr "Verstel Grootte"
-#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:427
-#: ../../diskdrake.pm_.c:480
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:462
+#: ../../diskdrake.pm_.c:518
msgid "Type"
msgstr "Tipe"
-#: ../../diskdrake.pm_.c:24 ../../diskdrake.pm_.c:500
+#: ../../diskdrake.pm_.c:24 ../../diskdrake.pm_.c:539
msgid "Mount point"
msgstr "Hegpunt"
@@ -908,23 +1234,23 @@ msgstr "Stoor op floppie"
msgid "Clear all"
msgstr "Verwydeer almal"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "Format all"
msgstr "Formatteer almal"
-#: ../../diskdrake.pm_.c:51
+#: ../../diskdrake.pm_.c:55
msgid "Auto allocate"
msgstr "Outo-allokeer"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:59
msgid "All primary partitions are used"
msgstr "Alle primOre partisies is gebruik"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:59
msgid "I can't add any more partition"
msgstr "Ek kan nie meer partisies byvoeg nie"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:59
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -932,63 +1258,62 @@ msgstr ""
"Om meer partisies te verkry, verwyder asb. een om 'n ektensiepartisiete kan "
"skep"
-#: ../../diskdrake.pm_.c:57
-msgid "Rescue partition table"
-msgstr "Reddingspartisietabel"
+#: ../../diskdrake.pm_.c:61
+#, fuzzy
+msgid "Not enough space for auto-allocating"
+msgstr "Nie genoeg spasie beskikbaar om nuwe partisies toe te ken nie"
-#: ../../diskdrake.pm_.c:58
+#: ../../diskdrake.pm_.c:63
msgid "Undo"
msgstr "Herroep"
-#: ../../diskdrake.pm_.c:59
+#: ../../diskdrake.pm_.c:64
msgid "Write partition table"
msgstr "Skryf partisietabel"
-#: ../../diskdrake.pm_.c:60
-msgid "Reload"
-msgstr "Herlaai"
-
-#: ../../diskdrake.pm_.c:101
-msgid "loopback"
-msgstr "teruglus"
+#: ../../diskdrake.pm_.c:65 ../../install_steps_interactive.pm_.c:185
+#, fuzzy
+msgid "More"
+msgstr "Skuif"
-#: ../../diskdrake.pm_.c:114
+#: ../../diskdrake.pm_.c:116
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake.pm_.c:114
+#: ../../diskdrake.pm_.c:116
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake.pm_.c:114
+#: ../../diskdrake.pm_.c:116
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake.pm_.c:114
+#: ../../diskdrake.pm_.c:116
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake.pm_.c:114
+#: ../../diskdrake.pm_.c:116
msgid "Swap"
msgstr "Ruilarea"
-#: ../../diskdrake.pm_.c:115
+#: ../../diskdrake.pm_.c:117
msgid "Empty"
msgstr "Leeg"
-#: ../../diskdrake.pm_.c:115 ../../mouse.pm_.c:125
+#: ../../diskdrake.pm_.c:117 ../../install_steps_gtk.pm_.c:407
+#: ../../mouse.pm_.c:145
msgid "Other"
msgstr "Ander"
-#: ../../diskdrake.pm_.c:121
+#: ../../diskdrake.pm_.c:123
msgid "Filesystem types:"
msgstr "LOersteltipes:"
-#: ../../diskdrake.pm_.c:130
+#: ../../diskdrake.pm_.c:132 ../../install_steps_gtk.pm_.c:577
msgid "Details"
msgstr "Detail"
-#: ../../diskdrake.pm_.c:144
+#: ../../diskdrake.pm_.c:147
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1000,17 +1325,17 @@ msgstr ""
"Ek stel voor u verstel eers die grootte van dié partisie\n"
"(kliek daarop en kliek dan op \"Verstel Grootte\")"
-#: ../../diskdrake.pm_.c:149
+#: ../../diskdrake.pm_.c:152
msgid "Please make a backup of your data first"
msgstr "Rugsteun u data eers asb."
-#: ../../diskdrake.pm_.c:149 ../../diskdrake.pm_.c:166
-#: ../../diskdrake.pm_.c:175 ../../diskdrake.pm_.c:532
-#: ../../diskdrake.pm_.c:554
+#: ../../diskdrake.pm_.c:152 ../../diskdrake.pm_.c:170
+#: ../../diskdrake.pm_.c:179 ../../diskdrake.pm_.c:570
+#: ../../diskdrake.pm_.c:592
msgid "Read carefully!"
msgstr "Lees noukeurig!"
-#: ../../diskdrake.pm_.c:152
+#: ../../diskdrake.pm_.c:155
msgid ""
"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
"enough)\n"
@@ -1019,77 +1344,81 @@ msgstr ""
"Indien u beplan om 'aboot' te gebruik, los spasie aan die begin\n"
"van die skyf. (2048 sektors is genoeg)."
-#: ../../diskdrake.pm_.c:166
+#: ../../diskdrake.pm_.c:170
msgid "Be careful: this operation is dangerous."
msgstr "Wees versigtig: hierdie is 'n gevaarlike operasie"
-#: ../../diskdrake.pm_.c:203 ../../install_steps.pm_.c:73
-#: ../../install_steps_interactive.pm_.c:38
-#: ../../install_steps_interactive.pm_.c:315 ../../standalone/diskdrake_.c:60
-#: ../../standalone/rpmdrake_.c:294 ../../standalone/rpmdrake_.c:304
+#: ../../diskdrake.pm_.c:214 ../../install_steps.pm_.c:72
+#: ../../install_steps_interactive.pm_.c:37
+#: ../../install_steps_interactive.pm_.c:322 ../../standalone/diskdrake_.c:66
msgid "Error"
msgstr "Fout"
-#: ../../diskdrake.pm_.c:227 ../../diskdrake.pm_.c:708
+#: ../../diskdrake.pm_.c:238 ../../diskdrake.pm_.c:748
msgid "Mount point: "
msgstr "Hegpunt:"
-#: ../../diskdrake.pm_.c:228 ../../diskdrake.pm_.c:269
+#: ../../diskdrake.pm_.c:239 ../../diskdrake.pm_.c:298
msgid "Device: "
msgstr "Toestel:"
-#: ../../diskdrake.pm_.c:229
+#: ../../diskdrake.pm_.c:240
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS-skyfletter: %s ('n raaiskoot)\n"
-#: ../../diskdrake.pm_.c:230 ../../diskdrake.pm_.c:272
+#: ../../diskdrake.pm_.c:244 ../../diskdrake.pm_.c:251
+#: ../../diskdrake.pm_.c:301
msgid "Type: "
msgstr "Tipe:"
-#: ../../diskdrake.pm_.c:231
+#: ../../diskdrake.pm_.c:248
+msgid "Name: "
+msgstr "Naam: "
+
+#: ../../diskdrake.pm_.c:253
#, c-format
msgid "Start: sector %s\n"
msgstr "Begin: sektor %s\n"
-#: ../../diskdrake.pm_.c:232
+#: ../../diskdrake.pm_.c:254
#, c-format
-msgid "Size: %d MB"
-msgstr "Grootte: %d MB"
+msgid "Size: %s"
+msgstr "Grootte: %s"
-#: ../../diskdrake.pm_.c:234
+#: ../../diskdrake.pm_.c:256
#, c-format
msgid ", %s sectors"
msgstr ", %s sektore"
-#: ../../diskdrake.pm_.c:236
+#: ../../diskdrake.pm_.c:258
#, c-format
msgid "Cylinder %d to cylinder %d\n"
msgstr "Silinder %d na silinder %d\n"
-#: ../../diskdrake.pm_.c:237
+#: ../../diskdrake.pm_.c:259
msgid "Formatted\n"
msgstr "Geformateer\n"
-#: ../../diskdrake.pm_.c:238
+#: ../../diskdrake.pm_.c:260
msgid "Not formatted\n"
msgstr "Nie geformatter\n"
-#: ../../diskdrake.pm_.c:239
+#: ../../diskdrake.pm_.c:261
msgid "Mounted\n"
msgstr "Geheg\n"
-#: ../../diskdrake.pm_.c:240
+#: ../../diskdrake.pm_.c:262
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake.pm_.c:241
+#: ../../diskdrake.pm_.c:264
#, c-format
msgid "Loopback file(s): %s\n"
msgstr "Teruglus lęer(s): %s\n"
-#: ../../diskdrake.pm_.c:242
+#: ../../diskdrake.pm_.c:265
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -1097,79 +1426,108 @@ msgstr ""
"Verstekpartisie vir herlaai\n"
" (vir MS_DOS doeleindes, nie LILO s'n nie)\n"
-#: ../../diskdrake.pm_.c:244
+#: ../../diskdrake.pm_.c:267
#, c-format
msgid "Level %s\n"
msgstr "Vlak %s\n"
-#: ../../diskdrake.pm_.c:245
+#: ../../diskdrake.pm_.c:268
#, c-format
msgid "Chunk size %s\n"
msgstr "Blokgrootte %s\n"
-#: ../../diskdrake.pm_.c:246
+#: ../../diskdrake.pm_.c:269
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-skywe %s\n"
-#: ../../diskdrake.pm_.c:248
+#: ../../diskdrake.pm_.c:271
#, c-format
msgid "Loopback file name: %s"
msgstr "Teruglus lęernaam: %s"
-#: ../../diskdrake.pm_.c:265
+#: ../../diskdrake.pm_.c:274
+msgid ""
+"\n"
+"Chances are, this partition is\n"
+"a Driver partition, you should\n"
+"probably leave it alone.\n"
+msgstr ""
+
+#: ../../diskdrake.pm_.c:277
+msgid ""
+"\n"
+"This special Bootstrap\n"
+"partition is for\n"
+"dual-booting your system.\n"
+msgstr ""
+
+#: ../../diskdrake.pm_.c:294
msgid "Please click on a partition"
msgstr "Kliek asb. op 'n partisie"
-#: ../../diskdrake.pm_.c:270
+#: ../../diskdrake.pm_.c:299
#, c-format
-msgid "Size: %d MB\n"
-msgstr "Grootte: %d MB\n"
+msgid "Size: %s\n"
+msgstr "Grootte: %s\n"
-#: ../../diskdrake.pm_.c:271
+#: ../../diskdrake.pm_.c:300
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrie: %s silinders, %s koppe, %s sektore\n"
-#: ../../diskdrake.pm_.c:273
+#: ../../diskdrake.pm_.c:302
+#, c-format
+msgid "LVM-disks %s\n"
+msgstr "LVM-skywe %s\n"
+
+#: ../../diskdrake.pm_.c:303
#, c-format
msgid "Partition table type: %s\n"
msgstr "Partisietabeltipe: %s\n"
-#: ../../diskdrake.pm_.c:274
+#: ../../diskdrake.pm_.c:304
#, c-format
msgid "on bus %d id %d\n"
msgstr "op bus %d id %d\n"
-#: ../../diskdrake.pm_.c:290
+#: ../../diskdrake.pm_.c:320
msgid "Mount"
msgstr "Heg"
-#: ../../diskdrake.pm_.c:292
+#: ../../diskdrake.pm_.c:322
msgid "Active"
msgstr "Aktief"
-#: ../../diskdrake.pm_.c:294
+#: ../../diskdrake.pm_.c:324
msgid "Add to RAID"
msgstr "Voeg by RAID"
-#: ../../diskdrake.pm_.c:296
+#: ../../diskdrake.pm_.c:326
msgid "Remove from RAID"
msgstr "Verwyder uit RAID"
-#: ../../diskdrake.pm_.c:298
+#: ../../diskdrake.pm_.c:328
msgid "Modify RAID"
msgstr "Verander RAID"
-#: ../../diskdrake.pm_.c:300
+#: ../../diskdrake.pm_.c:330
+msgid "Add to LVM"
+msgstr "Voeg by LVM"
+
+#: ../../diskdrake.pm_.c:332
+msgid "Remove from LVM"
+msgstr "Verwyder uit LVM"
+
+#: ../../diskdrake.pm_.c:334
msgid "Use for loopback"
msgstr "Gebruik vir teruglus"
-#: ../../diskdrake.pm_.c:307
+#: ../../diskdrake.pm_.c:341
msgid "Choose action"
msgstr "Kies aksie"
-#: ../../diskdrake.pm_.c:400
+#: ../../diskdrake.pm_.c:435
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1182,7 +1540,7 @@ msgstr ""
"gebruik\n"
"nie, dan het u nie /boot nodig nie."
-#: ../../diskdrake.pm_.c:404
+#: ../../diskdrake.pm_.c:439
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1195,7 +1553,7 @@ msgstr ""
"gebruik,moet u\n"
"asb. 'n /boot partisie skep,"
-#: ../../diskdrake.pm_.c:410
+#: ../../diskdrake.pm_.c:445
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1205,16 +1563,16 @@ msgstr ""
"Geen herlaaistelsel sal dit kan hanteer sonder 'n /boot partisie nie.\n"
"Onthou om 'n /boot by te voeg."
-#: ../../diskdrake.pm_.c:427 ../../diskdrake.pm_.c:429
+#: ../../diskdrake.pm_.c:462 ../../diskdrake.pm_.c:464
#, c-format
msgid "Use ``%s'' instead"
msgstr "Gebruik ``%s'' instede."
-#: ../../diskdrake.pm_.c:432
+#: ../../diskdrake.pm_.c:468
msgid "Use ``Unmount'' first"
msgstr "Gebruik ``Ontheg'' eerste"
-#: ../../diskdrake.pm_.c:433 ../../diskdrake.pm_.c:475
+#: ../../diskdrake.pm_.c:469 ../../diskdrake.pm_.c:513
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
@@ -1222,43 +1580,43 @@ msgstr ""
"Alle data om hierdie partisie %s sal uitgewis word na verandering van die "
"partisietipe"
-#: ../../diskdrake.pm_.c:445
+#: ../../diskdrake.pm_.c:481
msgid "Continue anyway?"
msgstr "Wil u in elk geval voortgaan?"
-#: ../../diskdrake.pm_.c:450
+#: ../../diskdrake.pm_.c:486
msgid "Quit without saving"
msgstr "Verlaat, maar moenie iets stoor nie"
-#: ../../diskdrake.pm_.c:450
+#: ../../diskdrake.pm_.c:486
msgid "Quit without writing the partition table?"
msgstr "Wil u verlaat, sonder om die partisietabel op te dateer?"
-#: ../../diskdrake.pm_.c:478
+#: ../../diskdrake.pm_.c:516
msgid "Change partition type"
msgstr "Verander partisietipe"
#
-#: ../../diskdrake.pm_.c:479
+#: ../../diskdrake.pm_.c:517
#, fuzzy
msgid "Which filesystem do you want?"
msgstr "Watter drukkerstelsel verlang u?"
-#: ../../diskdrake.pm_.c:482 ../../diskdrake.pm_.c:740
+#: ../../diskdrake.pm_.c:520 ../../diskdrake.pm_.c:780
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "U kan nie ReiserFS vir partisies kleiner as 32MB gebruik nie"
-#: ../../diskdrake.pm_.c:498
+#: ../../diskdrake.pm_.c:537
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Waar wil u terugluslęer %s heg?"
-#: ../../diskdrake.pm_.c:499
+#: ../../diskdrake.pm_.c:538
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Waar wil u toestel %s heg?"
-#: ../../diskdrake.pm_.c:504
+#: ../../diskdrake.pm_.c:542
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1266,145 +1624,138 @@ msgstr ""
"Kan nie hegpunt ontset nie, omdat hierdie partisie vir teruglus\n"
"gebruik word. Verwyder eers die teruglus."
-#: ../../diskdrake.pm_.c:523
+#: ../../diskdrake.pm_.c:561
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Alle data om partisie %s sal uitgewis word met formatering."
-#: ../../diskdrake.pm_.c:525
+#: ../../diskdrake.pm_.c:563
msgid "Formatting"
msgstr "Formatering"
-#: ../../diskdrake.pm_.c:526
+#: ../../diskdrake.pm_.c:564
#, c-format
msgid "Formatting loopback file %s"
msgstr "Terugluslęer %s word geformateer"
-#: ../../diskdrake.pm_.c:527 ../../install_steps_interactive.pm_.c:402
+#: ../../diskdrake.pm_.c:565 ../../install_steps_interactive.pm_.c:430
#, c-format
msgid "Formatting partition %s"
msgstr "Partisie %s word formateer"
-#: ../../diskdrake.pm_.c:532
+#: ../../diskdrake.pm_.c:570
msgid "After formatting all partitions,"
msgstr "Na formatering van alle partisies"
-#: ../../diskdrake.pm_.c:532
+#: ../../diskdrake.pm_.c:570
msgid "all data on these partitions will be lost"
msgstr "alle data om hierdie partisies sal verloor word"
-#: ../../diskdrake.pm_.c:538
+#: ../../diskdrake.pm_.c:576
msgid "Move"
msgstr "Skuif"
-#: ../../diskdrake.pm_.c:539
+#: ../../diskdrake.pm_.c:577
msgid "Which disk do you want to move it to?"
msgstr "Na watter skyf wil u skuif?"
-#: ../../diskdrake.pm_.c:540
+#: ../../diskdrake.pm_.c:578
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake.pm_.c:541
+#: ../../diskdrake.pm_.c:579
msgid "Which sector do you want to move it to?"
msgstr "Na watter sektor wil u skuif?"
-#: ../../diskdrake.pm_.c:544
+#: ../../diskdrake.pm_.c:582
msgid "Moving"
msgstr "Verskuiwing"
-#: ../../diskdrake.pm_.c:544
+#: ../../diskdrake.pm_.c:582
msgid "Moving partition..."
msgstr "Partisie word verskuif..."
-#: ../../diskdrake.pm_.c:554
+#: ../../diskdrake.pm_.c:592
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Partisietabel van skyf %s gaan opdateer word!"
-#: ../../diskdrake.pm_.c:556
+#: ../../diskdrake.pm_.c:594
msgid "You'll need to reboot before the modification can take place"
msgstr "U sal moet herlaai voor die veranderinge geaktiveer kan word"
-#: ../../diskdrake.pm_.c:577
+#: ../../diskdrake.pm_.c:615
msgid "Computing FAT filesystem bounds"
msgstr "FAT lęerstelselgrense word bereken"
-#: ../../diskdrake.pm_.c:577 ../../diskdrake.pm_.c:637
+#: ../../diskdrake.pm_.c:615 ../../diskdrake.pm_.c:680
#: ../../install_interactive.pm_.c:107
msgid "Resizing"
msgstr "Grootteverandering"
-#: ../../diskdrake.pm_.c:600
+#: ../../diskdrake.pm_.c:643
#, fuzzy
msgid "This partition is not resizeable"
msgstr "Watter partisie se grootte wil u verander?"
-#: ../../diskdrake.pm_.c:605
+#: ../../diskdrake.pm_.c:648
msgid "All data on this partition should be backed-up"
msgstr "Alle data om hierdie partisie moet gerugsteun word."
-#: ../../diskdrake.pm_.c:607
+#: ../../diskdrake.pm_.c:650
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Alle data om partisie %s sal uitgewis word met die grootteverandering"
-#: ../../diskdrake.pm_.c:617
+#: ../../diskdrake.pm_.c:660
msgid "Choose the new size"
msgstr "Kies die nuwe grootte"
-#: ../../diskdrake.pm_.c:617 ../../install_steps_graphical.pm_.c:287
-#: ../../install_steps_graphical.pm_.c:334
-#: ../../install_steps_interactive.pm_.c:518
-#: ../../partition_table_raw.pm_.c:101
-msgid "MB"
-msgstr "MB"
-
-#: ../../diskdrake.pm_.c:674
+#: ../../diskdrake.pm_.c:714
msgid "Create a new partition"
msgstr "Kies 'n nuwe grootte"
-#: ../../diskdrake.pm_.c:700
+#: ../../diskdrake.pm_.c:740
msgid "Start sector: "
msgstr "Kies sektor: "
-#: ../../diskdrake.pm_.c:704 ../../diskdrake.pm_.c:779
+#: ../../diskdrake.pm_.c:744 ../../diskdrake.pm_.c:819
msgid "Size in MB: "
msgstr "Grootte in MB: "
-#: ../../diskdrake.pm_.c:707 ../../diskdrake.pm_.c:782
+#: ../../diskdrake.pm_.c:747 ../../diskdrake.pm_.c:822
msgid "Filesystem type: "
msgstr "LOerstelseltipe: "
-#: ../../diskdrake.pm_.c:710
+#: ../../diskdrake.pm_.c:750
msgid "Preference: "
msgstr "Voorkeure: "
-#: ../../diskdrake.pm_.c:758
+#: ../../diskdrake.pm_.c:798
msgid "This partition can't be used for loopback"
msgstr "Hierdie partisie kan nie vir teruglus gebruik word nie."
-#: ../../diskdrake.pm_.c:768
+#: ../../diskdrake.pm_.c:808
msgid "Loopback"
msgstr "Teruglus"
-#: ../../diskdrake.pm_.c:778
+#: ../../diskdrake.pm_.c:818
msgid "Loopback file name: "
msgstr "Teruglus lęernaam:"
-#: ../../diskdrake.pm_.c:804
+#: ../../diskdrake.pm_.c:844
msgid "File already used by another loopback, choose another one"
msgstr "Lęer word alreeds deur 'n ander teruglus gebruik,kies 'n ander een"
-#: ../../diskdrake.pm_.c:805
+#: ../../diskdrake.pm_.c:845
msgid "File already exists. Use it?"
msgstr "Lęer bestaan alreeds. Moet dit gebruik word?"
-#: ../../diskdrake.pm_.c:827 ../../diskdrake.pm_.c:843
+#: ../../diskdrake.pm_.c:867 ../../diskdrake.pm_.c:883
msgid "Select file"
msgstr "Selekteer lOer"
-#: ../../diskdrake.pm_.c:836
+#: ../../diskdrake.pm_.c:876
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1412,11 +1763,11 @@ msgstr ""
"Die rugsteunpartisietabel het nie dieselfde grootte nie\n"
"Wil u voortgaan?"
-#: ../../diskdrake.pm_.c:844
+#: ../../diskdrake.pm_.c:884
msgid "Warning"
msgstr "Waarskuwing"
-#: ../../diskdrake.pm_.c:845
+#: ../../diskdrake.pm_.c:885
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1424,77 +1775,112 @@ msgstr ""
"Sit 'n floppie in die aandrywer.\n"
"Alle data op hierdie floppie sal verloor word."
-#: ../../diskdrake.pm_.c:856
+#: ../../diskdrake.pm_.c:896
msgid "Trying to rescue partition table"
msgstr "Partisietabel Reddingspoging"
-#: ../../diskdrake.pm_.c:867
+#: ../../diskdrake.pm_.c:905
msgid "device"
msgstr "toestel"
-#: ../../diskdrake.pm_.c:868
+#: ../../diskdrake.pm_.c:906
msgid "level"
msgstr "vlak"
-#: ../../diskdrake.pm_.c:869
+#: ../../diskdrake.pm_.c:907
msgid "chunk size"
msgstr "blokgrootte"
-#: ../../diskdrake.pm_.c:881
+#: ../../diskdrake.pm_.c:919
msgid "Choose an existing RAID to add to"
msgstr "Kies 'n bestaande RAID om by toe te voeg"
-#: ../../diskdrake.pm_.c:882
+#: ../../diskdrake.pm_.c:920 ../../diskdrake.pm_.c:946
msgid "new"
msgstr "nuut"
+#: ../../diskdrake.pm_.c:944
+msgid "Choose an existing LVM to add to"
+msgstr "Kies 'n bestaande LVM om by toe te voeg"
+
+#: ../../diskdrake.pm_.c:949
+msgid "LVM name?"
+msgstr ""
+
+#: ../../diskdrake.pm_.c:976
+msgid "Removable media automounting"
+msgstr "Outohegting van verwyderbare media"
+
+#: ../../diskdrake.pm_.c:977
+msgid "Rescue partition table"
+msgstr "Reddingspartisietabel"
+
+#: ../../diskdrake.pm_.c:979
+msgid "Reload"
+msgstr "Herlaai"
+
#: ../../fs.pm_.c:88 ../../fs.pm_.c:95 ../../fs.pm_.c:101 ../../fs.pm_.c:107
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatering ban %s het gefaal"
-#: ../../fs.pm_.c:133
+#: ../../fs.pm_.c:135
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "Ek weet nie om %s as tipe %s te formateer nie"
-#: ../../fs.pm_.c:218
+#: ../../fs.pm_.c:220
msgid "mount failed: "
msgstr "heg het gefaal"
-#: ../../fs.pm_.c:230
+#: ../../fs.pm_.c:232
#, c-format
msgid "error unmounting %s: %s"
msgstr "fout met onthegting van %s: %s"
-#: ../../fsedit.pm_.c:235
+#: ../../fsedit.pm_.c:21
+#, fuzzy
+msgid "simple"
+msgstr "Lęer"
+
+#: ../../fsedit.pm_.c:30
+#, fuzzy
+msgid "server"
+msgstr "X-bediener"
+
+#: ../../fsedit.pm_.c:261
msgid "Mount points must begin with a leading /"
msgstr "Hegpunte moet met 'n / begin"
-#: ../../fsedit.pm_.c:238
+#: ../../fsedit.pm_.c:264
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Daar is alreeds 'n partisie met hegpunt %s\n"
-#: ../../fsedit.pm_.c:246
+#: ../../fsedit.pm_.c:272
#, c-format
msgid "Circular mounts %s\n"
msgstr "Sirkulęre heg %s\n"
-#: ../../fsedit.pm_.c:258
+#: ../../fsedit.pm_.c:284
+#, c-format
+msgid "You can't use a LVM Logical Volume for mount point %s"
+msgstr ""
+
+#: ../../fsedit.pm_.c:285
msgid "This directory should remain within the root filesystem"
msgstr "Hierdie lęergids moet altyd in die wortellęerstelsel bly"
-#: ../../fsedit.pm_.c:259
+#: ../../fsedit.pm_.c:286
msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
msgstr "U benodig 'n ware lęerstelsel (ext2, reiserfs) vir hierdie hegpunt\n"
-#: ../../fsedit.pm_.c:335
+#: ../../fsedit.pm_.c:368
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Four om %s in skryfmode te open: %s"
-#: ../../fsedit.pm_.c:417
+#: ../../fsedit.pm_.c:452
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"
@@ -1502,7 +1888,7 @@ msgstr ""
"'n Fout het voorgekom - geen geldige toestelle om die nuwe lOerstelsels op "
"teskep, is gevind nie. Deursoek asb. die hardeware vir die oorsaak."
-#: ../../fsedit.pm_.c:431
+#: ../../fsedit.pm_.c:466
msgid "You don't have any partitions!"
msgstr "U get geen partisies nie!"
@@ -1552,15 +1938,15 @@ msgid ""
"levels to install or update your\n"
"Linux-Mandrake operating system:\n"
"\n"
-"\t* Recommanded: if you have never installed a GNU/Linux operating system "
+"\t* Recommended: if you have never installed a GNU/Linux operating system "
"choose this. Installation will be\n"
"\t be very easy and you will be asked only on few questions.\n"
"\n"
"\n"
"\t* Customized: if you are familiar enough with GNU/Linux, you may choose "
"the primary usage (workstation, server,\n"
-"\t development) of your sytem. You will need to answer to more questions "
-"than in \"Recommanded\" installation\n"
+"\t development) of your system. You will need to answer to more questions "
+"than in \"Recommended\" installation\n"
"\t class, so you need to know how GNU/Linux works to choose this "
"installation class.\n"
"\n"
@@ -1789,7 +2175,7 @@ msgid ""
"hard drive.\n"
"\n"
"\n"
-" * Auto allocate:: this option allows you to automatically create Ext2 and "
+" * Auto allocate: this option allows you to automatically create Ext2 and "
"swap partitions in free space of your\n"
" hard drive.\n"
"\n"
@@ -1836,10 +2222,18 @@ msgid ""
"\n"
" * Ctrl-d to delete a partition\n"
"\n"
-" * Ctrl-m to set the mount point"
+" * Ctrl-m to set the mount point\n"
+" \n"
+"\n"
+" \n"
+"If you are installing on a PPC Machine, you will want to create a small HFS "
+"'bootstrap' partition of at least 1MB for use\n"
+"by the yaboot bootloader. If you opt to make the partition a bit larger, say "
+"50MB, you may find it a useful place to store \n"
+"a spare kernel and ramdisk image for emergency boot situations."
msgstr ""
-#: ../../help.pm_.c:218
+#: ../../help.pm_.c:224
msgid ""
"Above are listed the existing Linux partitions detected on\n"
"your hard drive. You can keep choices make by the wizard, they are good for "
@@ -1883,7 +2277,7 @@ msgid ""
"\"secondary hard drive\", etc..."
msgstr ""
-#: ../../help.pm_.c:252
+#: ../../help.pm_.c:258
msgid ""
"Choose the hard drive you want to erase to install your\n"
"new Linux-Mandrake partition. Be careful, all data present on it will be "
@@ -1891,7 +2285,7 @@ msgid ""
"and will not be recoverable."
msgstr ""
-#: ../../help.pm_.c:257
+#: ../../help.pm_.c:263
msgid ""
"Click on \"OK\" if you want to delete all data and\n"
"partitions present on this hard drive. Be careful, after clicking on \"OK\", "
@@ -1905,7 +2299,7 @@ msgid ""
"partitions present on this hard drive."
msgstr ""
-#: ../../help.pm_.c:267
+#: ../../help.pm_.c:273
msgid ""
"More than one Microsoft Windows partition have been\n"
"detected on your hard drive. Please choose the one you want resize to "
@@ -1947,11 +2341,11 @@ msgid ""
"or partition is called \"C:\")."
msgstr ""
-#: ../../help.pm_.c:300
+#: ../../help.pm_.c:306
msgid "Please be patient. This operation can take several minutes."
msgstr ""
-#: ../../help.pm_.c:303
+#: ../../help.pm_.c:309
msgid ""
"Any partitions that have been newly defined must be\n"
"formatted for use (formatting meaning creating a filesystem).\n"
@@ -1985,7 +2379,7 @@ msgid ""
"Linux-Mandrake operating system."
msgstr ""
-#: ../../help.pm_.c:329
+#: ../../help.pm_.c:335
#, fuzzy
msgid ""
"You may now select the group of packages you wish to\n"
@@ -2012,7 +2406,7 @@ msgstr ""
"pakketkeuses\"\n"
"kies waarna u deur meer as 'n 1000 pakkette sal moet blaai....."
-#: ../../help.pm_.c:341
+#: ../../help.pm_.c:347
msgid ""
"You can now choose individually all the packages you\n"
"wish to install.\n"
@@ -2033,7 +2427,7 @@ msgid ""
"unselect several other packages which depend on it."
msgstr ""
-#: ../../help.pm_.c:358
+#: ../../help.pm_.c:364
#, fuzzy
msgid ""
"If you have all the CDs in the list above, click Ok. If you have\n"
@@ -2045,7 +2439,7 @@ msgstr ""
"Indien u geen het nie, kliek Kanselleer.\n"
"Indien sekere CDs weg is, onselekteer hulle en kliek dan OK."
-#: ../../help.pm_.c:363
+#: ../../help.pm_.c:369
msgid ""
"Your new Linux-Mandrake operating system is currently being\n"
"installed. This operation should take a few minutes (it depends on size you\n"
@@ -2055,14 +2449,14 @@ msgid ""
"Please be patient."
msgstr ""
-#: ../../help.pm_.c:371
+#: ../../help.pm_.c:377
msgid ""
"You can now test your mouse. Use buttons and wheel to verify\n"
"if settings are good. If not, you can click on \"Cancel\" to choose another\n"
"driver."
msgstr ""
-#: ../../help.pm_.c:376
+#: ../../help.pm_.c:382
#, fuzzy
msgid ""
"Please select the correct port. For example, the COM1\n"
@@ -2071,7 +2465,7 @@ msgstr ""
"Kies asb. die korrekte poort. Onthou dat COM1 onder MS Windows \n"
"ttyS0 onder GNU/Linux is."
-#: ../../help.pm_.c:380
+#: ../../help.pm_.c:386
msgid ""
"If you wish to connect your computer to the Internet or\n"
"to a local network please choose the correct option. Please turn on your "
@@ -2089,7 +2483,7 @@ msgid ""
"finished to configure your network connection, choose \"Done\"."
msgstr ""
-#: ../../help.pm_.c:393
+#: ../../help.pm_.c:399
msgid ""
"No modem has been detected. Please select the serial port on which it is "
"plugged.\n"
@@ -2099,7 +2493,7 @@ msgid ""
"Windows) is called \"ttyS0\" under Linux."
msgstr ""
-#: ../../help.pm_.c:400
+#: ../../help.pm_.c:406
msgid ""
"You may now enter dialup options. If you don't know\n"
"or are not sure what to enter, the correct informations can be obtained "
@@ -2110,17 +2504,17 @@ msgid ""
"Provider at connection time."
msgstr ""
-#: ../../help.pm_.c:407
+#: ../../help.pm_.c:413
msgid ""
"If your modem is an external modem, please turn on it now to let DrakX "
"detect it automatically."
msgstr ""
-#: ../../help.pm_.c:410
+#: ../../help.pm_.c:416
msgid "Please turn on your modem and choose the correct one."
msgstr ""
-#: ../../help.pm_.c:413
+#: ../../help.pm_.c:419
msgid ""
"If you are not sure if informations above are\n"
"correct or if you don't know or are not sure what to enter, the correct\n"
@@ -2131,7 +2525,7 @@ msgid ""
"from your Internet Service Provider at connection time."
msgstr ""
-#: ../../help.pm_.c:420
+#: ../../help.pm_.c:426
#, fuzzy
msgid ""
"You may now enter your host name if needed. If you\n"
@@ -2141,7 +2535,7 @@ msgstr ""
"U kan nou die opbelopsie invul. Indien u\n"
"twyfel kry die korrekte inligting van u ISP."
-#: ../../help.pm_.c:425
+#: ../../help.pm_.c:431
#, fuzzy
msgid ""
"You may now configure your network device.\n"
@@ -2176,7 +2570,7 @@ msgstr ""
"Indien u\n"
" twyfel, vra die netwerkadministrateur of ISP.\n"
-#: ../../help.pm_.c:437
+#: ../../help.pm_.c:443
#, fuzzy
msgid ""
"You may now enter your host name if needed. If you\n"
@@ -2185,13 +2579,13 @@ msgstr ""
"Indien u netwerk NIS gebruik, kies \"Gebruik NIS\". Indien u twyfel vra\n"
"die netwerkadministrateur."
-#: ../../help.pm_.c:441
+#: ../../help.pm_.c:447
msgid ""
"You may now enter your host name if needed. If you\n"
"don't know or are not sure what to enter, leave blank."
msgstr ""
-#: ../../help.pm_.c:445
+#: ../../help.pm_.c:451
msgid ""
"You may now enter dialup options. If you're not sure what to enter, the\n"
"correct information can be obtained from your ISP."
@@ -2199,7 +2593,7 @@ msgstr ""
"U kan nou die opbelopsie invul. Indien u\n"
"twyfel kry die korrekte inligting van u ISP."
-#: ../../help.pm_.c:449
+#: ../../help.pm_.c:455
msgid ""
"If you will use proxies, please configure them now. If you don't know if\n"
"you should use proxies, ask your network administrator or your ISP."
@@ -2208,7 +2602,7 @@ msgstr ""
"vra\n"
"die netwerkadministrateur of ISP."
-#: ../../help.pm_.c:453
+#: ../../help.pm_.c:459
#, fuzzy
msgid ""
"You can install cryptographic package if your internet connection has been\n"
@@ -2228,11 +2622,11 @@ msgstr ""
"\n"
"Let wel: U moet 'n spieël en pakkette selekteer n.a.l plaaslike wetgewing."
-#: ../../help.pm_.c:462
+#: ../../help.pm_.c:468
msgid "You can now select your timezone according to where you live."
msgstr ""
-#: ../../help.pm_.c:465
+#: ../../help.pm_.c:471
#, fuzzy
msgid ""
"GNU/Linux manages time in GMT (Greenwich Manage\n"
@@ -2248,7 +2642,7 @@ msgstr ""
"GNU/Linux beheer tyd in GMT (Greenwichmeridiaantyd) en vertaal dit dan\n"
"in u lokale tyd volgends die gekose tydsone."
-#: ../../help.pm_.c:473
+#: ../../help.pm_.c:479
#, fuzzy
msgid ""
"You may now choose which services you want to start at boot time.\n"
@@ -2272,13 +2666,13 @@ msgstr ""
"Wees versigtig met hierdie stap. Indien u beplan om dié rekenaar as 'n\n"
"bediener te gebruik wil u nie dienste afskop wat u nie gaan gebruik nie."
-#: ../../help.pm_.c:486
+#: ../../help.pm_.c:492
msgid ""
"You can configure a local printer (connected to your computer) or remote\n"
"printer (accessible via a Unix, Netware or Microsoft Windows network)."
msgstr ""
-#: ../../help.pm_.c:490
+#: ../../help.pm_.c:496
msgid ""
"If you wish to be able to print, please choose one printing system between\n"
"CUPS and LPR.\n"
@@ -2297,7 +2691,7 @@ msgid ""
"If you don't have printer, click on \"None\"."
msgstr ""
-#: ../../help.pm_.c:505
+#: ../../help.pm_.c:511
msgid ""
"GNU/Linux can deal with many types of printer. Each of these types requires\n"
"a different setup.\n"
@@ -2316,7 +2710,7 @@ msgid ""
"(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
msgstr ""
-#: ../../help.pm_.c:521
+#: ../../help.pm_.c:527
msgid ""
"Please turn on your printer before continuing to let DrakX detect it.\n"
"\n"
@@ -2342,7 +2736,7 @@ msgid ""
" you want, for example \"2nd floor\").\n"
msgstr ""
-#: ../../help.pm_.c:542
+#: ../../help.pm_.c:548
msgid ""
"You need to enter some informations here.\n"
"\n"
@@ -2376,7 +2770,7 @@ msgid ""
"\"NetWare\".\n"
msgstr ""
-#: ../../help.pm_.c:567
+#: ../../help.pm_.c:573
msgid ""
"Your printer has not been detected. Please enter the name of the device on\n"
"which it is connected.\n"
@@ -2388,11 +2782,11 @@ msgid ""
"Windows."
msgstr ""
-#: ../../help.pm_.c:575
+#: ../../help.pm_.c:581
msgid "You must now select your printer in the above list."
msgstr ""
-#: ../../help.pm_.c:578
+#: ../../help.pm_.c:584
msgid ""
"Please select the right options according to your printer.\n"
"Please see its documentation if you don't know what choose here.\n"
@@ -2402,7 +2796,7 @@ msgid ""
"able to modify it if it doesn't work as you want."
msgstr ""
-#: ../../help.pm_.c:585
+#: ../../help.pm_.c:591
#, fuzzy
msgid ""
"You can now enter the root password for your Linux-Mandrake system.\n"
@@ -2439,7 +2833,7 @@ msgstr ""
"lank. MOENIE die wagwoord ęrens neerskryf nie. Moet dit nie te lank of te\n"
"ingwikkeld maak nie, u moet dit met min moeite onthou."
-#: ../../help.pm_.c:603
+#: ../../help.pm_.c:609
msgid ""
"To enable a more secure system, you should select \"Use shadow file\" and\n"
"\"Use MD5 passwords\"."
@@ -2447,7 +2841,7 @@ msgstr ""
"Om 'n veiliger stelsel te bou, moet u \"Gebruik skadulęer\" \n"
"en \"Gebruik MD5 wagwoorde\" kies."
-#: ../../help.pm_.c:607
+#: ../../help.pm_.c:613
msgid ""
"If your network uses NIS, select \"Use NIS\". If you don't know, ask your\n"
"network administrator."
@@ -2455,7 +2849,7 @@ msgstr ""
"Indien u netwerk NIS gebruik, kies \"Gebruik NIS\". Indien u twyfel vra\n"
"die netwerkadministrateur."
-#: ../../help.pm_.c:611
+#: ../../help.pm_.c:617
msgid ""
"You may now create one or more \"regular\" user account(s), as\n"
"opposed to the \"privileged\" user account, root. You can create\n"
@@ -2495,14 +2889,14 @@ msgstr ""
"Derhalwe moet u aanteken met die gebruikerskode wat u hier skep en 'root'\n"
"net vir admintratiewe doeleindes gebruik."
-#: ../../help.pm_.c:630
+#: ../../help.pm_.c:636
msgid ""
"Creating a boot disk is strongly recommended. If you can't\n"
"boot your computer, it's the only way to rescue your system without\n"
"reinstalling it."
msgstr ""
-#: ../../help.pm_.c:635
+#: ../../help.pm_.c:641
msgid ""
"You need to indicate where you wish\n"
"to place the information required to boot to GNU/Linux.\n"
@@ -2517,7 +2911,7 @@ msgstr ""
"Behalwe as u werklik weet wat u doen moet u \"Eerste sektor van skyf (MBR)\" "
"kies."
-#: ../../help.pm_.c:643
+#: ../../help.pm_.c:649
msgid ""
"Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
" (primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
@@ -2525,7 +2919,7 @@ msgstr ""
"Indien u spesifiek anders weet, is die gewone keuse \"/dev/hda\"\n"
"(primęre meester IDE-skyf) of \"/dev/sda\" (eerste SCSI-skyf)."
-#: ../../help.pm_.c:647
+#: ../../help.pm_.c:653
msgid ""
"LILO (the LInux LOader) and Grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -2550,7 +2944,7 @@ msgstr ""
"inskrywings kan uitvee. Maar dan het u die nodige herlaaiskywe nodig om die\n"
"betrokke bedryfstelsels te laai."
-#: ../../help.pm_.c:659
+#: ../../help.pm_.c:665
#, fuzzy
msgid ""
"LILO and grub main options are:\n"
@@ -2571,7 +2965,22 @@ msgid ""
"\n"
" * normal: select normal 80x25 text mode.\n"
"\n"
-" * <number>: use the corresponding text mode."
+" * <number>: use the corresponding text mode.\n"
+"\n"
+"\n"
+" - Clean \"/tmp\" at each boot: if you want delete all files and "
+"directories\n"
+"stored in \"/tmp\" when you boot your system, select this option.\n"
+"\n"
+"\n"
+" - Precise RAM if needed: unfortunately, there is no standard method to ask "
+"the\n"
+"BIOS about the amount of RAM present in your computer. As consequence, Linux "
+"may\n"
+"fail to detect your amount of RAM correctly. If this is the case, you can\n"
+"specify the correct amount or RAM here. Please note that a difference of 2 "
+"or 4\n"
+"MB between detected memory and memory present in your system is normal."
msgstr ""
"LILO en Grub hoof opsies is:\n"
" - Herlaaitoestel: Stel die naam van die toestel (bv. hardeskyfpartisie\n"
@@ -2592,7 +3001,130 @@ msgstr ""
" * normaal: selekteer normale 80x25 mode.\n"
" * syfer: die ooreenstemmende teksmode."
-#: ../../help.pm_.c:680
+#: ../../help.pm_.c:697
+msgid ""
+"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able\n"
+"to boot either GNU/Linux, MacOS, or MacOSX, if present on your computer.\n"
+"Normally, these other operating systems are correctly detected and\n"
+"installed. If this is not the case, you can add an entry by hand in this\n"
+"screen. Be careful as to choose the correct parameters.\n"
+"\n"
+"\n"
+"Yaboot main options are:\n"
+"\n"
+"\n"
+" - Init Message: A simple text message that is displayed before the boot\n"
+"prompt.\n"
+"\n"
+"\n"
+" - Boot Device: Indicate where you want to place the information required "
+"to \n"
+"boot to GNU/Linux. Generally, you will have setup a bootstrap partition "
+"earlier \n"
+"to hold this information.\n"
+"\n"
+"\n"
+" - Open Firmware Delay: Unlike LILO, there are two delays available with \n"
+"yaboot. The first delay is measured in seconds and at this point you can \n"
+"choose between CD, OF boot, MacOS, or Linux.\n"
+"\n"
+"\n"
+" - Kernel Boot Timeout: This timeout is similar to the LILO boot delay. "
+"After \n"
+"selecting Linux, you will have this delay in 0.1 seconds before your "
+"default\n"
+"kernel description is selected.\n"
+"\n"
+"\n"
+" - Enable CD Boot?: Checking this option will allow you to choose 'C' for "
+"CD at\n"
+"the first boot prompt.\n"
+"\n"
+"\n"
+" - Enable OF Boot?: Checking this option will allow you to choose 'N' for "
+"Open\n"
+"Firmware at the first boot prompt.\n"
+"\n"
+"\n"
+" - Default OS: You can select which OS will boot by default when the Open "
+"Firmware \n"
+"Delay expires."
+msgstr ""
+
+#: ../../help.pm_.c:738
+msgid ""
+"You can add additional entries for yaboot, either for other operating "
+"systems,\n"
+"alternate kernels, or for an emergency boot image.\n"
+"\n"
+"\n"
+"For other OS's - the entry consists only of a label and the root partition.\n"
+"\n"
+"\n"
+"For Linux, there are a few possible options: \n"
+"\n"
+"\n"
+" - Label: This is simply the name will type at the yaboot prompt to select "
+"this \n"
+"boot option.\n"
+"\n"
+"\n"
+" - Image: This would be the name of the kernel to boot. Typically vmlinux "
+"or\n"
+"a variation of vmlinux with an extension.\n"
+"\n"
+"\n"
+" - Root: The root device or '/' for your Linux installation.\n"
+"\n"
+"\n"
+" \n"
+" - Append: On Apple hardware, the kernel append option is used quite often "
+"to\n"
+"assist in initializing video hardware, or to enable keyboard mouse button "
+"emulation\n"
+"for the often lacking 2nd and 3rd mouse buttons on a stock Apple mouse. The "
+"following \n"
+"are some examples:\n"
+"\n"
+"\n"
+"\t\t video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+"hda=autotune\n"
+"\n"
+"\t\t video=atyfb:vmode:12,cmode:24 adb_buttons=103,111 \n"
+"\n"
+"\n"
+" \n"
+" - Initrd: This option can be used either to load initial modules, before "
+"the boot \n"
+"device is available, or to load a ramdisk image for an emergency boot "
+"situation.\n"
+"\n"
+"\n"
+" - Initrd-size: The default ramdisk size is generally 4096 bytes. If you "
+"should need\n"
+"to allocate a large ramdisk, this option can be used.\n"
+"\n"
+"\n"
+" - Read-write: Normally the 'root' partition is initially brought up "
+"read-only, to allow\n"
+"a filesystem check before the system becomes 'live'. You can override this "
+"option here.\n"
+"\n"
+"\n"
+" - NoVideo: Should the Apple video hardware prove to be exceptionally "
+"problematic, you can\n"
+"select this option to boot in 'novideo' mode, with native framebuffer "
+"support.\n"
+"\n"
+"\n"
+" - Default: Selects this entry as being the default Linux selection, "
+"selectable by just\n"
+"pressing ENTER at the yaboot prompt. This entry will also be highlighted "
+"with a '*', if you\n"
+"press TAB to see the boot selections."
+msgstr ""
+
+#: ../../help.pm_.c:793
msgid ""
"SILO is a bootloader for SPARC: it is able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -2617,7 +3149,7 @@ msgstr ""
"inskrywings kan uitvee. Maar dan het u die nodige herlaaiskywe nodig om die\n"
"betrokke bedryfstelsels te laai."
-#: ../../help.pm_.c:692
+#: ../../help.pm_.c:805
msgid ""
"SILO main options are:\n"
" - Bootloader installation: Indicate where you want to place the\n"
@@ -2644,7 +3176,7 @@ msgstr ""
"die\n"
" wagperiode nul is."
-#: ../../help.pm_.c:705
+#: ../../help.pm_.c:818
msgid ""
"Now it's time to configure the X Window System, which is the\n"
"core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
@@ -2669,7 +3201,7 @@ msgstr ""
"aansę. Indien die stelling u nie pas nie, kom terug en verander so veel\n"
"keer soos nodig."
-#: ../../help.pm_.c:718
+#: ../../help.pm_.c:831
msgid ""
"If something is wrong in X configuration, use these options to correctly\n"
"configure the X Window System."
@@ -2677,7 +3209,7 @@ msgstr ""
"Indien iets verkeerd is in die X-konfigurasie, gebruik hierdie opsies om\n"
"die X-vensterstelsel reg op te stel."
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:835
msgid ""
"If you prefer to use a graphical login, select \"Yes\". Otherwise, select\n"
"\"No\"."
@@ -2685,83 +3217,15 @@ msgstr ""
"Indien u verkies om 'n grafiese intekenarea te kry, kies \"Ja\", andersins "
"\"Nee\"."
-#: ../../help.pm_.c:726
-#, fuzzy
+#: ../../help.pm_.c:839
msgid ""
-"You can now select some miscellaneous options for your system.\n"
-"\n"
-"* Use hard drive optimizations: this option can improve hard disk "
-"performance but is only for advanced users. Some buggy\n"
-" chipsets can ruin your data, so beware. Note that the kernel has a builtin "
-"blacklist of drives and chipsets, but if\n"
-" you want to avoid bad surprises, leave this option unset.\n"
-"\n"
-"\n"
-"* Choose security level: you can choose a security level for your system. "
-"Please refer to the manual for complete\n"
+"You can choose a security level for your system. Please refer to the manual "
+"for complete\n"
" information. Basically, if you don't know what to choose, keep the default "
"option.\n"
-"\n"
-"\n"
-"* Precise RAM if needed: unfortunately, there is no standard method to ask "
-"the BIOS about the amount of RAM present in\n"
-" your computer. As consequence, Linux may fail to detect your amount of RAM "
-"correctly. If this is the case, you can\n"
-" specify the correct amount or RAM here. Please note that a difference of 2 "
-"or 4 MB between detected memory and memory\n"
-" present in your system is normal.\n"
-"\n"
-"\n"
-"* Removable media automounting: if you would prefer not to manually mount "
-"removable media (CD-Rom, floppy, Zip, etc.) by\n"
-" typing \"mount\" and \"umount\", select this option.\n"
-"\n"
-"\n"
-"* Clean \"/tmp\" at each boot: if you want delete all files and directories "
-"stored in \"/tmp\" when you boot your system,\n"
-" select this option.\n"
-"\n"
-"\n"
-"* Enable num lock at startup: if you want NumLock key enabled after booting, "
-"select this option. Please note that you\n"
-" should not enable this option on laptops and that NumLock may or may not "
-"work under X."
msgstr ""
-"U kan nou 'n paar diverse opsies vir u stelsel kies.\n"
-"\n"
-" - Optimeer hardeskyf. Hierdie kan hardeskyfwerksverrigting verbeter, maar "
-"is net\n"
-" vir kundige gebruikers bedoel. Sekere gebroke koppelvlakke kan data "
-"ruďneer.\n"
-" Die bedryfstelsel kern het 'n swartlys van hardeskywe, maar indien u "
-"onaangename\n"
-" verrassings wil voorkom los hierdie opsie uit.\n"
-"\n"
-" - Sekuriteitsvlak: Lees die handleiding vir volledigheid, maar in kort:\n"
-" Kies \"Medium\" indien u twyfel. Vir 'n hoogs veilige stelsel kies "
-"\"Paranoďes\",\n"
-" maar pasop: OP HIERDIE VLAK KLAN SELFS NIE 'ROOT' OP DIE KONSOLE\n"
-" AANTEKEN NIE. Vir 'root' toegang moet 'n gewone gebruiker eers aanteken "
-"en dan\n"
-" \"su\". Dit is uitsluitlik vir 'n bediener bedoel.\n"
-"\n"
-" - Presiese geheuegrootte: Daar is geen ongelukkig standaard metode om die "
-"geheuegrootte\n"
-" uit die BIOS te bepaal nie. Soms sal Linux nie die grootte korrek "
-"bepaal nie. In hierdie geval\n"
-" kan die korrekte grootte her gegee word. Let daarop dat 'n verskil van "
-"2-4MB normaal is.\n"
-"\n"
-" - Outohegting van verwyderbare media: Indien u nie elke keer die hegting "
-"per intik wil doen\n"
-" nie (van CDROMs, floppies, ZIpaandrywers ens.), selekteer hierdie "
-"opsie.\n"
-"\n"
-" - NumLock: Indien u NumLock wil aansit by herlaaityd, selekteer hierdie "
-"opsie. Dit sal\n"
-" nie noodwendig NumLock onder X aansit nie."
-#: ../../help.pm_.c:755
+#: ../../help.pm_.c:844
msgid ""
"Your system is going to reboot.\n"
"\n"
@@ -2774,107 +3238,142 @@ msgstr ""
"U nuwe Linux-Mandrake stelsel sal outomaties laai. Indien u 'n ander\n"
" bedryfstelsel wil laai, lees die ekstra instruksies noukeurig deur."
-#: ../../install2.pm_.c:40
+#: ../../install2.pm_.c:39
msgid "Choose your language"
msgstr "Kies u taal"
-#: ../../install2.pm_.c:41
+#: ../../install2.pm_.c:40
msgid "Select installation class"
msgstr "Kies installasieklas"
-#: ../../install2.pm_.c:42
+#: ../../install2.pm_.c:41
msgid "Hard drive detection"
msgstr "Hardeskyfdeteksie."
-#: ../../install2.pm_.c:43
+#: ../../install2.pm_.c:42
msgid "Configure mouse"
msgstr "Stel muistoestel op"
-#: ../../install2.pm_.c:44
+#: ../../install2.pm_.c:43
msgid "Choose your keyboard"
msgstr "Kies u sleutelbord"
-#: ../../install2.pm_.c:45 ../../install_steps_interactive.pm_.c:497
-msgid "Miscellaneous"
-msgstr "Arbitręre items"
+#: ../../install2.pm_.c:44
+#, fuzzy
+msgid "Security"
+msgstr "krul"
-#: ../../install2.pm_.c:46
+#: ../../install2.pm_.c:45
msgid "Setup filesystems"
msgstr "Stel lęerstelsels op"
-#: ../../install2.pm_.c:47
+#: ../../install2.pm_.c:46
msgid "Format partitions"
msgstr "Formateer partisies"
-#: ../../install2.pm_.c:48
+#: ../../install2.pm_.c:47
msgid "Choose packages to install"
msgstr "Kies pakkette om te installeer"
-#: ../../install2.pm_.c:49
+#: ../../install2.pm_.c:48
msgid "Install system"
msgstr "Installeer stelsel"
+#: ../../install2.pm_.c:49 ../../install_steps_interactive.pm_.c:894
+#: ../../install_steps_interactive.pm_.c:895
+msgid "Set root password"
+msgstr "Kies 'root' se wagwoord"
+
#: ../../install2.pm_.c:50
+msgid "Add a user"
+msgstr "Voeg 'n gebruiker by"
+
+#: ../../install2.pm_.c:51
msgid "Configure networking"
msgstr "Stel netwerk op"
-#: ../../install2.pm_.c:52
-msgid "Configure timezone"
-msgstr "Stel tydsone op"
+#: ../../install2.pm_.c:53 ../../install_steps_interactive.pm_.c:818
+msgid "Summary"
+msgstr ""
-#: ../../install2.pm_.c:53
+#: ../../install2.pm_.c:54
msgid "Configure services"
msgstr "Konfigureer dienste"
-#: ../../install2.pm_.c:54
-msgid "Configure printer"
-msgstr "Stel drukker op"
-
-#: ../../install2.pm_.c:55 ../../install_steps_interactive.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:763
-msgid "Set root password"
-msgstr "Kies 'root' se wagwoord"
-
#: ../../install2.pm_.c:56
-msgid "Add a user"
-msgstr "Voeg 'n gebruiker by"
-
-#: ../../install2.pm_.c:58
msgid "Create a bootdisk"
msgstr "Maar 'n herlaaiskyf"
-#: ../../install2.pm_.c:60
+#: ../../install2.pm_.c:58
msgid "Install bootloader"
msgstr "Installeer herlaaistelsel"
-#: ../../install2.pm_.c:61
+#: ../../install2.pm_.c:59
msgid "Configure X"
msgstr "Stel X op"
-#: ../../install2.pm_.c:63
-msgid "Auto install floppy"
-msgstr "Outoinstalleer floppie"
-
-#: ../../install2.pm_.c:65
+#: ../../install2.pm_.c:60
msgid "Exit install"
msgstr "Verlaay installasie"
-#: ../../install_any.pm_.c:578
+#: ../../install_any.pm_.c:373
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They don't have any known security\n"
+"issues, but some new could be found. In that case, you must make sure to "
+"upgrade\n"
+"as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+
+#: ../../install_any.pm_.c:404
+msgid "Can't use broadcast with no NIS domain"
+msgstr "Kan nie uitsaau sonder 'n NIS-domein nie"
+
+#: ../../install_any.pm_.c:647
+#, fuzzy, c-format
+msgid "Insert a FAT formatted floppy in drive %s"
+msgstr "Sit 'n skyf in aandrywer %s"
+
+#: ../../install_any.pm_.c:651
+msgid "This floppy is not FAT formatted"
+msgstr ""
+
+#: ../../install_any.pm_.c:661
+msgid ""
+"To use this saved packages selection, boot installation with ``linux "
+"defcfg=floppy''"
+msgstr ""
+
+#: ../../install_any.pm_.c:683
msgid "Error reading file $f"
msgstr "Fout met lees van lęer $f"
+#: ../../install_gtk.pm_.c:84 ../../install_steps_gtk.pm_.c:310
+#: ../../interactive.pm_.c:95 ../../interactive.pm_.c:110
+#: ../../interactive.pm_.c:265 ../../interactive_newt.pm_.c:166
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:356
+#: ../../my_gtk.pm_.c:616 ../../my_gtk.pm_.c:639
+msgid "Ok"
+msgstr "OK"
+
#
-#: ../../install_gtk.pm_.c:426
+#: ../../install_gtk.pm_.c:423
msgid "Please test the mouse"
msgstr "Toets asb. die muis"
#
-#: ../../install_gtk.pm_.c:427
+#: ../../install_gtk.pm_.c:424
#, fuzzy
msgid "To activate the mouse,"
msgstr "Toets asb. die muis"
-#: ../../install_gtk.pm_.c:428
+#: ../../install_gtk.pm_.c:425
msgid "MOVE YOUR WHEEL!"
msgstr ""
@@ -3033,12 +3532,9 @@ msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Alle bestaande partisies en data sal uitgewis word op skyf %s"
#: ../../install_interactive.pm_.c:165
-msgid "Expert mode"
-msgstr "Kundige modus"
-
-#: ../../install_interactive.pm_.c:165
-msgid "Use diskdrake"
-msgstr "Gebruik diskdrake"
+#, fuzzy
+msgid "Custom disk partitioning"
+msgstr "Gebruik bestaande partisies"
#: ../../install_interactive.pm_.c:169
msgid "Use fdisk"
@@ -3053,34 +3549,34 @@ msgstr ""
"U het nou partisie %s partisioneer.\n"
"Wanneer u klaar is, stoor u veranderinge met 'w'."
-#: ../../install_interactive.pm_.c:196
+#: ../../install_interactive.pm_.c:201
#, fuzzy
msgid "You don't have enough free space on your Windows partition"
msgstr "Gebruik die beskikbare spasie op die Windowspartisie"
-#: ../../install_interactive.pm_.c:211
+#: ../../install_interactive.pm_.c:217
#, fuzzy
msgid "I can't find any room for installing"
msgstr "Ek kan nie meer partisies byvoeg nie"
-#: ../../install_interactive.pm_.c:214
+#: ../../install_interactive.pm_.c:221
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Die DrakX partisioneringsassistent het die volgende oplossings:"
-#: ../../install_interactive.pm_.c:219
+#: ../../install_interactive.pm_.c:226
#, c-format
msgid "Partitioning failed: %s"
msgstr "Partisionering het misluk: %s"
-#: ../../install_interactive.pm_.c:234
+#: ../../install_interactive.pm_.c:232
msgid "Bringing up the network"
msgstr "Netwerk op pad op"
-#: ../../install_interactive.pm_.c:239
+#: ../../install_interactive.pm_.c:237
msgid "Bringing down the network"
msgstr "Netwerk op pad af"
-#: ../../install_steps.pm_.c:74
+#: ../../install_steps.pm_.c:73
msgid ""
"An error occurred, but I don't know how to handle it nicely.\n"
"Continue at your own risk."
@@ -3088,7 +3584,7 @@ msgstr ""
"'n Fout het plaasgevind en ek weet nie hoe om dit veilig te hanteer\n"
"nie. Gaan op u eie risiko voort."
-#: ../../install_steps.pm_.c:202
+#: ../../install_steps.pm_.c:203
#, c-format
msgid "Duplicate mount point %s"
msgstr "Duplikaat hegpunt %s"
@@ -3105,16 +3601,16 @@ msgstr ""
"Toets die CD op 'n werkende Linux installasie met \"rpm -qpl "
"Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:451
#, c-format
msgid "Welcome to %s"
msgstr "Welkom by %s"
-#: ../../install_steps.pm_.c:670
+#: ../../install_steps.pm_.c:634
msgid "No floppy drive available"
msgstr "Geen sagteskyaandrywer beskikbaar nie"
-#: ../../install_steps_auto_install.pm_.c:43
+#: ../../install_steps_auto_install.pm_.c:51
#: ../../install_steps_stdio.pm_.c:23
#, c-format
msgid "Entering step `%s'\n"
@@ -3128,73 +3624,71 @@ msgstr "Kies die grootte van die installasie"
msgid "Total size: "
msgstr "Totale grootte: "
-#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:353
-#: ../../standalone/rpmdrake_.c:136
+#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:437
#, c-format
msgid "Version: %s\n"
msgstr "Weergawe: %s\n"
-#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:354
-#: ../../standalone/rpmdrake_.c:137
+#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:438
#, c-format
msgid "Size: %d KB\n"
msgstr "Groote: %d KB\n"
-#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:260
+#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:520
msgid "Choose the packages you want to install"
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:263
+#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:340
msgid "Info"
msgstr "Info"
-#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:268
-#: ../../install_steps_interactive.pm_.c:216 ../../standalone/rpmdrake_.c:161
+#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_interactive.pm_.c:226
msgid "Install"
msgstr "Installasie"
-#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:466
-#: ../../install_steps_interactive.pm_.c:594
+#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:558
+#: ../../install_steps_interactive.pm_.c:675
msgid "Installing"
msgstr "Besig met installasie"
-#: ../../install_steps_graphical.pm_.c:499 ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_graphical.pm_.c:499
msgid "Please wait, "
msgstr "Wag asb.,"
-#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:474
+#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:570
msgid "Time remaining "
msgstr "Tyd oor "
-#: ../../install_steps_graphical.pm_.c:502 ../../install_steps_gtk.pm_.c:475
+#: ../../install_steps_graphical.pm_.c:502
msgid "Total time "
msgstr "Totale tyd "
-#: ../../install_steps_graphical.pm_.c:507 ../../install_steps_gtk.pm_.c:484
-#: ../../install_steps_interactive.pm_.c:594
+#: ../../install_steps_graphical.pm_.c:507
+#: ../../install_steps_interactive.pm_.c:675
msgid "Preparing installation"
msgstr "Berei installasie voor"
-#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:500
+#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:618
#, c-format
msgid "Installing package %s"
msgstr "Installeer pakket %s"
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:569
-#: ../../install_steps_gtk.pm_.c:573
+#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:695
+#: ../../install_steps_gtk.pm_.c:699
msgid "Go on anyway?"
msgstr "Gaan steeds voort?"
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:569
+#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:695
msgid "There was an error ordering packages:"
msgstr "Daar was 'n fout met pakkette:"
#: ../../install_steps_graphical.pm_.c:577
-#: ../../install_steps_interactive.pm_.c:1003
msgid "Use existing configuration for X11?"
msgstr "Gebruik bestaande konfigurasie vir X11?"
-#: ../../install_steps_gtk.pm_.c:136
+#: ../../install_steps_gtk.pm_.c:142
msgid ""
"Your system is low on resource. You may have some problem installing\n"
"Linux-Mandrake. If that occurs, you can try a text install instead. For "
@@ -3208,17 +3702,17 @@ msgstr ""
"'F1' druk wanneer u vanaf die CDROM herlaai en dan 'text' op die "
"instruksielyn intik."
-#: ../../install_steps_gtk.pm_.c:150
+#: ../../install_steps_gtk.pm_.c:156
msgid "Please, choose one of the following classes of installation:"
msgstr "Kies asb. een van die volgende installasieklasse:"
-#: ../../install_steps_gtk.pm_.c:215
+#: ../../install_steps_gtk.pm_.c:222
#, c-format
msgid ""
"The total size for the groups you have selected is approximately %d MB.\n"
msgstr "Die totale grootte vir die gekose groepe is naastenby %d MB.\n"
-#: ../../install_steps_gtk.pm_.c:217
+#: ../../install_steps_gtk.pm_.c:224
msgid ""
"If you wish to install less than this size,\n"
"select the percentage of packages that you want to install.\n"
@@ -3232,7 +3726,7 @@ msgstr ""
"'n Lae persentasie sal net die belangrikste pakkette installeer;\n"
"'n persentasie van 100% sal alles gekose pakkette installeer."
-#: ../../install_steps_gtk.pm_.c:222
+#: ../../install_steps_gtk.pm_.c:229
msgid ""
"You have space on your disk for only %d%% of these packages.\n"
"\n"
@@ -3247,50 +3741,58 @@ msgstr ""
"'n Lae persentasie sal net die belangrikste pakkette installeer;\n"
"'n Persentasie van %d%% sal soveel moontlik probeer installeer."
-#: ../../install_steps_gtk.pm_.c:228
+#: ../../install_steps_gtk.pm_.c:235
msgid "You will be able to choose them more specifically in the next step."
msgstr "U sal met meer akkuraatheid in die volgende stap kan kies."
-#: ../../install_steps_gtk.pm_.c:230
+#: ../../install_steps_gtk.pm_.c:237
msgid "Percentage of packages to install"
msgstr "Persentasie pakkette om te installeer"
-#: ../../install_steps_gtk.pm_.c:272
-msgid "Automatic dependencies"
-msgstr "Outomatiese afhanklikhede"
+#: ../../install_steps_gtk.pm_.c:285 ../../install_steps_interactive.pm_.c:599
+msgid "Package Group Selection"
+msgstr "Kies pakketgroepe"
-#: ../../install_steps_gtk.pm_.c:332 ../../standalone/rpmdrake_.c:101
+#: ../../install_steps_gtk.pm_.c:305 ../../install_steps_interactive.pm_.c:614
+msgid "Individual package selection"
+msgstr "Individuele pakketseleksie"
+
+#: ../../install_steps_gtk.pm_.c:349
+msgid "Show automatically selected packages"
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:416
msgid "Expand Tree"
msgstr "Maak boom oop"
-#: ../../install_steps_gtk.pm_.c:333 ../../standalone/rpmdrake_.c:102
+#: ../../install_steps_gtk.pm_.c:417
msgid "Collapse Tree"
msgstr "Maak boom toe"
-#: ../../install_steps_gtk.pm_.c:334
+#: ../../install_steps_gtk.pm_.c:418
msgid "Toggle between flat and group sorted"
msgstr "Skakel tussen plat- en groepsortering"
-#: ../../install_steps_gtk.pm_.c:351
+#: ../../install_steps_gtk.pm_.c:435
msgid "Bad package"
msgstr "Foutiewe pakket"
-#: ../../install_steps_gtk.pm_.c:352
+#: ../../install_steps_gtk.pm_.c:436
#, c-format
msgid "Name: %s\n"
msgstr "Naam: %s\n"
-#: ../../install_steps_gtk.pm_.c:355
+#: ../../install_steps_gtk.pm_.c:439
#, c-format
msgid "Importance: %s\n"
msgstr "Belangrikheid: %s\n"
-#: ../../install_steps_gtk.pm_.c:363
+#: ../../install_steps_gtk.pm_.c:448 ../../install_steps_interactive.pm_.c:578
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Totale grootte: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:382
+#: ../../install_steps_gtk.pm_.c:467
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
@@ -3298,28 +3800,28 @@ msgstr ""
"beskikbaar is nie"
#
-#: ../../install_steps_gtk.pm_.c:386
+#: ../../install_steps_gtk.pm_.c:471
msgid "The following packages are going to be installed"
msgstr "Die volgende pakkette gaan installeer word"
#
-#: ../../install_steps_gtk.pm_.c:387
+#: ../../install_steps_gtk.pm_.c:472
msgid "The following packages are going to be removed"
msgstr "Dei volgende pakkette gaan verwyder word"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:482
msgid "You can't select/unselect this package"
msgstr "U kan nie hierdie pakket selekteer/deselekteer nie"
-#: ../../install_steps_gtk.pm_.c:416
+#: ../../install_steps_gtk.pm_.c:501
msgid "This is a mandatory package, it can't be unselected"
msgstr "Hierdie is 'n verpligte pakket. Dit kan nie uitgehaal word nie."
-#: ../../install_steps_gtk.pm_.c:418
+#: ../../install_steps_gtk.pm_.c:503
msgid "You can't unselect this package. It is already installed"
msgstr "U kan nie heirdie pakket verwyder nie. Dis alreeds geďnstalleer"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:507
msgid ""
"This package must be upgraded\n"
"Are you sure you want to deselect it?"
@@ -3327,27 +3829,25 @@ msgstr ""
"Hierdie pakket moet opgradeer word\n"
"Is u seker u wil dit deselekteer?"
-#: ../../install_steps_gtk.pm_.c:425
+#: ../../install_steps_gtk.pm_.c:510
msgid "You can't unselect this package. It must be upgraded"
msgstr "U kan nie hierdie pakket deselekteer nie. Dit moet opgradeer word."
-#: ../../install_steps_gtk.pm_.c:469
+#: ../../install_steps_gtk.pm_.c:563
msgid "Estimating"
msgstr "Skatting"
-#: ../../install_steps_gtk.pm_.c:481 ../../interactive.pm_.c:86
-#: ../../interactive.pm_.c:249 ../../interactive_newt.pm_.c:51
-#: ../../interactive_newt.pm_.c:99 ../../interactive_stdio.pm_.c:27
-#: ../../my_gtk.pm_.c:246 ../../my_gtk.pm_.c:486
-msgid "Cancel"
-msgstr "Kanselleer"
+#: ../../install_steps_gtk.pm_.c:582
+#, fuzzy
+msgid "Please wait, preparing installation"
+msgstr "Berei installasie voor"
-#: ../../install_steps_gtk.pm_.c:495
+#: ../../install_steps_gtk.pm_.c:613
#, c-format
msgid "%d packages"
msgstr "%d pakkette"
-#: ../../install_steps_gtk.pm_.c:531
+#: ../../install_steps_gtk.pm_.c:652
msgid ""
"\n"
"Warning\n"
@@ -3380,11 +3880,16 @@ msgid ""
msgstr ""
#
-#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+#: ../../install_steps_gtk.pm_.c:680 ../../install_steps_interactive.pm_.c:163
msgid "Accept"
msgstr "Aanvaar "
-#: ../../install_steps_gtk.pm_.c:559
+#
+#: ../../install_steps_gtk.pm_.c:680 ../../install_steps_interactive.pm_.c:163
+msgid "Refuse"
+msgstr "Weier"
+
+#: ../../install_steps_gtk.pm_.c:681
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -3399,28 +3904,32 @@ msgstr ""
"nie\n"
"hieroor beskik nie, druk Kanselleer om installasies vanaf dié CDROM te vermy."
-#
-#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
-msgid "Refuse"
-msgstr "Weier"
-
-#: ../../install_steps_gtk.pm_.c:573
+#: ../../install_steps_gtk.pm_.c:699
msgid "There was an error installing packages:"
msgstr "Daar was 'n fout met die installasie van die pakkette:"
-#: ../../install_steps_interactive.pm_.c:38
+#: ../../install_steps_interactive.pm_.c:37
msgid "An error occurred"
msgstr "'n Fout het voorgekom"
-#: ../../install_steps_interactive.pm_.c:54
+#: ../../install_steps_interactive.pm_.c:55
msgid "Please, choose a language to use."
msgstr "Kies asb. 'n taal om te gebruik."
-#: ../../install_steps_interactive.pm_.c:70
+#: ../../install_steps_interactive.pm_.c:56
+msgid "You can choose other languages that will be available after install"
+msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees."
+
+#: ../../install_steps_interactive.pm_.c:68
+#: ../../install_steps_interactive.pm_.c:613
+msgid "All"
+msgstr "Alles"
+
+#: ../../install_steps_interactive.pm_.c:86
msgid "License agreement"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:71
+#: ../../install_steps_interactive.pm_.c:87
msgid ""
"Introduction\n"
"\n"
@@ -3541,134 +4050,106 @@ msgid ""
"For any question on this document, please contact MandrakeSoft S.A. \n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:154
-#: ../../standalone/keyboarddrake_.c:21
+#: ../../install_steps_interactive.pm_.c:182
+#: ../../install_steps_interactive.pm_.c:822
+#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Sleutelbord"
-#: ../../install_steps_interactive.pm_.c:155
-#: ../../standalone/keyboarddrake_.c:22
+#: ../../install_steps_interactive.pm_.c:183
+#: ../../standalone/keyboarddrake_.c:29
msgid "Please, choose your keyboard layout."
msgstr "Wat is u sleutelborduitleg?"
-#: ../../install_steps_interactive.pm_.c:166
-msgid "You can choose other languages that will be available after install"
-msgstr "U kan ander tale selekteer wat na installasie beskikbaar sal wees."
-
-#: ../../install_steps_interactive.pm_.c:173
-#: ../../install_steps_interactive.pm_.c:520
-msgid "All"
-msgstr "Alles"
+#: ../../install_steps_interactive.pm_.c:184
+msgid "Here is the full list of keyboards available"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:181
-#: ../../install_steps_interactive.pm_.c:227
+#: ../../install_steps_interactive.pm_.c:201
msgid "Install Class"
msgstr "Installasieklas"
-#: ../../install_steps_interactive.pm_.c:181
+#: ../../install_steps_interactive.pm_.c:201
msgid "Which installation class do you want?"
msgstr "Watter installasieklas verlang u?"
-#: ../../install_steps_interactive.pm_.c:183
+#: ../../install_steps_interactive.pm_.c:203
#, fuzzy
msgid "Install/Update"
msgstr "Installeer/Opgradeer"
-#: ../../install_steps_interactive.pm_.c:183
+#: ../../install_steps_interactive.pm_.c:203
#, fuzzy
msgid "Is this an install or an update?"
msgstr "Is hierdie 'n installasie of reddingspoging?"
-#: ../../install_steps_interactive.pm_.c:192
+#: ../../install_steps_interactive.pm_.c:212
msgid "Recommended"
msgstr "Aanbevole"
-#: ../../install_steps_interactive.pm_.c:195
-#: ../../install_steps_interactive.pm_.c:211
-msgid "Customized"
-msgstr "Aangepaste"
-
-#: ../../install_steps_interactive.pm_.c:196
-#: ../../install_steps_interactive.pm_.c:211
+#: ../../install_steps_interactive.pm_.c:215
+#: ../../install_steps_interactive.pm_.c:218
msgid "Expert"
msgstr "Kundige"
-#: ../../install_steps_interactive.pm_.c:206
-msgid ""
-"Are you sure you are an expert? \n"
-"You will be allowed to make powerful but dangerous things here.\n"
-"\n"
-"You will be asked questions such as: ``Use shadow file for passwords?'',\n"
-"are you ready to answer that kind of questions?"
-msgstr ""
-"Is u 'n kundige? U sal sal toegelaat word om kragtige, maar\n"
-"gevaarlike keuses uit te oefen\n"
-"\n"
-"U sal vrae gevra word soos: \"Gebruik skaduwagwoorde?\"\n"
-"Is u reg vir sulke vrae?"
-
-#: ../../install_steps_interactive.pm_.c:216
+#: ../../install_steps_interactive.pm_.c:226
#, fuzzy
msgid "Update"
msgstr "Opgradeer"
-#: ../../install_steps_interactive.pm_.c:222
-msgid "Workstation"
-msgstr "Werkstasie"
-
-#: ../../install_steps_interactive.pm_.c:223
-msgid "Development"
-msgstr "Ontwikkeling"
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Server"
-msgstr "Bediener"
-
-#: ../../install_steps_interactive.pm_.c:228
-msgid "What is your system used for?"
-msgstr "Wat is die gebruik van u stelsel?"
-
-#: ../../install_steps_interactive.pm_.c:244 ../../standalone/mousedrake_.c:24
+#: ../../install_steps_interactive.pm_.c:238 ../../standalone/mousedrake_.c:31
msgid "Please, choose the type of your mouse."
msgstr "Wat is u muistoestel?"
-#: ../../install_steps_interactive.pm_.c:251 ../../standalone/mousedrake_.c:40
+#: ../../install_steps_interactive.pm_.c:244 ../../standalone/mousedrake_.c:46
msgid "Mouse Port"
msgstr "Muispoort"
-#: ../../install_steps_interactive.pm_.c:252
+#: ../../install_steps_interactive.pm_.c:245 ../../standalone/mousedrake_.c:47
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Aan watter seriaalpoort is u muis gekoppel?"
-#: ../../install_steps_interactive.pm_.c:271
+#: ../../install_steps_interactive.pm_.c:253
+msgid "Buttons emulation"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:255
+msgid "Button 2 Emulation"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:256
+msgid "Button 3 Emulation"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:275
msgid "Configuring PCMCIA cards..."
msgstr "Stel PCMCIA op..."
-#: ../../install_steps_interactive.pm_.c:271
+#: ../../install_steps_interactive.pm_.c:275
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:275
+#: ../../install_steps_interactive.pm_.c:280
msgid "Configuring IDE"
msgstr "IDE word opgestel"
-#: ../../install_steps_interactive.pm_.c:275
+#: ../../install_steps_interactive.pm_.c:280
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:288
+#: ../../install_steps_interactive.pm_.c:295
msgid "no available partitions"
msgstr "geen beskikbare partisies"
-#: ../../install_steps_interactive.pm_.c:291
+#: ../../install_steps_interactive.pm_.c:298
msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:299
+#: ../../install_steps_interactive.pm_.c:306
msgid "Choose the mount points"
msgstr "Kies die hegpunte"
-#: ../../install_steps_interactive.pm_.c:316
+#: ../../install_steps_interactive.pm_.c:323
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -3685,7 +4166,7 @@ msgstr ""
"\n"
"Will u al die partisies verwyder?\n"
-#: ../../install_steps_interactive.pm_.c:329
+#: ../../install_steps_interactive.pm_.c:336
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -3693,87 +4174,79 @@ msgstr ""
"DrakX kon nie die partisietabel korrek interpreteer nie.\n"
"Gaan aan op u eie risiko!"
-#: ../../install_steps_interactive.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:361
msgid "Root Partition"
msgstr "Basispartisie"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:362
msgid "What is the root partition (/) of your system?"
msgstr "Wat is die basispartisie (/) van u stelsel?"
-#: ../../install_steps_interactive.pm_.c:352
+#: ../../install_steps_interactive.pm_.c:376
msgid "You need to reboot for the partition table modifications to take place"
msgstr "U moet herlaai om die partisietabelveranderinge te aktiveer"
-#: ../../install_steps_interactive.pm_.c:376
+#: ../../install_steps_interactive.pm_.c:403
msgid "Choose the partitions you want to format"
msgstr "Kies die partisies om te formatteer"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:404
msgid "Check bad blocks?"
msgstr "Toets vir foutiewe areas?"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:427
msgid "Formatting partitions"
msgstr "Partisies word formateer"
-#: ../../install_steps_interactive.pm_.c:401
+#: ../../install_steps_interactive.pm_.c:429
#, c-format
msgid "Creating and formatting file %s"
msgstr "Lęer %s word geskep en formatteer"
-#: ../../install_steps_interactive.pm_.c:404
+#: ../../install_steps_interactive.pm_.c:432
msgid "Not enough swap to fulfill installation, please add some"
msgstr "Nie genoeg ruilarea om die installasie te voltooi. Voeg asb. by."
-#: ../../install_steps_interactive.pm_.c:410
+#: ../../install_steps_interactive.pm_.c:438
msgid "Looking for available packages"
msgstr "Soek vir beskikbare pakkette"
-#: ../../install_steps_interactive.pm_.c:416
+#: ../../install_steps_interactive.pm_.c:444
msgid "Finding packages to upgrade"
msgstr "Soek vir pakkette om op te gradeer."
-#: ../../install_steps_interactive.pm_.c:433
+#: ../../install_steps_interactive.pm_.c:461
#, c-format
msgid ""
"Your system has not enough space left for installation or upgrade (%d > %d)"
msgstr ""
"U stelsel het nie genoeg plek vir 'n installasie of opgradering nie (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:449
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid "Complete (%dMB)"
msgstr "Klaar (%dMB)"
-#: ../../install_steps_interactive.pm_.c:449
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid "Minimum (%dMB)"
msgstr "Minimum (%dMB)"
-#: ../../install_steps_interactive.pm_.c:449
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid "Recommended (%dMB)"
msgstr "Aanbevole (%dMB)"
#
-#: ../../install_steps_interactive.pm_.c:455
+#: ../../install_steps_interactive.pm_.c:486
msgid "Custom"
msgstr "Aangepaste"
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Select the size you want to install"
-msgstr "Kies die grootte van die installasie"
-
-#: ../../install_steps_interactive.pm_.c:508
-msgid "Package Group Selection"
-msgstr "Kies pakketgroepe"
-
-#: ../../install_steps_interactive.pm_.c:521
-msgid "Individual package selection"
-msgstr "Individuele pakketseleksie"
+#: ../../install_steps_interactive.pm_.c:585
+msgid "Selected size is larger than available space"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:570
+#: ../../install_steps_interactive.pm_.c:650
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -3783,12 +4256,12 @@ msgstr ""
"Indien u oor geen van die gelyste CD's beskik nie, kliek Kanselleer.\n"
"Indien u net oor sekere CDs beskik, deselekteer die ander en kliek OK."
-#: ../../install_steps_interactive.pm_.c:575
+#: ../../install_steps_interactive.pm_.c:655
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CDROM getiteld \"%s\""
-#: ../../install_steps_interactive.pm_.c:603
+#: ../../install_steps_interactive.pm_.c:684
msgid ""
"Installing package %s\n"
"%d%%"
@@ -3796,11 +4269,11 @@ msgstr ""
"Installeer nou pakket %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:612
+#: ../../install_steps_interactive.pm_.c:693
msgid "Post-install configuration"
msgstr "Postinstallasiekonfigurasie"
-#: ../../install_steps_interactive.pm_.c:637
+#: ../../install_steps_interactive.pm_.c:718
msgid ""
"You have now the possibility to download software aimed for encryption.\n"
"\n"
@@ -3870,146 +4343,100 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:669
+#: ../../install_steps_interactive.pm_.c:750
msgid "Choose a mirror from which to get the packages"
msgstr "Kies 'n spieël waar die pakkette verkry kan word"
-#: ../../install_steps_interactive.pm_.c:680
+#: ../../install_steps_interactive.pm_.c:761
msgid "Contacting the mirror to get the list of available packages"
msgstr "Spieël word gekontak vir die lys van pakkette"
-#: ../../install_steps_interactive.pm_.c:683
+#: ../../install_steps_interactive.pm_.c:764
msgid "Please choose the packages you want to install."
msgstr "Kies die pakkette wat u wil installeer"
-#: ../../install_steps_interactive.pm_.c:695
+#: ../../install_steps_interactive.pm_.c:776
msgid "Which is your timezone?"
msgstr "Wat is u tydsone?"
-#: ../../install_steps_interactive.pm_.c:697
+#: ../../install_steps_interactive.pm_.c:778
msgid "Is your hardware clock set to GMT?"
msgstr "Is die hardewareklok gestel vir GMT?"
#
-#: ../../install_steps_interactive.pm_.c:735
-msgid "Which printing system do you want to use?"
-msgstr "Watter drukkerstelsel verlang u?"
+#: ../../install_steps_interactive.pm_.c:806 ../../printer.pm_.c:22
+#: ../../printerdrake.pm_.c:415
+msgid "Remote CUPS server"
+msgstr "Verwyder CUPS-bediener"
-#: ../../install_steps_interactive.pm_.c:762
-msgid "No password"
-msgstr "Geen wagwoord"
+#: ../../install_steps_interactive.pm_.c:807
+#, fuzzy
+msgid "No printer"
+msgstr "Drukkernaam"
-#: ../../install_steps_interactive.pm_.c:767
-msgid "Use shadow file"
-msgstr "Gebruik skadulęer"
+#: ../../install_steps_interactive.pm_.c:821
+#, fuzzy
+msgid "Mouse"
+msgstr "USB Muis"
-#: ../../install_steps_interactive.pm_.c:767
-msgid "shadow"
-msgstr "skadu's"
+#: ../../install_steps_interactive.pm_.c:823
+msgid "Timezone"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:768
-msgid "MD5"
-msgstr "MD5"
+#: ../../install_steps_interactive.pm_.c:824 ../../printerdrake.pm_.c:344
+msgid "Printer"
+msgstr "Drukker"
-#: ../../install_steps_interactive.pm_.c:768
-msgid "Use MD5 passwords"
-msgstr "gebruik MD5 wagwoorde"
+#: ../../install_steps_interactive.pm_.c:826
+#, fuzzy
+msgid "ISDN card"
+msgstr "Interne ISDN-kaart"
-#: ../../install_steps_interactive.pm_.c:770
-msgid "Use NIS"
-msgstr "Gebruik NIS"
+#: ../../install_steps_interactive.pm_.c:829
+#, fuzzy
+msgid "Sound card"
+msgstr "Standaard"
-#: ../../install_steps_interactive.pm_.c:770
-msgid "yellow pages"
-msgstr "geel bladsye"
+#: ../../install_steps_interactive.pm_.c:832
+msgid "TV card"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:776
+#
+#: ../../install_steps_interactive.pm_.c:862
+msgid "Which printing system do you want to use?"
+msgstr "Watter drukkerstelsel verlang u?"
+
+#: ../../install_steps_interactive.pm_.c:896
+msgid "No password"
+msgstr "Geen wagwoord"
+
+#: ../../install_steps_interactive.pm_.c:901
#, c-format
msgid "This password is too simple (must be at least %d characters long)"
msgstr ""
"Hierdie wagwoord is te eenvoudig. Dit moet ten minste %d karakters bevat."
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:907
+msgid "Use NIS"
+msgstr "Gebruik NIS"
+
+#: ../../install_steps_interactive.pm_.c:907
+msgid "yellow pages"
+msgstr "geel bladsye"
+
+#: ../../install_steps_interactive.pm_.c:912
msgid "Authentification NIS"
msgstr "NIS-bemagtiging"
-#: ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_interactive.pm_.c:913
msgid "NIS Domain"
msgstr "NIS-domein"
-#: ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_interactive.pm_.c:914
msgid "NIS Server"
msgstr "NIS-bediener"
-#: ../../install_steps_interactive.pm_.c:809
-#: ../../standalone/adduserdrake_.c:36
-msgid "Accept user"
-msgstr "Aanvaar gebruiker"
-
-#: ../../install_steps_interactive.pm_.c:809
-#: ../../standalone/adduserdrake_.c:36
-msgid "Add user"
-msgstr "Voeg gebruiker by"
-
-#: ../../install_steps_interactive.pm_.c:810
-#: ../../standalone/adduserdrake_.c:37
-#, c-format
-msgid "(already added %s)"
-msgstr "(%s alreeds bygevoeg)"
-
-#: ../../install_steps_interactive.pm_.c:810
-#: ../../standalone/adduserdrake_.c:37
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Tik 'n gebruiker in\n"
-"%s"
-
-#: ../../install_steps_interactive.pm_.c:812
-#: ../../standalone/adduserdrake_.c:39
-msgid "Real name"
-msgstr "Regte naam"
-
-#: ../../install_steps_interactive.pm_.c:813 ../../printerdrake.pm_.c:93
-#: ../../printerdrake.pm_.c:127 ../../standalone/adduserdrake_.c:40
-msgid "User name"
-msgstr "Gebruikerskode"
-
-#: ../../install_steps_interactive.pm_.c:818
-#: ../../standalone/adduserdrake_.c:45
-msgid "Shell"
-msgstr "Dop"
-
-#: ../../install_steps_interactive.pm_.c:820
-#: ../../standalone/adduserdrake_.c:47
-msgid "Icon"
-msgstr "Ikoon"
-
-#: ../../install_steps_interactive.pm_.c:830
-#: ../../standalone/adduserdrake_.c:57
-msgid "This password is too simple"
-msgstr "Die wagwoorde is te eenvoudig"
-
-#: ../../install_steps_interactive.pm_.c:831
-#: ../../standalone/adduserdrake_.c:58
-msgid "Please give a user name"
-msgstr "Gee asb. 'n gebruikerskode"
-
-#: ../../install_steps_interactive.pm_.c:832
-#: ../../standalone/adduserdrake_.c:59
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr ""
-"Die gebruikerskode maag alleenlikui kleinletter, nommers, '-' en '_' bestaan"
-
-#: ../../install_steps_interactive.pm_.c:833
-#: ../../standalone/adduserdrake_.c:60
-msgid "This user name is already added"
-msgstr "Hierdie genruikerskode bestaan alreeds"
-
-#: ../../install_steps_interactive.pm_.c:857
+#: ../../install_steps_interactive.pm_.c:948
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 "
@@ -4036,19 +4463,19 @@ msgstr ""
"Indien u 'n herlaaiskyf wil maak,\n"
"plaas 'n skyf in die aandrywer en druk \"OK\"."
-#: ../../install_steps_interactive.pm_.c:873
+#: ../../install_steps_interactive.pm_.c:964
msgid "First floppy drive"
msgstr "Eerste sagteskyfaandrywer"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:965
msgid "Second floppy drive"
msgstr "Tweede sagteskyfaandrywer"
-#: ../../install_steps_interactive.pm_.c:875
+#: ../../install_steps_interactive.pm_.c:966
msgid "Skip"
msgstr "Mis hierdie stap"
-#: ../../install_steps_interactive.pm_.c:880
+#: ../../install_steps_interactive.pm_.c:971
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 "
@@ -4069,32 +4496,32 @@ msgstr ""
"met die Mandrake reddingsbeeld gebruik word, wat dit makliker maak om van\n"
"ernstige stelselfalings te herstel. Wil u 'n herlaaiskyf maak?"
-#: ../../install_steps_interactive.pm_.c:889
+#: ../../install_steps_interactive.pm_.c:980
msgid "Sorry, no floppy drive available"
msgstr "Jammer, geen sagteskyfaandrywer beskikbaar nie"
-#: ../../install_steps_interactive.pm_.c:892
+#: ../../install_steps_interactive.pm_.c:984
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Kies die sagteskyfaandrywer wat u wil gebruik"
-#: ../../install_steps_interactive.pm_.c:898
+#: ../../install_steps_interactive.pm_.c:988
#, c-format
msgid "Insert a floppy in drive %s"
msgstr "Sit 'n skyf in aandrywer %s"
-#: ../../install_steps_interactive.pm_.c:901
+#: ../../install_steps_interactive.pm_.c:991
msgid "Creating bootdisk"
msgstr "Herlaaiskyf word geskryf"
-#: ../../install_steps_interactive.pm_.c:908
+#: ../../install_steps_interactive.pm_.c:998
msgid "Preparing bootloader"
msgstr "Herlaaistelsel word voorberei"
-#: ../../install_steps_interactive.pm_.c:917
+#: ../../install_steps_interactive.pm_.c:1007
msgid "Do you want to use aboot?"
msgstr "Wil u aboot gebruik?"
-#: ../../install_steps_interactive.pm_.c:920
+#: ../../install_steps_interactive.pm_.c:1010
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -4102,116 +4529,51 @@ msgstr ""
"Die 'aboot' installasie het gefaal. Wil u 'n installasie afwurg al\n"
"word die eerste partisie vernietig?"
-#: ../../install_steps_interactive.pm_.c:929
+#: ../../install_steps_interactive.pm_.c:1019
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Installasie van herlaaiprogram het gefaal a.g.v. hierdie fout: "
-#: ../../install_steps_interactive.pm_.c:943 ../../standalone/draksec_.c:20
-msgid "Welcome To Crackers"
-msgstr "Krakers welkom"
-
-#: ../../install_steps_interactive.pm_.c:944 ../../standalone/draksec_.c:21
-msgid "Poor"
-msgstr "Swak"
+#: ../../install_steps_interactive.pm_.c:1027
+msgid ""
+"You may need to change your Open Firmware boot-device to\n"
+" enable the bootloader. If you don't see the bootloader prompt at\n"
+" reboot, hold down Command-Option-O-F at reboot and enter:\n"
+" setenv boot-device $of_boot,\\\\tbxi\n"
+" Then type: shut-down\n"
+"At your next boot you should see the bootloader prompt."
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:945 ../../standalone/draksec_.c:22
+#: ../../install_steps_interactive.pm_.c:1035 ../../standalone/draksec_.c:23
msgid "Low"
msgstr "Laag"
-#: ../../install_steps_interactive.pm_.c:946 ../../standalone/draksec_.c:23
+#: ../../install_steps_interactive.pm_.c:1036 ../../standalone/draksec_.c:24
msgid "Medium"
msgstr "Medium"
-#: ../../install_steps_interactive.pm_.c:947 ../../standalone/draksec_.c:24
+#: ../../install_steps_interactive.pm_.c:1037 ../../standalone/draksec_.c:25
msgid "High"
msgstr "Hoog"
-#: ../../install_steps_interactive.pm_.c:948 ../../standalone/draksec_.c:25
-msgid "Paranoid"
-msgstr "Paranoďes"
-
-#: ../../install_steps_interactive.pm_.c:962
-msgid "Miscellaneous questions"
-msgstr "Diverse vrae"
-
-#: ../../install_steps_interactive.pm_.c:963
-msgid "(may cause data corruption)"
-msgstr "(kan data korrupteer)"
-
-#: ../../install_steps_interactive.pm_.c:963
-msgid "Use hard drive optimisations?"
-msgstr "Gebruik skyfoptimisasie?"
-
-#: ../../install_steps_interactive.pm_.c:964 ../../standalone/draksec_.c:46
+#: ../../install_steps_interactive.pm_.c:1041 ../../standalone/draksec_.c:49
msgid "Choose security level"
msgstr "Gebruik sekuriteitsvlak"
-#: ../../install_steps_interactive.pm_.c:965
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Presiese RAM grootte indien nodig (%d MB bespeur)"
-
-#: ../../install_steps_interactive.pm_.c:967
-msgid "Removable media automounting"
-msgstr "Outohegting van verwyderbare media"
-
-#: ../../install_steps_interactive.pm_.c:969
-msgid "Clean /tmp at each boot"
-msgstr "Maak /tmp skoon met elke herlaai"
-
-#: ../../install_steps_interactive.pm_.c:972
-msgid "Enable multi profiles"
-msgstr "Ontsper multiprofiele"
-
-#: ../../install_steps_interactive.pm_.c:974
-msgid "Enable num lock at startup"
-msgstr "Aansit van NumLock met herlaai"
-
-#: ../../install_steps_interactive.pm_.c:977
-msgid "Give the ram size in MB"
-msgstr "Gee die geheuegrootte in MB"
-
-#: ../../install_steps_interactive.pm_.c:979
-msgid "Can't use supermount in high security level"
-msgstr ""
-"Superhegting (supermount) kan nie met 'n hoë sekuriteitsvlak gebruik word nie"
-
-#: ../../install_steps_interactive.pm_.c:981
-msgid ""
-"beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
-"If you want to be root, you have to login as a user and then use \"su\".\n"
-"More generally, do not expect to use your machine for anything but as a "
-"server.\n"
-"You have been warned."
-msgstr ""
-"Warskuwing: IN HIERDIE SEKURITEITSVLAK, kan ROOT nie by die KONSOLE AANTEKEN "
-"nie.\n"
-"OM 'root' te wees moet u eers as 'n gewone gebruiker aanteken en dan "
-"'su'.Hierdie is spesifiek vir bedienergebruik. U is gewaarsku!"
-
-#: ../../install_steps_interactive.pm_.c:986
-msgid ""
-"Be carefull, having numlock enabled causes a lot of keystrokes to\n"
-"give digits instead of normal letters (eg: pressing `p' gives `6')"
-msgstr ""
-"Wees versigtig, met NumLock aan sal heelwat sleutels as syfers eerder as "
-"karakters na vore kom. (Bv 'n 'p' mag dalk '6' wees)"
-
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1074
msgid "Do you want to generate an auto install floppy for linux replication?"
msgstr "Wil u 'n outoinstallasieskyf maak vir Linux replikasie?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1076
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Sit 'n leë floppie in aandrywer %s"
-#: ../../install_steps_interactive.pm_.c:1049
-#: ../../install_steps_interactive.pm_.c:1079
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1122
msgid "Creating auto install floppy"
msgstr "Outoinstallasieskyf word geskep."
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1150
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -4221,7 +4583,7 @@ msgstr ""
"\n"
"Wil u werklik nou aborteer?"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -4241,6 +4603,34 @@ msgstr ""
"Inligting oor stelskonfigurasie is beskikbaar in die postinstallasie-\n"
"hoofstuk in die Offisiële Liux-Mandrake Gebruikersgids."
+#: ../../install_steps_interactive.pm_.c:1173
+#, fuzzy
+msgid "Generate auto install floppy"
+msgstr "Outoinstallasieskyf word geskep."
+
+#: ../../install_steps_interactive.pm_.c:1175
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1180
+msgid "Automated"
+msgstr "Outomaties"
+
+#: ../../install_steps_interactive.pm_.c:1180
+#, fuzzy
+msgid "Replay"
+msgstr "Herlaai"
+
+#: ../../install_steps_interactive.pm_.c:1183
+#, fuzzy
+msgid "Save packages selection"
+msgstr "Individuele pakketseleksie"
+
#: ../../install_steps_newt.pm_.c:22
#, c-format
msgid "Linux-Mandrake Installation %s"
@@ -4252,7 +4642,15 @@ msgid ""
msgstr ""
" <Tab>/<Alt-Tab> tussen elemente | <Space> selekteer | <F12> volgende skerm "
-#: ../../interactive.pm_.c:273
+#: ../../interactive.pm_.c:65
+msgid "kdesu missing"
+msgstr ""
+
+#: ../../interactive.pm_.c:263
+msgid "Advanced"
+msgstr ""
+
+#: ../../interactive.pm_.c:286
msgid "Please wait"
msgstr "Wag asb."
@@ -4281,258 +4679,272 @@ msgstr "U keuse? (verstek %s) "
msgid "Your choice? (default %s enter `none' for none) "
msgstr "U keuse? (Verstek %s tik 'none' vir geen)"
-#: ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:135
+#: ../../keyboard.pm_.c:124 ../../keyboard.pm_.c:154
msgid "Czech (QWERTZ)"
msgstr "Tseggies (QWERTZ)"
-#: ../../keyboard.pm_.c:106 ../../keyboard.pm_.c:119 ../../keyboard.pm_.c:138
+#: ../../keyboard.pm_.c:125 ../../keyboard.pm_.c:138 ../../keyboard.pm_.c:157
msgid "German"
msgstr "Duits"
-#: ../../keyboard.pm_.c:107
+#: ../../keyboard.pm_.c:126
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:108 ../../keyboard.pm_.c:144
+#: ../../keyboard.pm_.c:127 ../../keyboard.pm_.c:163
msgid "Spanish"
msgstr "Spaans"
-#: ../../keyboard.pm_.c:109 ../../keyboard.pm_.c:145
+#: ../../keyboard.pm_.c:128 ../../keyboard.pm_.c:164
msgid "Finnish"
msgstr "Finnies"
-#: ../../keyboard.pm_.c:110 ../../keyboard.pm_.c:120 ../../keyboard.pm_.c:146
+#: ../../keyboard.pm_.c:129 ../../keyboard.pm_.c:139 ../../keyboard.pm_.c:165
msgid "French"
msgstr "Frans"
-#: ../../keyboard.pm_.c:111 ../../keyboard.pm_.c:166
+#: ../../keyboard.pm_.c:130 ../../keyboard.pm_.c:186
msgid "Norwegian"
msgstr "Norweegs"
-#: ../../keyboard.pm_.c:112
+#: ../../keyboard.pm_.c:131
msgid "Polish"
msgstr "Pools"
-#: ../../keyboard.pm_.c:113 ../../keyboard.pm_.c:171
+#: ../../keyboard.pm_.c:132 ../../keyboard.pm_.c:191
msgid "Russian"
msgstr "Russies"
-#: ../../keyboard.pm_.c:114 ../../keyboard.pm_.c:182
+#: ../../keyboard.pm_.c:133 ../../keyboard.pm_.c:202
msgid "UK keyboard"
msgstr "VK sleutelbord"
-#: ../../keyboard.pm_.c:115 ../../keyboard.pm_.c:118 ../../keyboard.pm_.c:183
+#: ../../keyboard.pm_.c:134 ../../keyboard.pm_.c:137 ../../keyboard.pm_.c:203
msgid "US keyboard"
msgstr "VSA sleutelbord"
-#: ../../keyboard.pm_.c:122
+#: ../../keyboard.pm_.c:141
msgid "Armenian (old)"
msgstr "Armenies (oud)"
-#: ../../keyboard.pm_.c:123
+#: ../../keyboard.pm_.c:142
msgid "Armenian (typewriter)"
msgstr "Armenies (tikmasjien)"
-#: ../../keyboard.pm_.c:124
+#: ../../keyboard.pm_.c:143
msgid "Armenian (phonetic)"
msgstr "Armenies (Foneties)"
-#: ../../keyboard.pm_.c:127
+#: ../../keyboard.pm_.c:146
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidjani (latyns)"
-#: ../../keyboard.pm_.c:128
+#: ../../keyboard.pm_.c:147
msgid "Azerbaidjani (cyrillic)"
msgstr "Azerbaidjani (kirillies)"
-#: ../../keyboard.pm_.c:129
+#: ../../keyboard.pm_.c:148
msgid "Belgian"
msgstr "Belgies"
-#: ../../keyboard.pm_.c:130
+#: ../../keyboard.pm_.c:149
msgid "Bulgarian"
msgstr "Bulgaars"
-#: ../../keyboard.pm_.c:131
+#: ../../keyboard.pm_.c:150
msgid "Brazilian (ABNT-2)"
msgstr "Brasiliaans (ABNT-2)"
-#: ../../keyboard.pm_.c:132
+#: ../../keyboard.pm_.c:151
msgid "Belarusian"
msgstr "Belarussies"
-#: ../../keyboard.pm_.c:133
+#: ../../keyboard.pm_.c:152
msgid "Swiss (German layout)"
msgstr "Switsers (Duitse uitleg)"
-#: ../../keyboard.pm_.c:134
+#: ../../keyboard.pm_.c:153
msgid "Swiss (French layout)"
msgstr "Switsers (Franse uitleg)"
-#: ../../keyboard.pm_.c:136
+#: ../../keyboard.pm_.c:155
msgid "Czech (QWERTY)"
msgstr "Tseggies (QWERTY)"
-#: ../../keyboard.pm_.c:137
+#: ../../keyboard.pm_.c:156
msgid "Czech (Programmers)"
msgstr ""
-#: ../../keyboard.pm_.c:139
+#: ../../keyboard.pm_.c:158
msgid "German (no dead keys)"
msgstr "Duits (geen dooie sleutels)"
-#: ../../keyboard.pm_.c:140
+#: ../../keyboard.pm_.c:159
msgid "Danish"
msgstr "Deens"
-#: ../../keyboard.pm_.c:141
+#: ../../keyboard.pm_.c:160
msgid "Dvorak (US)"
msgstr "Dvorak (VSA)"
-#: ../../keyboard.pm_.c:142
+#: ../../keyboard.pm_.c:161
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norweegs)"
-#: ../../keyboard.pm_.c:143
+#: ../../keyboard.pm_.c:162
msgid "Estonian"
msgstr "Estoniaans"
-#: ../../keyboard.pm_.c:147
+#: ../../keyboard.pm_.c:166
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgies (Russiese uitleg)"
-#: ../../keyboard.pm_.c:148
+#: ../../keyboard.pm_.c:167
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgies (Latynse uitleg)"
-#: ../../keyboard.pm_.c:149
+#: ../../keyboard.pm_.c:168
msgid "Greek"
msgstr "Grieks"
-#: ../../keyboard.pm_.c:150
+#: ../../keyboard.pm_.c:169
msgid "Hungarian"
msgstr "Hongaars"
-#: ../../keyboard.pm_.c:151
+#: ../../keyboard.pm_.c:170
msgid "Croatian"
msgstr "Kroaties"
-#: ../../keyboard.pm_.c:152
+#: ../../keyboard.pm_.c:171
msgid "Israeli"
msgstr "Israelies"
-#: ../../keyboard.pm_.c:153
+#: ../../keyboard.pm_.c:172
msgid "Israeli (Phonetic)"
msgstr "Israelies (Foneties)"
-#: ../../keyboard.pm_.c:154
+#: ../../keyboard.pm_.c:173
msgid "Iranian"
msgstr "Iranies"
-#: ../../keyboard.pm_.c:155
+#: ../../keyboard.pm_.c:174
msgid "Icelandic"
msgstr "Yslandies"
-#: ../../keyboard.pm_.c:156
+#: ../../keyboard.pm_.c:175
msgid "Italian"
msgstr "Italiaans"
-#: ../../keyboard.pm_.c:157
+#: ../../keyboard.pm_.c:176
msgid "Japanese 106 keys"
msgstr "Japanees 106 sleutels"
-#: ../../keyboard.pm_.c:158
+#: ../../keyboard.pm_.c:177
+#, fuzzy
+msgid "Korean keyboard"
+msgstr "VK sleutelbord"
+
+#: ../../keyboard.pm_.c:178
msgid "Latin American"
msgstr "Latyns-Amerikaans"
-#: ../../keyboard.pm_.c:160
+#: ../../keyboard.pm_.c:179
+msgid "Macedonian"
+msgstr ""
+
+#: ../../keyboard.pm_.c:180
msgid "Dutch"
msgstr "Nederlands"
-#: ../../keyboard.pm_.c:161
+#: ../../keyboard.pm_.c:181
msgid "Lithuanian AZERTY (old)"
msgstr "Lituanies AZERTY (oud)"
-#: ../../keyboard.pm_.c:163
+#: ../../keyboard.pm_.c:183
msgid "Lithuanian AZERTY (new)"
msgstr "Lituanies AZERTY (nuut)"
-#: ../../keyboard.pm_.c:164
+#: ../../keyboard.pm_.c:184
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituanies \"nommerry\" QWERTY"
-#: ../../keyboard.pm_.c:165
+#: ../../keyboard.pm_.c:185
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituanies \"foneties\" QWERTY"
-#: ../../keyboard.pm_.c:167
+#: ../../keyboard.pm_.c:187
msgid "Polish (qwerty layout)"
msgstr "Pools (QWERTY uitleg)"
-#: ../../keyboard.pm_.c:168
+#: ../../keyboard.pm_.c:188
msgid "Polish (qwertz layout)"
msgstr "Pools (QWERTZ uitleg)"
-#: ../../keyboard.pm_.c:169
+#: ../../keyboard.pm_.c:189
msgid "Portuguese"
msgstr "Portugees"
-#: ../../keyboard.pm_.c:170
+#: ../../keyboard.pm_.c:190
msgid "Canadian (Quebec)"
msgstr "Kanadees (Quebec)"
-#: ../../keyboard.pm_.c:172
+#: ../../keyboard.pm_.c:192
msgid "Russian (Yawerty)"
msgstr "Russue (Yawerty)"
-#: ../../keyboard.pm_.c:173
+#: ../../keyboard.pm_.c:193
msgid "Swedish"
msgstr "Sweeds"
-#: ../../keyboard.pm_.c:174
+#: ../../keyboard.pm_.c:194
msgid "Slovenian"
msgstr "Sloveens"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:195
msgid "Slovakian (QWERTZ)"
msgstr "Slovaaks (QWERTZ)"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:196
msgid "Slovakian (QWERTY)"
msgstr "Slovaaks (QWERTY)"
-#: ../../keyboard.pm_.c:177
+#: ../../keyboard.pm_.c:197
msgid "Slovakian (Programmers)"
msgstr ""
-#: ../../keyboard.pm_.c:178
+#: ../../keyboard.pm_.c:198
msgid "Thai keyboard"
msgstr "Thai sleutelbord"
-#: ../../keyboard.pm_.c:179
+#: ../../keyboard.pm_.c:199
msgid "Turkish (traditional \"F\" model)"
msgstr "Turks (tradisionele \"F\" model)"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:200
msgid "Turkish (modern \"Q\" model)"
msgstr "Turks (moderne \"Q\" modem)"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:201
msgid "Ukrainian"
msgstr "Ukranies"
-#: ../../keyboard.pm_.c:184
+#: ../../keyboard.pm_.c:204
msgid "US keyboard (international)"
msgstr "VSA internasionale sleutelbord"
-#: ../../keyboard.pm_.c:185
+#: ../../keyboard.pm_.c:205
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Viëtnamees \"nommerry\" QWERTY"
-#: ../../keyboard.pm_.c:186
-msgid "Yugoslavian (latin layout)"
+#: ../../keyboard.pm_.c:206
+#, fuzzy
+msgid "Yugoslavian (latin/cyrillic)"
msgstr "Jugoslaavs (latynse uitleg)"
+#: ../../lvm.pm_.c:70
+msgid "Remove the logical volumes first\n"
+msgstr ""
+
#: ../../mouse.pm_.c:25
msgid "Sun - Mouse"
msgstr "Sun - Muis"
@@ -4554,11 +4966,11 @@ msgstr "Generiese Muis"
msgid "GlidePoint"
msgstr "GlidePoint"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:62
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:58
msgid "Genius NetMouse"
msgstr "Genius NetMouse"
@@ -4566,122 +4978,143 @@ msgstr "Genius NetMouse"
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:43
+#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:67
+#, fuzzy
+msgid "1 button"
+msgstr "2 knoppies"
+
+#: ../../mouse.pm_.c:44
msgid "Generic"
msgstr "Generies"
#
-#: ../../mouse.pm_.c:44
+#: ../../mouse.pm_.c:45
msgid "Wheel"
msgstr "Wiel"
-#: ../../mouse.pm_.c:47
+#: ../../mouse.pm_.c:48
msgid "serial"
msgstr "seriaal"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:50
msgid "Generic 2 Button Mouse"
msgstr "Generiese 2-knop muis"
-#: ../../mouse.pm_.c:50
+#: ../../mouse.pm_.c:51
msgid "Generic 3 Button Mouse"
msgstr "Generiese 3-knop muis"
-#: ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:52
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:53
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:54
msgid "Mouse Systems"
msgstr "Mouse Systems"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:56
msgid "Logitech CC Series"
msgstr "Logitech CC Reeks (seriaal)"
-#: ../../mouse.pm_.c:56
+#: ../../mouse.pm_.c:57
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:59
msgid "MM Series"
msgstr "MM Series"
-#: ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:60
msgid "MM HitTablet"
msgstr "MM HitTablet"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:61
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Logitech Muis (seriaal, ou C7 tipe)"
-#: ../../mouse.pm_.c:64
+#: ../../mouse.pm_.c:65
#, fuzzy
msgid "busmouse"
msgstr "Geen muis"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
msgid "2 buttons"
msgstr "2 knoppies"
-#: ../../mouse.pm_.c:67
+#: ../../mouse.pm_.c:69
msgid "3 buttons"
msgstr "3 knoppies"
-#: ../../mouse.pm_.c:70
+#: ../../mouse.pm_.c:72
msgid "none"
msgstr "niks"
-#: ../../mouse.pm_.c:72
+#: ../../mouse.pm_.c:74
msgid "No mouse"
msgstr "Geen muis"
-#: ../../my_gtk.pm_.c:243
+#: ../../my_gtk.pm_.c:356
+#, fuzzy
+msgid "Finish"
+msgstr "Finnies"
+
+#: ../../my_gtk.pm_.c:356
msgid "Next ->"
msgstr "Volgende ->"
-#: ../../my_gtk.pm_.c:486
+#: ../../my_gtk.pm_.c:357
+msgid "<- Previous"
+msgstr ""
+
+#: ../../my_gtk.pm_.c:616
msgid "Is this correct?"
msgstr "Is dit korrek?"
-#: ../../netconnect.pm_.c:93 ../../netconnect_new.pm_.c:151
+#: ../../netconnect.pm_.c:141
msgid "Internet configuration"
msgstr "Internetkonfigurasie"
-#: ../../netconnect.pm_.c:94 ../../netconnect_new.pm_.c:152
+#: ../../netconnect.pm_.c:142
msgid "Do you want to try to connect to the Internet now?"
msgstr "Wil u nou aan die internet konnekteer?"
-#: ../../netconnect.pm_.c:101 ../../netconnect_new.pm_.c:159
+#: ../../netconnect.pm_.c:146
#, fuzzy
msgid "Testing your connection..."
msgstr "Konfigureer internetkonneksie"
-#: ../../netconnect.pm_.c:106 ../../netconnect_new.pm_.c:164
+#: ../../netconnect.pm_.c:152 ../../standalone/draknet_.c:196
#, fuzzy
msgid "The system is now connected to Internet."
msgstr "Hoe wil u aan die internet konnekteer?"
-#: ../../netconnect.pm_.c:107 ../../netconnect_new.pm_.c:165
+#: ../../netconnect.pm_.c:153
+msgid "For Security reason, it will be disconnected now."
+msgstr ""
+
+#: ../../netconnect.pm_.c:154 ../../standalone/draknet_.c:196
#, fuzzy
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
msgstr "Konnekteer aan die internet / Konfigureer LAN"
-#: ../../netconnect.pm_.c:141 ../../netconnect.pm_.c:213
-#: ../../netconnect.pm_.c:232 ../../netconnect.pm_.c:244
-#: ../../netconnect.pm_.c:256 ../../netconnect_new.pm_.c:226
-#: ../../netconnect_new.pm_.c:300 ../../netconnect_new.pm_.c:319
-#: ../../netconnect_new.pm_.c:331 ../../netconnect_new.pm_.c:343
+#: ../../netconnect.pm_.c:159 ../../netconnect.pm_.c:901
+#: ../../netconnect.pm_.c:930 ../../netconnect.pm_.c:1008
+msgid "Network Configuration"
+msgstr "Netwerkkonfigurasie"
+
+#: ../../netconnect.pm_.c:220 ../../netconnect.pm_.c:264
+#: ../../netconnect.pm_.c:274 ../../netconnect.pm_.c:281
+#: ../../netconnect.pm_.c:291
msgid "ISDN Configuration"
msgstr "ISDN Konfigurasie"
-#: ../../netconnect.pm_.c:141 ../../netconnect_new.pm_.c:226
+#: ../../netconnect.pm_.c:220
msgid ""
"Select your provider.\n"
" If it's not in the list, choose Unlisted"
@@ -4690,116 +5123,108 @@ msgstr ""
"Indien nie in die lys nie kies Ongelys"
#
-#: ../../netconnect.pm_.c:158 ../../netconnect_new.pm_.c:245
+#: ../../netconnect.pm_.c:234
msgid "Connection Configuration"
msgstr "Konneksiekonfigurasie"
-#: ../../netconnect.pm_.c:159 ../../netconnect_new.pm_.c:246
+#: ../../netconnect.pm_.c:235
msgid "Please fill or check the field below"
msgstr "Vul asb. die velde hieronder in"
-#: ../../netconnect.pm_.c:161 ../../netconnect_new.pm_.c:248
+#: ../../netconnect.pm_.c:237 ../../standalone/draknet_.c:550
msgid "Card IRQ"
msgstr "Kaart IRQ"
-#: ../../netconnect.pm_.c:162 ../../netconnect_new.pm_.c:249
+#: ../../netconnect.pm_.c:238 ../../standalone/draknet_.c:551
msgid "Card mem (DMA)"
msgstr "Kaartgeheue (DMA)"
-#: ../../netconnect.pm_.c:163 ../../netconnect_new.pm_.c:250
+#: ../../netconnect.pm_.c:239 ../../standalone/draknet_.c:552
msgid "Card IO"
msgstr "Kaart I/O"
-#: ../../netconnect.pm_.c:164 ../../netconnect_new.pm_.c:251
+#: ../../netconnect.pm_.c:240 ../../standalone/draknet_.c:553
msgid "Card IO_0"
msgstr "Kaart IO_0"
-#: ../../netconnect.pm_.c:165 ../../netconnect_new.pm_.c:252
+#: ../../netconnect.pm_.c:241 ../../standalone/draknet_.c:554
msgid "Card IO_1"
msgstr "Kaart IO_1"
-#: ../../netconnect.pm_.c:166 ../../netconnect_new.pm_.c:253
+#: ../../netconnect.pm_.c:242 ../../standalone/draknet_.c:555
msgid "Your personal phone number"
msgstr "U persoonlike telefoonnommer"
-#: ../../netconnect.pm_.c:168 ../../netconnect_new.pm_.c:255
+#: ../../netconnect.pm_.c:243 ../../standalone/draknet_.c:556
msgid "Provider name (ex provider.net)"
msgstr "Voorsienernaam (bv voorsiener.co.za)"
-#: ../../netconnect.pm_.c:169 ../../netconnect_new.pm_.c:256
+#: ../../netconnect.pm_.c:244 ../../standalone/draknet_.c:557
msgid "Provider phone number"
msgstr "Voorsiener se telefoonnommer"
-#: ../../netconnect.pm_.c:170 ../../netconnect_new.pm_.c:257
+#: ../../netconnect.pm_.c:245
msgid "Provider dns 1"
msgstr "Voorsiener DNS 1"
-#: ../../netconnect.pm_.c:171 ../../netconnect_new.pm_.c:258
+#: ../../netconnect.pm_.c:246
msgid "Provider dns 2"
msgstr "Voorsiener DNS 2"
-#: ../../netconnect.pm_.c:172 ../../netconnect_new.pm_.c:259
+#: ../../netconnect.pm_.c:247 ../../standalone/draknet_.c:562
msgid "Dialing mode"
msgstr "Belmetode"
-#: ../../netconnect.pm_.c:174 ../../netconnect_new.pm_.c:261
+#: ../../netconnect.pm_.c:248 ../../standalone/draknet_.c:560
msgid "Account Login (user name)"
msgstr "Gebruikerskode"
-#: ../../netconnect.pm_.c:175 ../../netconnect_new.pm_.c:262
+#: ../../netconnect.pm_.c:249 ../../standalone/draknet_.c:561
msgid "Account Password"
msgstr "Wagwoord"
-#: ../../netconnect.pm_.c:176 ../../netconnect_new.pm_.c:263
-msgid "Confirm Password"
-msgstr "Bevestig wagwoord"
-
-#: ../../netconnect.pm_.c:208 ../../netconnect_new.pm_.c:295
+#: ../../netconnect.pm_.c:259
msgid "Europe"
msgstr "Europa"
-#: ../../netconnect.pm_.c:208 ../../netconnect_new.pm_.c:295
+#: ../../netconnect.pm_.c:259
msgid "Europe (EDSS1)"
msgstr "Europa (EDSS1)"
#
-#: ../../netconnect.pm_.c:210 ../../netconnect_new.pm_.c:297
+#: ../../netconnect.pm_.c:261
msgid "Rest of the world"
msgstr "Res van die węreld"
-#: ../../netconnect.pm_.c:210 ../../netconnect_new.pm_.c:297
-msgid "Rest of the world - no D-Channel (leased lines)"
-msgstr "Res vd węreld - geen D-Kanaal (bruikhuurlyne)"
+#: ../../netconnect.pm_.c:261
+msgid ""
+"Rest of the world \n"
+" no D-Channel (leased lines)"
+msgstr ""
+"Res vd węreld \n"
+" geen D-Kanaal (bruikhuurlyne)"
-#: ../../netconnect.pm_.c:214 ../../netconnect_new.pm_.c:301
+#: ../../netconnect.pm_.c:265
msgid "Which protocol do you want to use ?"
msgstr "Watter protokol verlang u?"
-#: ../../netconnect.pm_.c:224 ../../netconnect_new.pm_.c:311
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../netconnect.pm_.c:226 ../../netconnect_new.pm_.c:313
-msgid "PCI"
-msgstr "PCI"
+#: ../../netconnect.pm_.c:275
+msgid "What kind of card do you have?"
+msgstr "Oor watter tipe kaart beskik u?"
-#: ../../netconnect.pm_.c:228 ../../netconnect_new.pm_.c:315
+#: ../../netconnect.pm_.c:276
msgid "I don't know"
msgstr "Ek weet nie"
-#: ../../netconnect.pm_.c:233 ../../netconnect_new.pm_.c:320
-msgid "What kind of card do you have?"
-msgstr "Oor watter tipe kaart beskik u?"
-
-#: ../../netconnect.pm_.c:239 ../../netconnect_new.pm_.c:326
-msgid "Continue"
-msgstr "Gaan voort"
+#: ../../netconnect.pm_.c:276
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
-#: ../../netconnect.pm_.c:241 ../../netconnect_new.pm_.c:328
-msgid "Abort"
-msgstr "Aborteer"
+#: ../../netconnect.pm_.c:276
+msgid "PCI"
+msgstr "PCI"
-#: ../../netconnect.pm_.c:245 ../../netconnect_new.pm_.c:332
+#: ../../netconnect.pm_.c:282
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -4812,15 +5237,19 @@ msgstr ""
"\n"
"Indien u 'n PCMCIA kaart het, moet u die IRQ en I/O van u kaart weet.\n"
-#: ../../netconnect.pm_.c:257 ../../netconnect_new.pm_.c:344
+#: ../../netconnect.pm_.c:286
+msgid "Abort"
+msgstr "Aborteer"
+
+#: ../../netconnect.pm_.c:286
+msgid "Continue"
+msgstr "Gaan voort"
+
+#: ../../netconnect.pm_.c:292
msgid "Which is your ISDN card ?"
msgstr "Wat is u ISDN-kaart?"
-#: ../../netconnect.pm_.c:282
-msgid "I have found an ISDN Card:\n"
-msgstr "Ek het 'n ISDN-kaart gevind\n"
-
-#: ../../netconnect.pm_.c:288 ../../netconnect_new.pm_.c:367
+#: ../../netconnect.pm_.c:312
msgid ""
"I have detected an ISDN PCI Card, but I don't know the type. Please select "
"one PCI card on the next screen."
@@ -4828,11 +5257,11 @@ msgstr ""
"Ek het 'n ISDB PCI-kaart gevind, maar ek ken nie die tipe nie. Kies asb.'n "
"PCI-kaart op die volgende skerm."
-#: ../../netconnect.pm_.c:300 ../../netconnect_new.pm_.c:379
+#: ../../netconnect.pm_.c:321
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr "Geen ISDN PCI-kaart gevind nie. Kies asb. een op die volgende skerm."
-#: ../../netconnect.pm_.c:336 ../../netconnect_new.pm_.c:412
+#: ../../netconnect.pm_.c:369
#, fuzzy
msgid ""
"No ethernet network adapter has been detected on your system.\n"
@@ -4841,12 +5270,11 @@ msgstr ""
"Geen ethernetkaart is op die stelsel gevind nie. Gebruik asb. die "
"hardewarekonfigurasieprogram."
-#: ../../netconnect.pm_.c:340 ../../netconnect_new.pm_.c:417
-#: ../../standalone/drakgw_.c:222
+#: ../../netconnect.pm_.c:373 ../../standalone/drakgw_.c:232
msgid "Choose the network interface"
msgstr "Kies die netwerkkoppelvlak"
-#: ../../netconnect.pm_.c:341 ../../netconnect_new.pm_.c:418
+#: ../../netconnect.pm_.c:374
#, fuzzy
msgid ""
"Please choose which network adapter you want to use to connect to Internet"
@@ -4854,297 +5282,310 @@ msgstr ""
"Kies asb. die netwerkkoppelvlak wat u wil gebruik vir die internet.\n"
"Indien u nie weet nie, kies eth0.\n"
-#: ../../netconnect.pm_.c:356 ../../netconnect.pm_.c:635
-#: ../../netconnect.pm_.c:766 ../../netconnect_new.pm_.c:425
-#: ../../netconnect_new.pm_.c:777 ../../netconnect_new.pm_.c:908
-#: ../../standalone/drakgw_.c:217
+#: ../../netconnect.pm_.c:383 ../../netconnect.pm_.c:697
+#: ../../netconnect.pm_.c:842 ../../standalone/drakgw_.c:223
msgid "Network interface"
msgstr "Netwerkkoppelvlak"
-#: ../../netconnect.pm_.c:357 ../../netconnect_new.pm_.c:426
+#: ../../netconnect.pm_.c:384
msgid ""
"\n"
"Do you agree?"
msgstr ""
-#: ../../netconnect.pm_.c:357 ../../netconnect_new.pm_.c:426
+#: ../../netconnect.pm_.c:384
#, fuzzy
msgid "I'm about to restart the network device:\n"
msgstr "Ek gaan nou die netwerkkoppelvlak herlaai. Stem u saam?"
-#: ../../netconnect.pm_.c:473 ../../netconnect_new.pm_.c:512
+#: ../../netconnect.pm_.c:482
msgid "ADSL configuration"
msgstr "ADSL konfigurasie"
-#: ../../netconnect.pm_.c:474 ../../netconnect_new.pm_.c:513
+#: ../../netconnect.pm_.c:483
msgid "Do you want to start your connection at boot?"
msgstr "Wil u die konneksie by herlaaityd aanskakel?"
-#: ../../netconnect.pm_.c:541 ../../netconnect_new.pm_.c:672
-msgid "Try to find a modem?"
-msgstr "Soekj vir 'n modem?"
-
-#: ../../netconnect.pm_.c:551 ../../netconnect_new.pm_.c:677
+#: ../../netconnect.pm_.c:618
msgid "Please choose which serial port your modem is connected to."
msgstr "Op watter seriaalpoort is u modem gekoppel?"
-#: ../../netconnect.pm_.c:556 ../../netconnect_new.pm_.c:682
+#: ../../netconnect.pm_.c:623
msgid "Dialup options"
msgstr "Opbelopsies"
-#: ../../netconnect.pm_.c:557 ../../netconnect_new.pm_.c:683
+#: ../../netconnect.pm_.c:624 ../../standalone/draknet_.c:564
msgid "Connection name"
msgstr "Konneksienaam"
-#: ../../netconnect.pm_.c:558 ../../netconnect_new.pm_.c:684
+#: ../../netconnect.pm_.c:625 ../../standalone/draknet_.c:565
msgid "Phone number"
msgstr "Telefoonnommer"
-#: ../../netconnect.pm_.c:559 ../../netconnect_new.pm_.c:685
+#: ../../netconnect.pm_.c:626 ../../standalone/draknet_.c:566
msgid "Login ID"
msgstr "Aantekenkode"
-#: ../../netconnect.pm_.c:561 ../../netconnect_new.pm_.c:687
+#: ../../netconnect.pm_.c:628 ../../standalone/draknet_.c:568
msgid "Authentication"
msgstr "Magtiging"
-#: ../../netconnect.pm_.c:561 ../../netconnect_new.pm_.c:687
+#: ../../netconnect.pm_.c:628 ../../standalone/draknet_.c:568
msgid "PAP"
msgstr "PAP"
-#: ../../netconnect.pm_.c:561 ../../netconnect_new.pm_.c:687
+#: ../../netconnect.pm_.c:628 ../../standalone/draknet_.c:568
msgid "Script-based"
msgstr "Skriptipe"
-#: ../../netconnect.pm_.c:561 ../../netconnect_new.pm_.c:687
+#: ../../netconnect.pm_.c:628 ../../standalone/draknet_.c:568
msgid "Terminal-based"
msgstr "Terminaaltipe"
-#: ../../netconnect.pm_.c:562 ../../netconnect_new.pm_.c:688
+#: ../../netconnect.pm_.c:629 ../../standalone/draknet_.c:569
msgid "Domain name"
msgstr "Domeinnaam"
-#: ../../netconnect.pm_.c:564 ../../netconnect_new.pm_.c:690
-msgid "First DNS Server"
+#: ../../netconnect.pm_.c:630 ../../standalone/draknet_.c:570
+#, fuzzy
+msgid "First DNS Server (optional)"
msgstr "Eerste DNS bediener"
-#: ../../netconnect.pm_.c:565 ../../netconnect_new.pm_.c:691
-msgid "Second DNS Server"
+#: ../../netconnect.pm_.c:631 ../../standalone/draknet_.c:571
+#, fuzzy
+msgid "Second DNS Server (optional)"
msgstr "Tweede DNS bediener"
-#: ../../netconnect.pm_.c:594 ../../netconnect_new.pm_.c:736
+#: ../../netconnect.pm_.c:698
#, fuzzy
msgid ""
+"I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"
+msgstr "Ek gaan nou die netwerkkoppelvlak herlaai. Stem u saam?"
+
+#: ../../netconnect.pm_.c:742
+msgid ""
"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr "Konnekteer aan die internet / Konfigureer LAN"
+"You can disconnect or reconfigure your connection."
+msgstr ""
-#: ../../netconnect.pm_.c:594 ../../netconnect.pm_.c:598
-#: ../../netconnect_new.pm_.c:736 ../../netconnect_new.pm_.c:740
+#: ../../netconnect.pm_.c:742 ../../netconnect.pm_.c:745
#, fuzzy
msgid ""
"\n"
"You can reconfigure your connection."
msgstr "Konfigureer internetkonneksie"
-#: ../../netconnect.pm_.c:594 ../../netconnect_new.pm_.c:736
+#: ../../netconnect.pm_.c:742
#, fuzzy
-msgid "You are not currently connected to Internet."
+msgid "You are currently connected to internet."
msgstr "Hoe wil u aan die internet konnekteer?"
-#: ../../netconnect.pm_.c:598 ../../netconnect_new.pm_.c:740
+#: ../../netconnect.pm_.c:745
+#, fuzzy
msgid ""
"\n"
-"You can disconnect or reconfigure your connection."
-msgstr ""
+"You can connect to Internet or reconfigure your connection."
+msgstr "Konnekteer aan die internet / Konfigureer LAN"
-#: ../../netconnect.pm_.c:598 ../../netconnect_new.pm_.c:740
+#: ../../netconnect.pm_.c:745
#, fuzzy
-msgid "You are currently connected to internet."
+msgid "You are not currently connected to Internet."
msgstr "Hoe wil u aan die internet konnekteer?"
-#: ../../netconnect.pm_.c:602 ../../netconnect_new.pm_.c:744
+#: ../../netconnect.pm_.c:749 ../../standalone/net_monitor_.c:81
msgid "Connect to Internet"
msgstr "Konnekteer aan die internet"
-#: ../../netconnect.pm_.c:604 ../../netconnect_new.pm_.c:746
+#: ../../netconnect.pm_.c:751
msgid "Disconnect from Internet"
msgstr "Diskonnekteer van die internet"
-#: ../../netconnect.pm_.c:606 ../../netconnect_new.pm_.c:748
+#: ../../netconnect.pm_.c:753
#, fuzzy
msgid "Configure network connection (LAN or Internet)"
msgstr "Konfigureer internetkonneksie"
-#: ../../netconnect.pm_.c:609 ../../netconnect_new.pm_.c:751
+#: ../../netconnect.pm_.c:756
msgid "Internet connection & configuration"
msgstr "Internetkonneksie en konfigurasie"
-#: ../../netconnect.pm_.c:636 ../../netconnect.pm_.c:767
-#: ../../netconnect_new.pm_.c:778 ../../netconnect_new.pm_.c:909
+#: ../../netconnect.pm_.c:808 ../../netconnect.pm_.c:957
+#: ../../netconnect.pm_.c:967 ../../netconnect.pm_.c:982
#, fuzzy
-msgid ""
-"I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"
-msgstr "Ek gaan nou die netwerkkoppelvlak herlaai. Stem u saam?"
-
-#: ../../netconnect.pm_.c:653 ../../netconnect_new.pm_.c:795
-#, fuzzy
-msgid "Configure a normal modem connection"
-msgstr "Konfigureer internetkonneksie"
+msgid "Network Configuration Wizard"
+msgstr "Netwerkkonfigurasie"
-#: ../../netconnect.pm_.c:673 ../../netconnect_new.pm_.c:815
-#, fuzzy
-msgid "Configure an ISDN connection"
-msgstr "Konfigureer internetkonneksie"
+#: ../../netconnect.pm_.c:809
+msgid "External ISDN modem"
+msgstr "Eksterne ISDN-kaart"
-#: ../../netconnect.pm_.c:678 ../../netconnect_new.pm_.c:820
+#: ../../netconnect.pm_.c:809
msgid "Internal ISDN card"
msgstr "Interne ISDN-kaart"
-#: ../../netconnect.pm_.c:680 ../../netconnect_new.pm_.c:822
-msgid "External ISDN modem"
-msgstr "Eksterne ISDN-kaart"
+#: ../../netconnect.pm_.c:809
+msgid "What kind is your ISDN connection?"
+msgstr "Watter tipe is u ISDN-konneksie?"
-#: ../../netconnect.pm_.c:683 ../../netconnect.pm_.c:717
-#: ../../netconnect.pm_.c:729 ../../netconnect.pm_.c:753
-#: ../../netconnect.pm_.c:798 ../../netconnect_new.pm_.c:825
-#: ../../netconnect_new.pm_.c:859 ../../netconnect_new.pm_.c:871
-#: ../../netconnect_new.pm_.c:895 ../../netconnect_new.pm_.c:940
+#: ../../netconnect.pm_.c:830 ../../netconnect.pm_.c:879
msgid "Connect to the Internet"
msgstr "Konnekteer aan die internet"
-#: ../../netconnect.pm_.c:684 ../../netconnect_new.pm_.c:826
-msgid "What kind is your ISDN connection?"
-msgstr "Watter tipe is u ISDN-konneksie?"
+#: ../../netconnect.pm_.c:831
+#, fuzzy
+msgid ""
+"The most common way to connect with adsl is pppoe.\n"
+"Some connections use pptp, a few ones use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
+msgstr ""
+"Die mees algemene metode vir ADSL is om DHCP + pppoe te gebruik.\n"
+"Daar is wel sekere konneksie wat net DHCP gebruik. Indien u nie weet nie,\n"
+"kies 'gebruik pppoe'"
-#: ../../netconnect.pm_.c:703 ../../netconnect_new.pm_.c:845
+#: ../../netconnect.pm_.c:833
#, fuzzy
-msgid "Configure a DSL (or ADSL) connection"
-msgstr "Konfigureer internetkonneksie"
+msgid "use dhcp"
+msgstr "dhcpd"
-#: ../../netconnect.pm_.c:712 ../../netconnect_new.pm_.c:854
-msgid "France"
-msgstr "Frankryk"
+#: ../../netconnect.pm_.c:833
+msgid "use pppoe"
+msgstr "gebruik pppoe"
-#: ../../netconnect.pm_.c:714 ../../netconnect_new.pm_.c:856
-msgid "Other countries"
-msgstr "Ander lande"
+#: ../../netconnect.pm_.c:833
+#, fuzzy
+msgid "use pptp"
+msgstr "gebruik pppoe"
-#
-#: ../../netconnect.pm_.c:718 ../../netconnect_new.pm_.c:860
-msgid "In which country are you located ?"
-msgstr "In watter land is u?"
+#: ../../netconnect.pm_.c:843
+#, fuzzy, c-format
+msgid "I'm about to restart the network device %s. Do you agree?"
+msgstr "Ek gaan nou die netwerkkoppelvlak herlaai. Stem u saam?"
-#: ../../netconnect.pm_.c:724 ../../netconnect_new.pm_.c:866
-msgid "Alcatel modem"
-msgstr "Alcatel modem"
+#: ../../netconnect.pm_.c:880
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcpcd"
+msgstr ""
+"Watter DCHP-kliënt wil u gebruik?\n"
+"Verstek is dhcpcd"
-#: ../../netconnect.pm_.c:726 ../../netconnect_new.pm_.c:868
-msgid "ECI modem"
-msgstr "ECI modem"
+#: ../../netconnect.pm_.c:897
+#, fuzzy
+msgid "Network configuration"
+msgstr "Netwerkkonfigurasie"
-#: ../../netconnect.pm_.c:730 ../../netconnect_new.pm_.c:872
-msgid "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
-msgstr "Indien u ADSL-modem 'n Alcatel is, kies Alcatel, andersins ECI."
+#: ../../netconnect.pm_.c:898
+#, fuzzy
+msgid "Do you want to restart the network"
+msgstr "Wil u die konfigurasie toets?"
-#: ../../netconnect.pm_.c:748 ../../netconnect_new.pm_.c:890
-msgid "use pppoe"
-msgstr "gebruik pppoe"
+#: ../../netconnect.pm_.c:901
+#, fuzzy, c-format
+msgid ""
+"A problem occured while restarting the network: \n"
+"\n"
+"%s"
+msgstr "Wil u die konfigurasie toets?"
-#: ../../netconnect.pm_.c:750 ../../netconnect_new.pm_.c:892
-msgid "don't use pppoe"
-msgstr "moenie pppoe gebruik nie"
+#: ../../netconnect.pm_.c:931
+msgid ""
+"Because you are doing a network installation, your network is already "
+"configured.\n"
+"Click on Ok to keep your configuration, or cancel to reconfigure your "
+"Internet & Network connection.\n"
+msgstr ""
-#: ../../netconnect.pm_.c:754 ../../netconnect_new.pm_.c:896
+#: ../../netconnect.pm_.c:958
msgid ""
-"The most common way to connect with adsl is dhcp + pppoe.\n"
-"However, some connections only use dhcp.\n"
-"If you don't know, choose 'use pppoe'"
+"Welcome to The Network Configuration Wizard\n"
+"\n"
+"We are about to configure your internet/network connection.\n"
+"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
-"Die mees algemene metode vir ADSL is om DHCP + pppoe te gebruik.\n"
-"Daar is wel sekere konneksie wat net DHCP gebruik. Indien u nie weet nie,\n"
-"kies 'gebruik pppoe'"
-#: ../../netconnect.pm_.c:777 ../../netconnect_new.pm_.c:919
+#: ../../netconnect.pm_.c:960
#, fuzzy
-msgid "Configure a cable connection"
-msgstr "Konfigureer internetkonneksie"
+msgid "Choose the profile to configure"
+msgstr "Kies die verstek gebruiker:"
-#: ../../netconnect.pm_.c:799 ../../netconnect_new.pm_.c:941
-msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcpd"
+#: ../../netconnect.pm_.c:961
+msgid "Use auto detection"
msgstr ""
-"Watter DCHP-kliënt wil u gebruik?\n"
-"Verstek is dhcpd"
-#: ../../netconnect.pm_.c:812 ../../netconnect_new.pm_.c:954
+#: ../../netconnect.pm_.c:967 ../../printerdrake.pm_.c:19
+msgid "Detecting devices..."
+msgstr "Toestel word afgetas..."
+
+#: ../../netconnect.pm_.c:974
#, fuzzy
-msgid "Disable Internet Connection"
+msgid "Normal modem connection"
msgstr "Konfigureer internetkonneksie"
-#: ../../netconnect.pm_.c:823 ../../netconnect_new.pm_.c:965
-msgid "Configure local network"
-msgstr "Stel plaaslike netwerk op"
+#: ../../netconnect.pm_.c:974
+#, fuzzy, c-format
+msgid "detected on port %s"
+msgstr "Duplikaat hegpunt %s"
-#: ../../netconnect.pm_.c:827 ../../netconnect_new.pm_.c:969
+#: ../../netconnect.pm_.c:975
#, fuzzy
-msgid "Network configuration"
-msgstr "Netwerkkonfigurasie"
+msgid "ISDN connection"
+msgstr "Kabelkonneksie"
-#: ../../netconnect.pm_.c:828 ../../netconnect_new.pm_.c:970
+#: ../../netconnect.pm_.c:975
+#, c-format
+msgid "detected %s"
+msgstr ""
+
+#: ../../netconnect.pm_.c:976
#, fuzzy
-msgid "Do you want to restart the network"
-msgstr "Wil u die konfigurasie toets?"
+msgid "DSL (or ADSL) connection"
+msgstr "Konfigureer internetkonneksie"
-#: ../../netconnect.pm_.c:836 ../../netconnect_new.pm_.c:978
-msgid "Disable networking"
-msgstr "Sper netwerkstelsel"
+#: ../../netconnect.pm_.c:976
+#, fuzzy, c-format
+msgid "detected on interface %s"
+msgstr "Netwerkkoppelvlak"
-#: ../../netconnect.pm_.c:846 ../../netconnect_new.pm_.c:988
+#: ../../netconnect.pm_.c:977
#, fuzzy
-msgid "Configure the Internet connection / Configure local Network"
-msgstr "Konnekteer aan die internet / Konfigureer LAN"
+msgid "Cable connection"
+msgstr "Kabelkonneksie"
-#: ../../netconnect.pm_.c:847 ../../netconnect_new.pm_.c:989
-msgid ""
-"Local networking has already been configured.\n"
-"Do you want to:"
-msgstr "Plaaslike netwerk is alreeds opgestel: Wil u?"
+#: ../../netconnect.pm_.c:978
+#, fuzzy
+msgid "LAN connection"
+msgstr "Kabelkonneksie"
-#: ../../netconnect.pm_.c:848 ../../netconnect_new.pm_.c:990
+#: ../../netconnect.pm_.c:978
+msgid "ethernet card(s) detected"
+msgstr ""
+
+#: ../../netconnect.pm_.c:983
msgid "How do you want to connect to the Internet?"
msgstr "Hoe wil u aan die internet konnekteer?"
-#: ../../netconnect.pm_.c:870 ../../netconnect_new.pm_.c:1012
-msgid "Network Configuration"
-msgstr "Netwerkkonfigurasie"
-
-#: ../../netconnect.pm_.c:871 ../../netconnect_new.pm_.c:1013
+#: ../../netconnect.pm_.c:1000
msgid ""
-"Now that your Internet connection is configured,\n"
-"your computer can be configured to share its Internet connection.\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN).\n"
+"Congratulation, The network and internet configuration is finished.\n"
"\n"
-"Would you like to setup the Internet Connection Sharing?\n"
+"The configuration will now be applied to your system."
+msgstr ""
+
+#: ../../netconnect.pm_.c:1003
+msgid ""
+"After that is done, we recommend you to restart your X\n"
+"environnement to avoid hostname changing problem."
msgstr ""
-"Nou dat u internetkonfigurasie opgestel is,\n"
-"moet u die rekenaar opstel om dit te deel.\n"
-"LW: U benodig 'n ware netwerkkaart om 'n lokalearea netwerk (LAN) op te "
-"stel.\n"
-"\n"
-"Wil u internetdeling opstel?\n"
#: ../../network.pm_.c:253
msgid "no network card found"
msgstr "geen netwerkkaart gevind nie"
-#: ../../network.pm_.c:273 ../../network.pm_.c:340
+#: ../../network.pm_.c:277 ../../network.pm_.c:387
msgid "Configuring network"
msgstr "Stel netwerk op"
-#: ../../network.pm_.c:274
+#: ../../network.pm_.c:278
msgid ""
"Please enter your host name if you know it.\n"
"Some DHCP servers require the hostname to work.\n"
@@ -5157,15 +5598,16 @@ msgstr ""
"bv. ``myne.mywerk.co.za''."
#
-#: ../../network.pm_.c:278 ../../network.pm_.c:345
+#: ../../network.pm_.c:282 ../../network.pm_.c:392
msgid "Host name"
msgstr "Rekenaarnaam"
-#: ../../network.pm_.c:297
+#: ../../network.pm_.c:319
+#, fuzzy
msgid ""
"WARNING: This device has been previously configured to connect to the "
"Internet.\n"
-"Simply press OK to keep this device configured.\n"
+"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
msgstr ""
"WAARSKUWING: Die toestel is alreeds opgestel om aan die internette "
@@ -5173,7 +5615,7 @@ msgstr ""
"Druk OK om die toetsel so te hou.\n"
"Veranderinge aan onderstaande velde sal hierdie konfigurasie oorskryf."
-#: ../../network.pm_.c:302
+#: ../../network.pm_.c:324
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -5183,35 +5625,40 @@ msgstr ""
"Elke item moet as 'n IP-adres in dotdesimalenotasie\n"
"(1.2.3.4) gegee word."
-#: ../../network.pm_.c:311 ../../network.pm_.c:312
+#: ../../network.pm_.c:333 ../../network.pm_.c:334
#, c-format
msgid "Configuring network device %s"
msgstr "Konfigureer netwerktoestel %s"
-#: ../../network.pm_.c:314
-msgid "Automatic IP"
-msgstr "Outomatiese IP"
+#: ../../network.pm_.c:334
+msgid " (driver $module)"
+msgstr ""
#
-#: ../../network.pm_.c:314
+#: ../../network.pm_.c:336 ../../standalone/draknet_.c:231
+#: ../../standalone/draknet_.c:425
msgid "IP address"
msgstr "IP adres"
#
-#: ../../network.pm_.c:314
+#: ../../network.pm_.c:337 ../../standalone/draknet_.c:426
msgid "Netmask"
msgstr "Netmasker"
-#: ../../network.pm_.c:315
+#: ../../network.pm_.c:338
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network.pm_.c:321 ../../printerdrake.pm_.c:98
-#: ../../printerdrake.pm_.c:420
+#: ../../network.pm_.c:338
+msgid "Automatic IP"
+msgstr "Outomatiese IP"
+
+#: ../../network.pm_.c:359 ../../printerdrake.pm_.c:102
+#: ../../printerdrake.pm_.c:425
msgid "IP address should be in format 1.2.3.4"
msgstr "IP-adres moet in 1.2.3.4. formaat wees"
-#: ../../network.pm_.c:341
+#: ../../network.pm_.c:388
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -5223,46 +5670,43 @@ msgstr ""
"bv. ``myne.mywerk.co.za''.\n"
"U mag ook die netwerkhek byvoeg indien daar een is"
-#
-#: ../../network.pm_.c:346
+#: ../../network.pm_.c:393
msgid "DNS server"
msgstr "DNS bediener"
-#
-#: ../../network.pm_.c:347
+#: ../../network.pm_.c:394 ../../standalone/draknet_.c:563
msgid "Gateway"
msgstr "Portaal"
-#
-#: ../../network.pm_.c:348
+#: ../../network.pm_.c:396
msgid "Gateway device"
msgstr "Netwerkportaaltoestel"
-#: ../../network.pm_.c:358
+#: ../../network.pm_.c:407
msgid "Proxies configuration"
msgstr "Instaanbedienerkonfigurasie"
-#: ../../network.pm_.c:359
+#: ../../network.pm_.c:408
msgid "HTTP proxy"
msgstr "HTTP instaanbediener"
-#: ../../network.pm_.c:360
+#: ../../network.pm_.c:409
msgid "FTP proxy"
msgstr "FTP instaanbediener"
-#: ../../network.pm_.c:366
+#: ../../network.pm_.c:412
msgid "Proxy should be http://..."
msgstr "Instaanbediener moet begin met http://"
-#: ../../network.pm_.c:367
+#: ../../network.pm_.c:413
msgid "Proxy should be ftp://..."
msgstr "Instaanbediener moet begin met ftp://"
-#: ../../partition_table.pm_.c:540
+#: ../../partition_table.pm_.c:560
msgid "Extended partition not supported on this platform"
msgstr "Ekstensiepartisie word nie op hierdie platform ondersteun nie"
-#: ../../partition_table.pm_.c:558
+#: ../../partition_table.pm_.c:578
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -5272,121 +5716,98 @@ msgstr ""
"Die enigste oplossing is om die primęre partisie te skuif sodat die gat\n"
"langs die ekstensie partisies is"
-#: ../../partition_table.pm_.c:651
+#: ../../partition_table.pm_.c:672
#, c-format
msgid "Error reading file %s"
msgstr "Fout met die les van lęer %s"
-#: ../../partition_table.pm_.c:658
+#: ../../partition_table.pm_.c:679
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Herstel van léer %s het gefaal: %s"
-#: ../../partition_table.pm_.c:660
+#: ../../partition_table.pm_.c:681
msgid "Bad backup file"
msgstr "Korrupte rugsteunlęer"
-#: ../../partition_table.pm_.c:681
+#: ../../partition_table.pm_.c:703
#, c-format
msgid "Error writing to file %s"
msgstr "Fout in die skryf van %s"
-#: ../../pkgs.pm_.c:20
-msgid "mandatory"
-msgstr "verpligtend"
+#: ../../partition_table_raw.pm_.c:161
+msgid ""
+"Something bad is happening on your 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 trash"
+msgstr ""
-#: ../../pkgs.pm_.c:21
+#: ../../pkgs.pm_.c:24
msgid "must have"
msgstr "benodig"
-#: ../../pkgs.pm_.c:22
+#: ../../pkgs.pm_.c:25
msgid "important"
msgstr "belangrik"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "very nice"
msgstr "baie oulik"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "nice"
msgstr "oulik"
-#: ../../pkgs.pm_.c:26 ../../pkgs.pm_.c:27
-msgid "interesting"
-msgstr "interessant"
-
-#: ../../pkgs.pm_.c:28 ../../pkgs.pm_.c:29 ../../pkgs.pm_.c:30
-#: ../../pkgs.pm_.c:31
+#: ../../pkgs.pm_.c:28
msgid "maybe"
msgstr "moontlik"
-#: ../../pkgs.pm_.c:34
-msgid "i18n (important)"
-msgstr "i18n (belangrik)"
-
-#: ../../pkgs.pm_.c:35
-msgid "i18n (very nice)"
-msgstr "i18n (baie oulik)"
-
-#: ../../pkgs.pm_.c:36
-msgid "i18n (nice)"
-msgstr "i18n (oulik)"
-
-#: ../../printer.pm_.c:19
+#: ../../printer.pm_.c:20
msgid "Local printer"
msgstr "Plaaslike drukker"
#
-#: ../../printer.pm_.c:20
+#: ../../printer.pm_.c:21
msgid "Remote printer"
msgstr "Eksterne drukker"
#
-#: ../../printer.pm_.c:21 ../../printerdrake.pm_.c:410
-msgid "Remote CUPS server"
-msgstr "Verwyder CUPS-bediener"
-
-#
-#: ../../printer.pm_.c:22
+#: ../../printer.pm_.c:23
msgid "Remote lpd server"
msgstr "Eksterne lpd-bediener"
#
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:24
msgid "Network printer (socket)"
msgstr "Netwerkdrukker (sok)"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:25
msgid "SMB/Windows 95/98/NT"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:26
msgid "NetWare"
msgstr "NetWare"
-#: ../../printer.pm_.c:26 ../../printerdrake.pm_.c:154
-#: ../../printerdrake.pm_.c:156
+#: ../../printer.pm_.c:27 ../../printerdrake.pm_.c:158
+#: ../../printerdrake.pm_.c:160
msgid "Printer Device URI"
msgstr "Drukkertoestel URI"
#: ../../printerdrake.pm_.c:19
-msgid "Detecting devices..."
-msgstr "Toestel word afgetas..."
-
-#: ../../printerdrake.pm_.c:19
msgid "Test ports"
msgstr "Toets poorte"
-#: ../../printerdrake.pm_.c:35
+#: ../../printerdrake.pm_.c:40
#, c-format
msgid "A printer, model \"%s\", has been detected on "
msgstr "'n Drukker, model \"%s\", is opgespoor op "
-#: ../../printerdrake.pm_.c:48
+#: ../../printerdrake.pm_.c:52
msgid "Local Printer Device"
msgstr "Plaaslikte drukkertoestel"
-#: ../../printerdrake.pm_.c:49
+#: ../../printerdrake.pm_.c:53
msgid ""
"What device is your printer connected to \n"
"(note that /dev/lp0 is equivalent to LPT1:)?\n"
@@ -5394,15 +5815,15 @@ msgstr ""
"Watter toestel is die drukker aan gekoppel?\n"
"(let op dat /dev/lp0 ekwiwalent is aan LPT1:)\n"
-#: ../../printerdrake.pm_.c:51
+#: ../../printerdrake.pm_.c:55
msgid "Printer Device"
msgstr "Drukkertoestel:"
-#: ../../printerdrake.pm_.c:70
+#: ../../printerdrake.pm_.c:74
msgid "Remote lpd Printer Options"
msgstr "Eksterne lpd drukkeropsies"
-#: ../../printerdrake.pm_.c:71
+#: ../../printerdrake.pm_.c:75
msgid ""
"To use a remote lpd print queue, you need to supply\n"
"the hostname of the printer server and the queue name\n"
@@ -5412,19 +5833,19 @@ msgstr ""
"van die drukkkerbediener en die naam van die drukkertou\n"
"nodig."
-#: ../../printerdrake.pm_.c:74
+#: ../../printerdrake.pm_.c:78
msgid "Remote hostname"
msgstr "Eksterne bediener:"
-#: ../../printerdrake.pm_.c:75
+#: ../../printerdrake.pm_.c:79
msgid "Remote queue"
msgstr "Eksterne drukkertou"
-#: ../../printerdrake.pm_.c:84
+#: ../../printerdrake.pm_.c:88
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) drukkeropsies"
-#: ../../printerdrake.pm_.c:85
+#: ../../printerdrake.pm_.c:89
msgid ""
"To print to a SMB printer, you need to provide the\n"
"SMB host name (Note! It may be different from its\n"
@@ -5437,27 +5858,27 @@ msgstr ""
"nie); moontlik die IP adres van die drukkerbediener; die drukkernaam; \n"
"toepaslike gebruikerskode en wagwoord; werkgroepnaam."
-#: ../../printerdrake.pm_.c:90
+#: ../../printerdrake.pm_.c:94
msgid "SMB server host"
msgstr "SMB-bedienernaam"
-#: ../../printerdrake.pm_.c:91
+#: ../../printerdrake.pm_.c:95
msgid "SMB server IP"
msgstr "SMB-bediener IP:"
-#: ../../printerdrake.pm_.c:92
+#: ../../printerdrake.pm_.c:96
msgid "Share name"
msgstr "Drukkernaam:"
-#: ../../printerdrake.pm_.c:95
+#: ../../printerdrake.pm_.c:99
msgid "Workgroup"
msgstr "Werkgroep:"
-#: ../../printerdrake.pm_.c:120
+#: ../../printerdrake.pm_.c:124
msgid "NetWare Printer Options"
msgstr "NetWare drukkeropsies"
-#: ../../printerdrake.pm_.c:121
+#: ../../printerdrake.pm_.c:125
msgid ""
"To print to a NetWare printer, you need to provide the\n"
"NetWare print server name (Note! it may be different from its\n"
@@ -5469,19 +5890,19 @@ msgstr ""
"rekenaarnaam nie); moontlik die IP adres van die drukkerbediener;\n"
"die drukkernaam; toepaslike gebruikerskode en wagwoord."
-#: ../../printerdrake.pm_.c:125
+#: ../../printerdrake.pm_.c:129
msgid "Printer Server"
msgstr "Drukkerbediener"
-#: ../../printerdrake.pm_.c:126
+#: ../../printerdrake.pm_.c:130
msgid "Print Queue Name"
msgstr "Drukkertounaam"
-#: ../../printerdrake.pm_.c:138
+#: ../../printerdrake.pm_.c:142
msgid "Socket Printer Options"
msgstr "Sokdrukkeropsies"
-#: ../../printerdrake.pm_.c:139
+#: ../../printerdrake.pm_.c:143
msgid ""
"To print to a socket printer, you need to provide the\n"
"hostname of the printer and optionally the port number."
@@ -5489,31 +5910,31 @@ msgstr ""
"Om aan 'n sokdrukker te konnekteer, moet u die rekenaarnaam van die\n"
"drukker voorsien en dalk ook 'n poortnommer."
-#: ../../printerdrake.pm_.c:141
+#: ../../printerdrake.pm_.c:145
msgid "Printer Hostname"
msgstr "Drukkerrekenaarnaam"
-#: ../../printerdrake.pm_.c:142 ../../printerdrake.pm_.c:417
+#: ../../printerdrake.pm_.c:146 ../../printerdrake.pm_.c:422
msgid "Port"
msgstr "Poort"
-#: ../../printerdrake.pm_.c:155
+#: ../../printerdrake.pm_.c:159
msgid "You can specify directly the URI to access the printer with CUPS."
msgstr "U kan die URI, om die drukker via CUPS te gebruik, direk spesifiseer"
-#: ../../printerdrake.pm_.c:188 ../../printerdrake.pm_.c:240
+#: ../../printerdrake.pm_.c:192 ../../printerdrake.pm_.c:244
msgid "What type of printer do you have?"
msgstr "Oor watter tipe drukker beskik u?"
-#: ../../printerdrake.pm_.c:200 ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:204 ../../printerdrake.pm_.c:305
msgid "Do you want to test printing?"
msgstr "Wil u drukwerk toets?"
-#: ../../printerdrake.pm_.c:203 ../../printerdrake.pm_.c:318
+#: ../../printerdrake.pm_.c:207 ../../printerdrake.pm_.c:316
msgid "Printing test page(s)..."
msgstr "Toetsbladsy(e) word gedruk..."
-#: ../../printerdrake.pm_.c:210 ../../printerdrake.pm_.c:326
+#: ../../printerdrake.pm_.c:214 ../../printerdrake.pm_.c:324
#, c-format
msgid ""
"Test page(s) have been sent to the printer daemon.\n"
@@ -5530,7 +5951,7 @@ msgstr ""
"\n"
"Het dit reg gedruk?"
-#: ../../printerdrake.pm_.c:214 ../../printerdrake.pm_.c:330
+#: ../../printerdrake.pm_.c:218 ../../printerdrake.pm_.c:328
msgid ""
"Test page(s) have been sent to the printer daemon.\n"
"This may take a little time before printer start.\n"
@@ -5540,83 +5961,79 @@ msgstr ""
"Dit mag 'n tydjie neem voordat drukwerk begin.\n"
"Het dit reg gedruk?"
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:234
msgid "Yes, print ASCII test page"
msgstr "Ja, druk die ASCII toetsbladsy"
-#: ../../printerdrake.pm_.c:231
+#: ../../printerdrake.pm_.c:235
msgid "Yes, print PostScript test page"
msgstr "Ja, druk die PostScript toetsbladsy"
-#: ../../printerdrake.pm_.c:232
+#: ../../printerdrake.pm_.c:236
msgid "Yes, print both test pages"
msgstr "Ja, druk albei toetsbladsye"
-#: ../../printerdrake.pm_.c:239
+#: ../../printerdrake.pm_.c:243
msgid "Configure Printer"
msgstr "Stel drukker op"
-#: ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:273
msgid "Printer options"
msgstr "Drukkeropsies"
-#: ../../printerdrake.pm_.c:273
+#: ../../printerdrake.pm_.c:274
msgid "Paper Size"
msgstr "Papiergrootte"
-#: ../../printerdrake.pm_.c:274
+#: ../../printerdrake.pm_.c:275
msgid "Eject page after job?"
msgstr "Stoot papier uit na voltooiing?"
-#: ../../printerdrake.pm_.c:279
+#: ../../printerdrake.pm_.c:280
msgid "Uniprint driver options"
msgstr "Uniprint dryweropsies"
-#: ../../printerdrake.pm_.c:280
+#: ../../printerdrake.pm_.c:281
msgid "Color depth options"
msgstr "Kleurdiepte opsies"
-#: ../../printerdrake.pm_.c:282
+#: ../../printerdrake.pm_.c:283
msgid "Print text as PostScript?"
msgstr "Druk teks as PostScript?"
-#: ../../printerdrake.pm_.c:283
-msgid "Reverse page order"
-msgstr "Omgekeerde bladsyorde"
-
#: ../../printerdrake.pm_.c:285
msgid "Fix stair-stepping text?"
msgstr "Korrigeer trapsgewyse teks?"
-#: ../../printerdrake.pm_.c:288
+#: ../../printerdrake.pm_.c:287
msgid "Number of pages per output pages"
msgstr "Aantal bladsye per uitsetblad?"
-#: ../../printerdrake.pm_.c:289
+#: ../../printerdrake.pm_.c:288
msgid "Right/Left margins in points (1/72 of inch)"
msgstr "Regs/Links kantlyne in punte (1/72 van 'n duim)"
-#: ../../printerdrake.pm_.c:290
+#: ../../printerdrake.pm_.c:289
msgid "Top/Bottom margins in points (1/72 of inch)"
msgstr "Bo/Onder kantlyne in punte (1/72 van 'n duim)"
-#: ../../printerdrake.pm_.c:293
+#: ../../printerdrake.pm_.c:291
msgid "Extra GhostScript options"
msgstr "Ekstra GhostScriptopsies"
-#: ../../printerdrake.pm_.c:296
+#: ../../printerdrake.pm_.c:293
msgid "Extra Text options"
msgstr "Ekstra teksopsies"
-#: ../../printerdrake.pm_.c:346
-msgid "Printer"
-msgstr "Drukker"
+#: ../../printerdrake.pm_.c:295
+msgid "Reverse page order"
+msgstr "Omgekeerde bladsyorde"
-#: ../../printerdrake.pm_.c:347
+#: ../../printerdrake.pm_.c:345
msgid "Would you like to configure a printer?"
msgstr "Wil u 'n drukker opstel?"
-#: ../../printerdrake.pm_.c:350
+#: ../../printerdrake.pm_.c:351
msgid ""
"Here are the following print queues.\n"
"You can add some more or change the existing ones."
@@ -5625,29 +6042,29 @@ msgstr ""
"U kan byvoeg or verwyder soos nodig."
#
-#: ../../printerdrake.pm_.c:365
+#: ../../printerdrake.pm_.c:370
msgid "CUPS starting"
msgstr "CUPS word gelaai"
-#: ../../printerdrake.pm_.c:365
+#: ../../printerdrake.pm_.c:370
msgid "Reading CUPS drivers database..."
msgstr "CUPS-drywerdatagbasis word gelees"
-#: ../../printerdrake.pm_.c:379 ../../printerdrake.pm_.c:444
-#: ../../printerdrake.pm_.c:457 ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:384 ../../printerdrake.pm_.c:450
+#: ../../printerdrake.pm_.c:471 ../../printerdrake.pm_.c:479
msgid "Select Printer Connection"
msgstr "Kies drukkerkonneksie"
-#: ../../printerdrake.pm_.c:380 ../../printerdrake.pm_.c:458
+#: ../../printerdrake.pm_.c:385 ../../printerdrake.pm_.c:472
msgid "How is the printer connected?"
msgstr "Hoe is die drukker gekonekteer?"
#
-#: ../../printerdrake.pm_.c:387
+#: ../../printerdrake.pm_.c:392
msgid "Select Remote Printer Connection"
msgstr "Kies eksterne drukkerkonneksie"
-#: ../../printerdrake.pm_.c:388
+#: ../../printerdrake.pm_.c:393
msgid ""
"With a remote CUPS server, you do not have to configure\n"
"any printer here; printers will be automatically detected.\n"
@@ -5657,7 +6074,7 @@ msgstr ""
"op te stel nie; drukkers wod outomaties bespeur.\n"
"Indien u twyfel, kies \"Eksterne CUPS-bediener\"."
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:416
#, fuzzy
msgid ""
"With a remote CUPS server, you do not have to configure\n"
@@ -5670,20 +6087,25 @@ msgstr ""
"op te stel nie; drukkers wod outomaties bespeur.\n"
"Indien u twyfel, kies \"Eksterne CUPS-bediener\"."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:421
#, fuzzy
msgid "CUPS server IP"
msgstr "SMB-bediener IP:"
-#: ../../printerdrake.pm_.c:424
+#: ../../printerdrake.pm_.c:429
msgid "Port number should be numeric"
msgstr ""
-#: ../../printerdrake.pm_.c:445 ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:451 ../../printerdrake.pm_.c:480
msgid "Remove queue"
msgstr "Verwyder drukkertou"
-#: ../../printerdrake.pm_.c:446
+#: ../../printerdrake.pm_.c:454
+msgid ""
+"Name of printer should contains only letters, numbers and the underscore"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:461
msgid ""
"Every printer need a name (for example lp).\n"
"Other parameters such as the description of the printer or its location\n"
@@ -5694,19 +6116,19 @@ msgstr ""
"Ander parameters soos 'n beskrywing en 'n ligging kan ook gegee word.\n"
"Wat is die drukker se naam en wat is die konneksietipe?"
-#: ../../printerdrake.pm_.c:450
+#: ../../printerdrake.pm_.c:465
msgid "Name of printer"
msgstr "Drukkernaam"
-#: ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:466
msgid "Description"
msgstr "Beskrywing"
-#: ../../printerdrake.pm_.c:452
+#: ../../printerdrake.pm_.c:467
msgid "Location"
msgstr "Ligging"
-#: ../../printerdrake.pm_.c:465
+#: ../../printerdrake.pm_.c:482
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"
@@ -5717,45 +6139,49 @@ msgstr ""
"(baie keer 'lp') and 'n gekoppelde spoelgids. Watter naam en\n"
"spoelgids moet gebruik word?"
-#: ../../printerdrake.pm_.c:468
+#: ../../printerdrake.pm_.c:489
msgid "Name of queue"
msgstr "Naam van drukkertou"
-#: ../../printerdrake.pm_.c:469
+#: ../../printerdrake.pm_.c:490
msgid "Spool directory"
msgstr "Spoelgids"
-#: ../../printerdrake.pm_.c:470
+#: ../../printerdrake.pm_.c:491
msgid "Printer Connection"
msgstr "Drukkerkonneksie"
-#: ../../raid.pm_.c:32
+#: ../../raid.pm_.c:33
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Kan nie 'n partisie by geformatteerde RAID md%d byvoeg nie"
-#: ../../raid.pm_.c:102
+#: ../../raid.pm_.c:103
msgid "Can't write file $file"
msgstr "Kan nie lęer $file skryf nie"
-#: ../../raid.pm_.c:127
+#: ../../raid.pm_.c:128
msgid "mkraid failed"
msgstr "mkraid het gefaal"
-#: ../../raid.pm_.c:127
+#: ../../raid.pm_.c:128
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid het gefaal. Dalk is 'raidtools' nie beskikbaar nie."
-#: ../../raid.pm_.c:143
+#: ../../raid.pm_.c:144
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Nie genoeg partisies vir RAID vlak %d nie\n"
-#: ../../services.pm_.c:15
+#: ../../services.pm_.c:16
+msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
+msgstr ""
+
+#: ../../services.pm_.c:17
msgid "Anacron a periodic command scheduler."
msgstr "Anacron is skeduleerder vir periodiese instruksies."
-#: ../../services.pm_.c:16
+#: ../../services.pm_.c:18
msgid ""
"apmd is used for monitoring batery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
@@ -5765,7 +6191,7 @@ msgstr ""
"Dit kan ook gebruik word om die rekenaar af te bring wanneer die battery "
"swak is."
-#: ../../services.pm_.c:18
+#: ../../services.pm_.c:20
msgid ""
"Runs commands scheduled by the at command at the time specified when\n"
"at was run, and runs batch commands when the load average is low enough."
@@ -5773,7 +6199,7 @@ msgstr ""
"Loop instruksies deur 'at' geskeduleer op die tyd deur 'at' gespesifiseer. "
"Loop ookinstruksiebondels wanneer die stelsellas laag genoeg is."
-#: ../../services.pm_.c:20
+#: ../../services.pm_.c:22
msgid ""
"cron is a standard UNIX program that runs user-specified programs\n"
"at periodic scheduled times. vixie cron adds a number of features to the "
@@ -5786,7 +6212,7 @@ msgstr ""
"by die standaard UNIX cron, insluitende beter sekuriteit en 'n kragtiger "
"konfigurasie."
-#: ../../services.pm_.c:23
+#: ../../services.pm_.c:25
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
@@ -5797,7 +6223,13 @@ msgstr ""
"Midnight Commander. Dit laat muisgebaseerde knip-en-plak aksies op die\n"
"konsole toe asook opspringkieskaarte."
-#: ../../services.pm_.c:26
+#: ../../services.pm_.c:28
+msgid ""
+"HardDrake runs a hardware probe, and optionally configures\n"
+"new/changed hardware."
+msgstr ""
+
+#: ../../services.pm_.c:30
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files\n"
"and CGI."
@@ -5805,7 +6237,7 @@ msgstr ""
"Apache is 'n WWW-bediener.\n"
"Dit kan HTML-lęers uitstuur en CGI's hanteer"
-#: ../../services.pm_.c:28
+#: ../../services.pm_.c:32
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
@@ -5821,7 +6253,13 @@ msgstr ""
"waarvoor\n"
"inetd verantwoordelik is."
-#: ../../services.pm_.c:32
+#: ../../services.pm_.c:36
+msgid ""
+"Launch packet filtering for Linux kernel 2.2 series, to set\n"
+"up a firewall to protect your machine from network attacks."
+msgstr ""
+
+#: ../../services.pm_.c:38
msgid ""
"This package loads the selected keyboard map as set in\n"
"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
@@ -5833,7 +6271,23 @@ msgstr ""
"dit\n"
"op meeste rekenaars ongesper laat."
-#: ../../services.pm_.c:35
+#: ../../services.pm_.c:41
+msgid ""
+"Automatic regeneration of kernel header in /boot for\n"
+"/usr/include/linux/{autoconf,version}.h"
+msgstr ""
+
+#: ../../services.pm_.c:43
+msgid "Automatic detection and configuration of hardware at boot."
+msgstr ""
+
+#: ../../services.pm_.c:44
+msgid ""
+"Linuxconf will sometimes arrange to perform various tasks\n"
+"at boot-time to maintain the system configuration."
+msgstr ""
+
+#: ../../services.pm_.c:46
msgid ""
"lpd is the print daemon required for lpr to work properly. It is\n"
"basically a server that arbitrates print jobs to printer(s)."
@@ -5841,7 +6295,13 @@ msgstr ""
"lpd is die drukkerdiensprogram en is nodig vir lpr om te funksioneer.\n"
"Dit is 'n diens wat drukstukke na drukkers toe reguleer."
-#: ../../services.pm_.c:37
+#: ../../services.pm_.c:48
+msgid ""
+"Linux Virtual Server, used to build a high-performance and highly\n"
+"available server."
+msgstr ""
+
+#: ../../services.pm_.c:50
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
"host names to IP addresses."
@@ -5849,7 +6309,7 @@ msgstr ""
"named (BIND) is die domeinnaamdiens (DNS) wat gebruik word om\n"
"rekenaarname na IP-adresse toe om te skakel."
-#: ../../services.pm_.c:39
+#: ../../services.pm_.c:52
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
@@ -5857,7 +6317,7 @@ msgstr ""
"Heg en ontheg all netwerklęerstels (NFS), SMB (Lan Manger/Windows)\n"
"en NCP (Netware) hegpunte."
-#: ../../services.pm_.c:41
+#: ../../services.pm_.c:54
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
@@ -5865,7 +6325,7 @@ msgstr ""
"Aktiveer/Deaktiveer all netwerkkoppelvlakke wat opgestel is om by\n"
"herlaaityf te begin."
-#: ../../services.pm_.c:43
+#: ../../services.pm_.c:56
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
"This service provides NFS server functionality, which is configured via the\n"
@@ -5875,7 +6335,7 @@ msgstr ""
"Hierdie diens voorsien NFS-bedienerfunksionaliteit. Dit word via\n"
"die /etc/exports lęer opgestel."
-#: ../../services.pm_.c:46
+#: ../../services.pm_.c:59
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP\n"
"networks. This service provides NFS file locking functionality."
@@ -5883,7 +6343,17 @@ msgstr ""
"NFS is 'n populęre protokol vir lęerdeling oor TCP/IP netwerke.\n"
"Hierdie diens vorosien die NFS-lęersluitfunksionaliteit."
-#: ../../services.pm_.c:48
+#: ../../services.pm_.c:61
+msgid ""
+"Automatically switch on numlock key locker under console\n"
+"and XFree at boot."
+msgstr ""
+
+#: ../../services.pm_.c:63
+msgid "Support the OKI 4w and compatible winprinters."
+msgstr ""
+
+#: ../../services.pm_.c:64
msgid ""
"PCMCIA support is usually to support things like ethernet and\n"
"modems in laptops. It won't get started unless configured so it is safe to "
@@ -5895,7 +6365,7 @@ msgstr ""
"gelaai word, behalwe as dit konfigureer is nie en dit is derhalwe\n"
"veilig om op rekenaars te hę wat dit nie nodig het nie."
-#: ../../services.pm_.c:51
+#: ../../services.pm_.c:67
msgid ""
"The portmapper manages RPC connections, which are used by\n"
"protocols such as NFS and NIS. The portmap server must be running on "
@@ -5906,7 +6376,7 @@ msgstr ""
"gebruik word. Portmap moet loop op rekenaars wat as bedieners vir hierdie\n"
"protokolle, en ander protokolle wat die RPC meganisme gebruik, dien."
-#: ../../services.pm_.c:54
+#: ../../services.pm_.c:70
msgid ""
"Postfix is a Mail Transport Agent, which is the program that\n"
"moves mail from one machine to another."
@@ -5914,7 +6384,7 @@ msgstr ""
"POstfix is 'n E-posoordragagent (MTA). Dit is die program wat E-pos\n"
"van een bediener na 'n ander oordra."
-#: ../../services.pm_.c:56
+#: ../../services.pm_.c:72
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
@@ -5922,7 +6392,13 @@ msgstr ""
"Stoor en herstel die stelselentropiepoel vir hoë kwaliteit,\n"
"lukraaknommergenerasie."
-#: ../../services.pm_.c:58
+#: ../../services.pm_.c:74
+msgid ""
+"Assign raw devices to block devices (such as hard drive\n"
+"partitions), for the use of applications such as Oracle"
+msgstr ""
+
+#: ../../services.pm_.c:76
msgid ""
"The routed daemon allows for automatic IP router table updated via\n"
"the RIP protocol. While RIP is widely used on small networks, more complex\n"
@@ -5932,7 +6408,7 @@ msgstr ""
"via die RIP protokol. Alhoewel RIP baie gebruik word in klein netwerke, is\n"
"meer komplekse protokolle nodig vir komplekse netwerke."
-#: ../../services.pm_.c:61
+#: ../../services.pm_.c:79
msgid ""
"The rstat protocol allows users on a network to retrieve\n"
"performance metrics for any machine on that network."
@@ -5940,7 +6416,7 @@ msgstr ""
"Die 'rstat' protokol laat gebruikers op 'n netwerk toe om\n"
"werksverrigtinginligting oor enige rekenaar op die netwerk te onttrek."
-#: ../../services.pm_.c:63
+#: ../../services.pm_.c:81
msgid ""
"The rusers protocol allows users on a network to identify who is\n"
"logged in on other responding machines."
@@ -5948,7 +6424,7 @@ msgstr ""
"Die 'rusers' protokol laat netwerkgebruikers toe om te bepaal wie\n"
"aangeteken is op ander samewerkende rekenaars."
-#: ../../services.pm_.c:65
+#: ../../services.pm_.c:83
msgid ""
"The rwho protocol lets remote users get a list of all of the users\n"
"logged into a machine running the rwho daemon (similiar to finger)."
@@ -5957,7 +6433,11 @@ msgstr ""
"ingeteken is op 'n rkeneaar wat die 'rwho' diensprogram loop. (Amper soos "
"'finger')."
-#: ../../services.pm_.c:67
+#: ../../services.pm_.c:85
+msgid "Launch the sound system on your machine"
+msgstr ""
+
+#: ../../services.pm_.c:86
msgid ""
"Syslog is the facility by which many daemons use to log messages\n"
"to various system log files. It is a good idea to always run syslog."
@@ -5965,19 +6445,45 @@ msgstr ""
"Syslog is die fasiliteit wat baie diensprogramme gebruik om boodskappe\n"
"te log na 'n verskeidenheid loglęers. Dit is altyd goed om syslog te loop."
-#: ../../services.pm_.c:69
-msgid "This startup script try to load your modules for your usb mouse."
-msgstr "Hierdie skrip laai de nodige modules vir 'n USB-muis."
+#: ../../services.pm_.c:88
+msgid "Load the drivers for your usb devices."
+msgstr ""
-#: ../../services.pm_.c:70
-msgid "Starts and stops the X Font Server at boot time and shutdown."
+#: ../../services.pm_.c:89
+#, fuzzy
+msgid "Starts the X Font Server (this is mandatory for XFree to run)."
msgstr "Stop en begin die X-fontbediener met herlaaityd en afsittyd."
-#: ../../services.pm_.c:99
+#: ../../services.pm_.c:118
msgid "Choose which services should be automatically started at boot time"
msgstr "Kies watter dienste moet outomaties begin met herlaaityd."
-#: ../../standalone/diskdrake_.c:61
+#: ../../services.pm_.c:137
+#, fuzzy
+msgid "running"
+msgstr "Waarskuwing"
+
+#: ../../services.pm_.c:137
+#, fuzzy
+msgid "stopped"
+msgstr "Aanlas"
+
+#: ../../services.pm_.c:151
+msgid "Services and deamons"
+msgstr ""
+
+#: ../../services.pm_.c:156
+msgid ""
+"No additionnal information\n"
+"about this service, sorry."
+msgstr ""
+
+#: ../../services.pm_.c:163
+#, fuzzy
+msgid "On boot"
+msgstr "Yaboot"
+
+#: ../../standalone/diskdrake_.c:67
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
@@ -5985,31 +6491,15 @@ msgstr ""
"Ek kan nie u partisietabel lees nie, dit is te korrup.\n"
"Ek sal die nodige partisies skoonmak."
-#: ../../standalone/drakboot_.c:25
-msgid "Configure LILO/GRUB"
-msgstr "Stel LILO/GRUB op"
-
-#: ../../standalone/drakboot_.c:26
-msgid "Create a boot floppy"
-msgstr "Maar 'n herlaaiskyf"
-
-#: ../../standalone/drakboot_.c:28
-msgid "Format floppy"
-msgstr "Formatteer floppie"
-
-#: ../../standalone/drakboot_.c:40
-msgid "Choice"
-msgstr "Keuse"
-
-#: ../../standalone/drakboot_.c:59
-msgid "Installation of LILO failed. The following error occured:"
-msgstr "LILO installasie het gefaal a.g.v. hierdie fout: "
+#: ../../standalone/drakgw_.c:37 ../../standalone/drakgw_.c:180
+msgid "Internet Connection Sharing"
+msgstr "Internetkonneksiedeling"
-#: ../../standalone/drakgw_.c:103
+#: ../../standalone/drakgw_.c:118
msgid "Internet Connection Sharing currently enabled"
msgstr "Internetkonneksiedeling is ontsper"
-#: ../../standalone/drakgw_.c:104
+#: ../../standalone/drakgw_.c:119
#, fuzzy
msgid ""
"The setup of Internet connection sharing has already been done.\n"
@@ -6018,26 +6508,35 @@ msgid ""
"What would you like to do?"
msgstr "Die opstelling van die Internetkonnkesiedeling is alreeds gedoen.\n"
-#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:108
+#: ../../standalone/drakgw_.c:123
#, fuzzy
msgid "disable"
msgstr "Tabel"
-#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:118
-#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:137
+#: ../../standalone/drakgw_.c:123 ../../standalone/drakgw_.c:148
msgid "dismiss"
msgstr ""
-#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:126
+#: ../../standalone/drakgw_.c:123 ../../standalone/drakgw_.c:148
#, fuzzy
msgid "reconfigure"
msgstr "Stel X op"
-#: ../../standalone/drakgw_.c:122
+#: ../../standalone/drakgw_.c:126
+#, fuzzy
+msgid "Disabling servers..."
+msgstr "Toestel word afgetas..."
+
+#: ../../standalone/drakgw_.c:134
+#, fuzzy
+msgid "Internet connection sharing is now disabled."
+msgstr "Internetkonneksiedeling is gesper"
+
+#: ../../standalone/drakgw_.c:143
msgid "Internet Connection Sharing currently disabled"
msgstr "Internetkonneksiedeling is gesper"
-#: ../../standalone/drakgw_.c:123
+#: ../../standalone/drakgw_.c:144
#, fuzzy
msgid ""
"The setup of Internet connection sharing has already been done.\n"
@@ -6046,28 +6545,37 @@ msgid ""
"What would you like to do?"
msgstr "Die opstelling van die Internetkonnkesiedeling is alreeds gedoen.\n"
-#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:127
+#: ../../standalone/drakgw_.c:148
#, fuzzy
msgid "enable"
msgstr "Tabel"
-#: ../../standalone/drakgw_.c:141
+#: ../../standalone/drakgw_.c:155
+msgid "Enabling servers..."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:160
+#, fuzzy
+msgid "Internet connection sharing is now enabled."
+msgstr "Internetkonneksiedeling is ontsper"
+
+#: ../../standalone/drakgw_.c:168
msgid "Config file content could not be interpreted."
msgstr "Konfigurasielęerinhoud is onverstaanbaar"
-#: ../../standalone/drakgw_.c:151
-msgid "Internet Connection Sharing"
-msgstr "Internetkonneksiedeling"
+#: ../../standalone/drakgw_.c:168
+msgid "Unrecognized config file"
+msgstr ""
-#: ../../standalone/drakgw_.c:152
+#: ../../standalone/drakgw_.c:181
#, fuzzy
msgid ""
-"Your computer can be configured to share its Internet connection.\n"
+"You are about to configure your computer to share its Internet connection.\n"
+"With that feature, other computers on your local network will be able to use "
+"this computer's Internet connection.\n"
"\n"
"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN).\n"
-"\n"
-"Would you like to setup the Internet Connection Sharing?"
+"(LAN)."
msgstr ""
"Nou dat u internetkonfigurasie opgestel is,\n"
"moet u die rekenaar opstel om dit te deel.\n"
@@ -6076,16 +6584,21 @@ msgstr ""
"\n"
"Wil u internetdeling opstel?\n"
-#: ../../standalone/drakgw_.c:177
-#, fuzzy
-msgid "using module"
-msgstr "Belmetode"
+#: ../../standalone/drakgw_.c:207
+#, c-format
+msgid "Interface %s (using module %s)"
+msgstr ""
-#: ../../standalone/drakgw_.c:210
+#: ../../standalone/drakgw_.c:208
+#, fuzzy, c-format
+msgid "Interface %s"
+msgstr "interessant"
+
+#: ../../standalone/drakgw_.c:216
msgid "No network adapter on your system!"
msgstr "Daar is geen netwerkkaart op hierdie rekenaar nie!"
-#: ../../standalone/drakgw_.c:211
+#: ../../standalone/drakgw_.c:217
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -6094,13 +6607,14 @@ msgstr ""
"hardewarekonfigurasieprogram."
#
-#: ../../standalone/drakgw_.c:218
+#: ../../standalone/drakgw_.c:224
+#, fuzzy, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
"\n"
-"$interface\n"
+"%s\n"
"\n"
-"Would you like to setup your Local Area Network with that adapter?"
+"I am about to setup your Local Area Network with that adapter."
msgstr ""
"Daar is net een konfigureerde netwerkkaart op u stelsel.\n"
"\n"
@@ -6108,62 +6622,332 @@ msgstr ""
"\n"
"Wil u dit gebruik vir die LAN?"
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:233
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Kies asb. die netwerkkaart wat aan die loakel area netwerk gekoppel is."
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:242
+#, fuzzy
msgid ""
-"Warning, the network adapter is already configured.\n"
-"Would you like to reconfigure?"
+"Warning, the network adapter is already configured. I will reconfigure it."
msgstr ""
"Waarskuwing! Die netwerkkaart is alreeds opgestel.]nWil u dit ooropstel?"
-#: ../../standalone/drakgw_.c:258
+#: ../../standalone/drakgw_.c:253
msgid "Potential LAN address conflict found in current config of $_!\n"
msgstr "Moontlike LAN-adresbotsing gevind in konfigurasie $_!\n"
-#: ../../standalone/drakgw_.c:268
+#: ../../standalone/drakgw_.c:261 ../../standalone/drakgw_.c:267
msgid "Firewalling configuration detected!"
msgstr "Vuurmuurkonfigurasie gevind!"
-#: ../../standalone/drakgw_.c:269
+#: ../../standalone/drakgw_.c:262 ../../standalone/drakgw_.c:268
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation. Proceed?"
+"need some manual fix after installation."
msgstr ""
"Waarskuwing! 'n Bestaande vuurmuurkonfigurasie is bespeur. U sal dalk na "
-"dietyd self regstellings moet aanbring. Gaan voort?"
+"dietyd self regstellings moet aanbring."
-#: ../../standalone/drakgw_.c:282
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr ""
-"Skrips word konfigureer, sagterware installeer en bedieners afgeskop..."
-
-#: ../../standalone/drakgw_.c:282
+#: ../../standalone/drakgw_.c:276
#, fuzzy
msgid "Configuring..."
msgstr "IDE word opgestel"
-#: ../../standalone/drakgw_.c:313
-msgid "Problems installing package $bin2rpm{$_}"
+#: ../../standalone/drakgw_.c:277
+msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
+"Skrips word konfigureer, sagterware installeer en bedieners afgeskop..."
-#: ../../standalone/drakgw_.c:504
+#: ../../standalone/drakgw_.c:307
+#, fuzzy
+msgid "Problems installing package $_"
+msgstr "Installeer pakket %s"
+
+#: ../../standalone/drakgw_.c:590
msgid "Congratulations!"
msgstr "Geluk!"
-#: ../../standalone/drakgw_.c:505
+#: ../../standalone/drakgw_.c:591
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
-#: ../../standalone/draksec_.c:28
+#: ../../standalone/drakgw_.c:608
+#, fuzzy
+msgid "The setup has already been done, but it's currently disabled."
+msgstr "Die opstelling van die Internetkonnkesiedeling is alreeds gedoen.\n"
+
+#: ../../standalone/drakgw_.c:609
+#, fuzzy
+msgid "The setup has already been done, and it's currently enabled."
+msgstr "Die opstelling van die Internetkonnkesiedeling is alreeds gedoen.\n"
+
+#: ../../standalone/drakgw_.c:610
+#, fuzzy
+msgid "No Internet Connection Sharing has ever been configured."
+msgstr "Internetkonneksiedeling is ontsper"
+
+#: ../../standalone/drakgw_.c:615
+#, fuzzy
+msgid "Internet connection sharing configuration"
+msgstr "Internetkonneksie en konfigurasie"
+
+#: ../../standalone/drakgw_.c:622
+#, fuzzy, c-format
+msgid ""
+"Welcome to the Internet Connection Sharing utility!\n"
+"\n"
+"%s\n"
+"\n"
+"Click on Configure to launch the setup wizard."
+msgstr "Internetkonneksiedeling"
+
+#: ../../standalone/draknet_.c:59
+#, fuzzy, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Netwerkkonfigurasie"
+
+#: ../../standalone/draknet_.c:66 ../../standalone/draknet_.c:537
+#, fuzzy
+msgid "Profile: "
+msgstr "heg het gefaal"
+
+#: ../../standalone/draknet_.c:74
+msgid "Del profile..."
+msgstr ""
+
+#: ../../standalone/draknet_.c:80
+msgid "Profile to delete:"
+msgstr ""
+
+#: ../../standalone/draknet_.c:108
+msgid "New profile..."
+msgstr ""
+
+#: ../../standalone/draknet_.c:114
+msgid "Name of the profile to create:"
+msgstr ""
+
+#: ../../standalone/draknet_.c:140
+#, fuzzy
+msgid "Hostname: "
+msgstr "Rekenaarnaam:"
+
+#: ../../standalone/draknet_.c:147
+#, fuzzy
+msgid "Internet access"
+msgstr "interessant"
+
+#: ../../standalone/draknet_.c:160
+#, fuzzy
+msgid "Type:"
+msgstr "Tipe:"
+
+#: ../../standalone/draknet_.c:163 ../../standalone/draknet_.c:354
+msgid "Gateway:"
+msgstr "Portaal:"
+
+#: ../../standalone/draknet_.c:163 ../../standalone/draknet_.c:354
+#, fuzzy
+msgid "Interface:"
+msgstr "interessant"
+
+#: ../../standalone/draknet_.c:168
+msgid "Status:"
+msgstr ""
+
+#: ../../standalone/draknet_.c:170 ../../standalone/draknet_.c:357
+#: ../../standalone/net_monitor_.c:122 ../../standalone/net_monitor_.c:224
+#, fuzzy
+msgid "Connected"
+msgstr "Konneksienaam"
+
+#: ../../standalone/draknet_.c:170 ../../standalone/draknet_.c:357
+#: ../../standalone/net_monitor_.c:83 ../../standalone/net_monitor_.c:122
+#: ../../standalone/net_monitor_.c:224
+#, fuzzy
+msgid "Not connected"
+msgstr "Kabelkonneksie"
+
+#: ../../standalone/draknet_.c:173 ../../standalone/draknet_.c:358
+msgid "Connect..."
+msgstr ""
+
+#: ../../standalone/draknet_.c:173 ../../standalone/draknet_.c:358
+msgid "Disconnect..."
+msgstr ""
+
+#: ../../standalone/draknet_.c:191
+#, fuzzy
+msgid "Starting your connection..."
+msgstr "Konfigureer internetkonneksie"
+
+#: ../../standalone/draknet_.c:199
+#, fuzzy
+msgid "Closing your connection..."
+msgstr "Konfigureer internetkonneksie"
+
+#: ../../standalone/draknet_.c:204
+msgid ""
+"The connection is not closed.\n"
+"Try to do it manually by running\n"
+"/etc/sysconfig/network-scripts/net_cnx_down\n"
+"in root."
+msgstr ""
+
+#: ../../standalone/draknet_.c:207
+#, fuzzy
+msgid "The system is now disconnected."
+msgstr "Hoe wil u aan die internet konnekteer?"
+
+#: ../../standalone/draknet_.c:219
+#, fuzzy
+msgid "Configure Internet Access..."
+msgstr "Konfigureer dienste"
+
+#: ../../standalone/draknet_.c:226 ../../standalone/draknet_.c:409
+#, fuzzy
+msgid "LAN configuration"
+msgstr "ADSL konfigurasie"
+
+#: ../../standalone/draknet_.c:231
+#, fuzzy
+msgid "Adapter"
+msgstr "Opgradeer"
+
+#: ../../standalone/draknet_.c:231
+#, fuzzy
+msgid "Driver"
+msgstr "Bediener"
+
+#: ../../standalone/draknet_.c:231
+#, fuzzy
+msgid "Interface"
+msgstr "interessant"
+
+#: ../../standalone/draknet_.c:231
+msgid "Protocol"
+msgstr ""
+
+#: ../../standalone/draknet_.c:250
+#, fuzzy
+msgid "Configure Local Area Network..."
+msgstr "Stel plaaslike netwerk op"
+
+#: ../../standalone/draknet_.c:283
+#, fuzzy
+msgid "Normal Mode"
+msgstr "Normaal"
+
+#: ../../standalone/draknet_.c:288
+msgid "Apply"
+msgstr ""
+
+#: ../../standalone/draknet_.c:307
+#, fuzzy
+msgid "Please Wait... Applying the configuration"
+msgstr "Toets konfigurasie"
+
+#: ../../standalone/draknet_.c:389
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/draknet_.c:413
+#, fuzzy
+msgid "LAN Configuration"
+msgstr "ADSL konfigurasie"
+
+#: ../../standalone/draknet_.c:421
+#, c-format
+msgid "Adapter %s: %s"
+msgstr ""
+
+#: ../../standalone/draknet_.c:427
+msgid "Boot Protocol"
+msgstr ""
+
+#: ../../standalone/draknet_.c:428
+msgid "Started on boot"
+msgstr ""
+
+#: ../../standalone/draknet_.c:429
+msgid "DHCP client"
+msgstr ""
+
+#: ../../standalone/draknet_.c:464 ../../standalone/draknet_.c:468
+#, fuzzy
+msgid "Disable"
+msgstr "Tabel"
+
+#: ../../standalone/draknet_.c:464 ../../standalone/draknet_.c:468
+#, fuzzy
+msgid "Enable"
+msgstr "Tabel"
+
+#: ../../standalone/draknet_.c:502
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/draknet_.c:526
+#, fuzzy
+msgid "Internet connection configuration"
+msgstr "Internetkonneksie en konfigurasie"
+
+#: ../../standalone/draknet_.c:530
+#, fuzzy
+msgid "Internet Connection Configuration"
+msgstr "Internetkonneksie en konfigurasie"
+
+#: ../../standalone/draknet_.c:539
+#, fuzzy
+msgid "Connection type: "
+msgstr "Konneksienaam"
+
+#: ../../standalone/draknet_.c:545
+msgid "Parameters"
+msgstr ""
+
+#: ../../standalone/draknet_.c:558
+#, fuzzy
+msgid "Provider dns 1 (optional)"
+msgstr "Voorsiener DNS 1"
+
+#: ../../standalone/draknet_.c:559
+#, fuzzy
+msgid "Provider dns 2 (optional)"
+msgstr "Voorsiener DNS 2"
+
+#: ../../standalone/draknet_.c:572
+msgid "Ethernet Card"
+msgstr ""
+
+#: ../../standalone/draknet_.c:573
+msgid "DHCP Client"
+msgstr ""
+
+#: ../../standalone/draksec_.c:21
+msgid "Welcome To Crackers"
+msgstr "Krakers welkom"
+
+#: ../../standalone/draksec_.c:22
+msgid "Poor"
+msgstr "Swak"
+
+#: ../../standalone/draksec_.c:26
+msgid "Paranoid"
+msgstr "Paranoďes"
+
+#: ../../standalone/draksec_.c:29
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -6175,7 +6959,7 @@ msgstr ""
"wagwoord\n"
"toegang nie."
-#: ../../standalone/draksec_.c:31
+#: ../../standalone/draksec_.c:32
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -6183,7 +6967,7 @@ msgstr ""
"Wagwoorde is nou ontsper, maar gebruik as 'n netwerkrekenaar word nie "
"aanbeveel nie."
-#: ../../standalone/draksec_.c:32
+#: ../../standalone/draksec_.c:33
msgid ""
"Few improvements for this security level, the main one is that there are\n"
"more security warnings and checks."
@@ -6191,7 +6975,7 @@ msgstr ""
"'n Aantal verbetering op heirdie sekuriteitsvlak, die hoof een is meer\n"
"sekuriteitswaarskuwings en -toetse."
-#: ../../standalone/draksec_.c:34
+#: ../../standalone/draksec_.c:35
msgid ""
"This is the standard security recommended for a computer that will be used\n"
"to connect to the Internet as a client. There are now security checks. "
@@ -6200,7 +6984,7 @@ msgstr ""
"wat aan die internet as 'n kliënt konnekteer. Daar is heelwat "
"sekuriteitstoetse."
-#: ../../standalone/draksec_.c:36
+#: ../../standalone/draksec_.c:37
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -6211,7 +6995,7 @@ msgstr ""
"Die sekuriteit is goed genoeg sodat 'n stelsel konneksies wat baie kliënte\n"
"af kan aanvaar."
-#: ../../standalone/draksec_.c:39
+#: ../../standalone/draksec_.c:40
msgid ""
"We take level 4 features, but now the system is entirely closed.\n"
"Security features are at their maximum."
@@ -6219,19 +7003,24 @@ msgstr ""
"Hierdie is Vlak-4 sekuriteit, maar die stelsel is afgeslote.\n"
"Sekuriteitseienskappe is maksimaal."
-#: ../../standalone/draksec_.c:49
+#: ../../standalone/draksec_.c:52
msgid "Setting security level"
msgstr "Sekuriteitsvlak word gestel."
-#: ../../standalone/drakxconf_.c:21
+#: ../../standalone/drakxconf_.c:44
+#, fuzzy
+msgid "Control Center"
+msgstr "Konnekteer aan die internet"
+
+#: ../../standalone/drakxconf_.c:45
msgid "Choose the tool you want to use"
msgstr "Kies die instrument wat u wil gebruik"
-#: ../../standalone/keyboarddrake_.c:14
-msgid "usage: keyboarddrake [--expert]\n"
+#: ../../standalone/keyboarddrake_.c:16
+msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr ""
-#: ../../standalone/keyboarddrake_.c:27
+#: ../../standalone/keyboarddrake_.c:36
msgid "Do you want the BackSpace to return Delete in console?"
msgstr ""
@@ -6256,428 +7045,931 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr ""
-#: ../../standalone/mousedrake_.c:32
+#: ../../standalone/mousedrake_.c:39
msgid "no serial_usb found\n"
msgstr "Geen 'serial_usb' gevind nie\n"
-#: ../../standalone/mousedrake_.c:37
+#: ../../standalone/mousedrake_.c:43
msgid "Emulate third button?"
msgstr "Emuleer derde knop?"
-#: ../../standalone/mousedrake_.c:41
-msgid "Which serial port is your mouse connected to?"
-msgstr "Aan watter seriaalpoort is u muis gekoppel?"
-
-#: ../../standalone/rpmdrake_.c:25
-msgid "reading configuration"
-msgstr "Konfigurasie word gelees"
-
-#: ../../standalone/rpmdrake_.c:45 ../../standalone/rpmdrake_.c:50
-#: ../../standalone/rpmdrake_.c:253
-msgid "File"
-msgstr "Lęer"
-
-#: ../../standalone/rpmdrake_.c:48 ../../standalone/rpmdrake_.c:229
-#: ../../standalone/rpmdrake_.c:253 ../../standalone/rpmdrake_.c:269
-msgid "Search"
-msgstr "Soek"
-
-#: ../../standalone/rpmdrake_.c:49 ../../standalone/rpmdrake_.c:56
-msgid "Package"
-msgstr "Pakket"
-
-#: ../../standalone/rpmdrake_.c:51
-msgid "Text"
-msgstr "Teks"
-
-#: ../../standalone/rpmdrake_.c:53
-msgid "Tree"
-msgstr "Boom"
-
-#: ../../standalone/rpmdrake_.c:54
-msgid "Sort by"
-msgstr "Gesorteer volgens"
-
-#: ../../standalone/rpmdrake_.c:55
-msgid "Category"
-msgstr "Kategorie"
-
-#: ../../standalone/rpmdrake_.c:58
-msgid "See"
-msgstr "Sien"
-
-#: ../../standalone/rpmdrake_.c:59 ../../standalone/rpmdrake_.c:163
-msgid "Installed packages"
-msgstr "Installeerde pakkette"
-
-#: ../../standalone/rpmdrake_.c:60
-msgid "Available packages"
-msgstr "Beskikbare pakkette"
-
-#: ../../standalone/rpmdrake_.c:62
-msgid "Show only leaves"
-msgstr "Wys net eindnodes"
-
-#: ../../standalone/rpmdrake_.c:67
-msgid "Expand all"
-msgstr "Brei alles uit"
-
-#: ../../standalone/rpmdrake_.c:68
-msgid "Collapse all"
-msgstr "Trek alles in"
-
-#: ../../standalone/rpmdrake_.c:70
-msgid "Configuration"
-msgstr "Konfigurasie"
+#: ../../standalone/net_monitor_.c:40 ../../standalone/net_monitor_.c:52
+#, fuzzy
+msgid "Network Monitoring"
+msgstr "Netwerkkonfigurasie"
-#: ../../standalone/rpmdrake_.c:71
-msgid "Add location of packages"
-msgstr "Voeg pakketareas by"
+#: ../../standalone/net_monitor_.c:56
+msgid "Statistics"
+msgstr ""
-#: ../../standalone/rpmdrake_.c:75
-msgid "Update location"
-msgstr "Dateer area op"
+#: ../../standalone/net_monitor_.c:59
+msgid "Sending Speed: "
+msgstr ""
-#: ../../standalone/rpmdrake_.c:79 ../../standalone/rpmdrake_.c:328
-msgid "Remove"
-msgstr "Verwyder "
+#: ../../standalone/net_monitor_.c:61
+msgid "Receiving Speed: "
+msgstr ""
-#: ../../standalone/rpmdrake_.c:100
-msgid "Configuration: Add Location"
-msgstr "Konfigurasie: Voeg area by"
+#: ../../standalone/net_monitor_.c:66
+#, fuzzy
+msgid "Close"
+msgstr "USB Muis"
-#: ../../standalone/rpmdrake_.c:103
-msgid "Find Package"
-msgstr "Soek pakket"
+#: ../../standalone/net_monitor_.c:100 ../../standalone/net_monitor_.c:104
+#, fuzzy
+msgid "Connecting to Internet "
+msgstr "Konnekteer aan die internet"
-#: ../../standalone/rpmdrake_.c:104
-msgid "Find Package containing file"
-msgstr "Soek pakket met lęer"
+#: ../../standalone/net_monitor_.c:100 ../../standalone/net_monitor_.c:104
+#, fuzzy
+msgid "Disconnecting from Internet "
+msgstr "Diskonnekteer van die internet"
-#: ../../standalone/rpmdrake_.c:105
-msgid "Toggle between Installed and Available"
-msgstr "Skakel tussen installeerde en beskikbare"
+#: ../../standalone/net_monitor_.c:114
+#, fuzzy
+msgid "Disconnection from Internet failed."
+msgstr "Diskonnekteer van die internet"
-#: ../../standalone/rpmdrake_.c:139
-msgid "Files:\n"
-msgstr "Lęers:\n"
+#: ../../standalone/net_monitor_.c:115
+#, fuzzy
+msgid "Disconnection from Internet complete."
+msgstr "Diskonnekteer van die internet"
-#: ../../standalone/rpmdrake_.c:161 ../../standalone/rpmdrake_.c:209
-msgid "Uninstall"
-msgstr "Verwyder"
+#: ../../standalone/net_monitor_.c:117
+#, fuzzy
+msgid "Connection complete."
+msgstr "Konneksienaam"
-#: ../../standalone/rpmdrake_.c:163
-msgid "Choose package to install"
-msgstr "Kies pakket om te installeer"
+#: ../../standalone/net_monitor_.c:118
+msgid ""
+"Connection failed.\n"
+"Verify your configuration in the Mandrake Control Center."
+msgstr ""
-#: ../../standalone/rpmdrake_.c:190
-msgid "Checking dependencies"
-msgstr "Afhanklikhede word getoets"
+#: ../../standalone/net_monitor_.c:188
+msgid "sent: "
+msgstr ""
-#: ../../standalone/rpmdrake_.c:190 ../../standalone/rpmdrake_.c:409
-msgid "Wait"
-msgstr "Wag"
+#: ../../standalone/net_monitor_.c:191
+msgid "received: "
+msgstr ""
-#: ../../standalone/rpmdrake_.c:209
-msgid "The following packages are going to be uninstalled"
-msgstr "Die volgende pakkette gaan verwyder word"
+#: ../../standalone/net_monitor_.c:222
+#, fuzzy
+msgid "Connect"
+msgstr "Konneksienaam"
-#: ../../standalone/rpmdrake_.c:210
-msgid "Uninstalling the RPMs"
-msgstr "RPM's word verwyder."
+#: ../../standalone/net_monitor_.c:222
+#, fuzzy
+msgid "Disconnect"
+msgstr "Kabelkonneksie"
-#: ../../standalone/rpmdrake_.c:229 ../../standalone/rpmdrake_.c:269
-msgid "Regexp"
-msgstr "Regex"
+#: ../../standalone/tinyfirewall_.c:29
+msgid "Firewalling Configuration"
+msgstr "Vuurmuurkonfigurasie"
-#: ../../standalone/rpmdrake_.c:229
-msgid "Which package are looking for"
-msgstr "Watter pakket soek vir"
+#: ../../standalone/tinyfirewall_.c:42
+msgid "Firewalling configuration"
+msgstr "Vuurmuurkonfigurasie"
-#: ../../standalone/rpmdrake_.c:238 ../../standalone/rpmdrake_.c:262
-#: ../../standalone/rpmdrake_.c:278
-#, c-format
-msgid "%s not found"
-msgstr "%s is nie gevind nie"
+#: ../../standalone/tinyfirewall_.c:77
+msgid ""
+"Firewalling\n"
+"\n"
+"You already have set up a firewall.\n"
+"Click on Configure to change or remove the firewall"
+msgstr ""
-#: ../../standalone/rpmdrake_.c:238 ../../standalone/rpmdrake_.c:262
-#: ../../standalone/rpmdrake_.c:278
-msgid "No match"
-msgstr "Geen treffer"
+#: ../../standalone/tinyfirewall_.c:81
+msgid ""
+"Firewalling\n"
+"\n"
+"Click on Configure to set up a standard firewall"
+msgstr ""
-#: ../../standalone/rpmdrake_.c:238 ../../standalone/rpmdrake_.c:262
-#: ../../standalone/rpmdrake_.c:278
-msgid "No more match"
-msgstr "Niks meer treffers nie"
+#: ../../tinyfirewall.pm_.c:10
+msgid ""
+"tinyfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Linux Mandrake machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
-#: ../../standalone/rpmdrake_.c:246
+#: ../../tinyfirewall.pm_.c:15
msgid ""
-"rpmdrake is currently in ``low memory'' mode.\n"
-"I'm going to relaunch rpmdrake to allow searching files"
+"We'll now ask you questions about which services you'd like to allow\n"
+"the Internet to connect to. Please think carefully about these\n"
+"questions, as your computer's security is important.\n"
+"\n"
+"Please, if you're not currently using one of these services, firewall\n"
+"it off. You can change this configuration anytime you like by\n"
+"re-running this application!"
msgstr ""
-"rpmdrake is in lae-geheue opstelling.\n"
-"Ek gaan rpmdrake herlaai om soektogte toe te laat."
-#: ../../standalone/rpmdrake_.c:253
-msgid "Which file are you looking for?"
-msgstr "Watter lęer soek u vir?"
+#: ../../tinyfirewall.pm_.c:22
+msgid ""
+"Are you running a web server on this machine that you need the whole\n"
+"Internet to see? If you are running a webserver that only needs to be\n"
+"accessed by this machine, you can safely answer NO here.\n"
+"\n"
+msgstr ""
-#: ../../standalone/rpmdrake_.c:269
-msgid "What are looking for?"
-msgstr "Wat soek vir?"
+#: ../../tinyfirewall.pm_.c:27
+msgid ""
+"Are you running a name server on this machine? If you didn't set one\n"
+"up to give away IP and zone information to the whole Internet, please\n"
+"answer no.\n"
+"\n"
+msgstr ""
-#: ../../standalone/rpmdrake_.c:289
-msgid "Give a name (eg: `extra', `commercial')"
-msgstr "Gee 'n (engelse) naam (bv. 'extra')"
+#: ../../tinyfirewall.pm_.c:32
+msgid ""
+"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
+"is a telnet-replacement that you might use to login. If you're using\n"
+"telnet now, you should definitely switch to ssh. telnet is not\n"
+"encrypted -- so some attackers can steal your password if you use\n"
+"it. ssh is encrypted and doesn't allow for this eavesdropping."
+msgstr ""
-#: ../../standalone/rpmdrake_.c:291
-msgid "Directory"
-msgstr "Lęergids"
+#: ../../tinyfirewall.pm_.c:37
+msgid ""
+"Do you want to allow incoming telnet connections?\n"
+"This is horribly unsafe, as we explained in the previous screen. We\n"
+"strongly recommend answering No here and using ssh in place of\n"
+"telnet.\n"
+msgstr ""
-#: ../../standalone/rpmdrake_.c:294
-msgid "No cdrom available (nothing in /mnt/cdrom)"
-msgstr "Geen cdrom beskikbaar nie (niks in /mnt/cdrom nie)"
+#: ../../tinyfirewall.pm_.c:42
+msgid ""
+"Are you running an FTP server here that you need accessible to the\n"
+"Internet? If you are, we strongly recommend that you only use it for\n"
+"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
+"attackers, since FTP also uses no encryption for transferring passwords.\n"
+msgstr ""
-#: ../../standalone/rpmdrake_.c:298
-msgid "URL of the directory containing the RPMs"
-msgstr "URL van die lęergids met die RPM's"
+#: ../../tinyfirewall.pm_.c:47
+msgid ""
+"Are you running a mail server here? If you're sending you \n"
+"messages through pine, mutt or any other text-based mail client,\n"
+"you probably are. Otherwise, you should firewall this off.\n"
+"\n"
+msgstr ""
-#: ../../standalone/rpmdrake_.c:299
+#: ../../tinyfirewall.pm_.c:52
msgid ""
-"For FTP and HTTP, you need to give the location for hdlist\n"
-"It must be relative to the URL above"
+"Are you running a POP or IMAP server here? This would\n"
+"be used to host non-web-based mail accounts for people via \n"
+"this machine.\n"
+"\n"
msgstr ""
-"Vir FTP en HTTP, moet die pad vir die hdlist gegee word\n"
-"Dit moet relatief tot bg. URL wees."
-#: ../../standalone/rpmdrake_.c:302
-msgid "Please submit the following information"
-msgstr "Verskaf asb. die volgende inligting"
+#: ../../tinyfirewall.pm_.c:57
+msgid ""
+"You appear to be running a 2.2 kernel. If your network IP\n"
+"is automatically set by a computer in your home or office \n"
+"(dynamically assigned), we need to allow for this. Is\n"
+"this the case?\n"
+msgstr ""
-#: ../../standalone/rpmdrake_.c:304
-#, c-format
-msgid "%s is already in use"
-msgstr "%s is alreeds in gebruik"
+#: ../../tinyfirewall.pm_.c:62
+msgid ""
+"Is your computer getting time syncronized to another computer?\n"
+"Mostly, this is used by medium-large Unix/Linux organizations\n"
+"to synchronize time for logging and such. If you're not part\n"
+"of a larger office and haven't heard of this, you probably \n"
+"aren't."
+msgstr ""
-#: ../../standalone/rpmdrake_.c:315 ../../standalone/rpmdrake_.c:321
-#: ../../standalone/rpmdrake_.c:329
-msgid "Updating the RPMs base"
-msgstr "Die RPM's se basis word opgedateer"
+#: ../../tinyfirewall.pm_.c:67
+msgid ""
+"Configuration complete. May we write these changes to disk?\n"
+"\n"
+"\n"
+"\n"
+msgstr ""
-#: ../../standalone/rpmdrake_.c:328
+#: ../../tinyfirewall.pm_.c:83
#, c-format
-msgid "Going to remove entry %s"
-msgstr "Inskrywing %s gaan verwyder word"
-
-#: ../../standalone/rpmdrake_.c:360
-msgid "Finding leaves"
-msgstr "Eindnodes word gesoek"
-
-#: ../../standalone/rpmdrake_.c:360
-msgid "Finding leaves takes some time"
-msgstr "Soek van eindnodes neem 'n tydjie"
-
-# ../../share/compssUsers
-msgid "Graphics Manipulation"
+msgid "Can't open %s: %s\n"
msgstr ""
-# ../../share/compssUsers
-msgid "KDE, QT, Gnome, GTK+"
-msgstr ""
+#: ../../tinyfirewall.pm_.c:85
+#, fuzzy, c-format
+msgid "Can't open %s for writing: %s\n"
+msgstr "Four om %s in skryfmode te open: %s"
-# ../../share/compssUsers
-msgid "Personnal Finance"
+#: ../../share/compssUsers:999
+msgid "Clients for different protocols including ssh"
msgstr ""
-# ../../share/compssUsers
-msgid "Python, Perl, libraries, tools"
-msgstr ""
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Development"
+msgstr "Ontwikkeling"
-# ../../share/compssUsers
-msgid "Scientific applications"
-msgstr ""
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Workstation"
+msgstr "Werkstasie"
-# ../../share/compssUsers
-msgid "Databases"
+#: ../../share/compssUsers:999
+msgid "Firewall/Router"
msgstr ""
-#, fuzzy
-msgid "Internet"
-msgstr "interessant"
+#: ../../share/compssUsers:999
+msgid "Personal Information Management"
+msgstr ""
+#: ../../share/compssUsers:999
#, fuzzy
msgid "Multimedia - Graphics"
msgstr "Multimedia"
-# ../../share/compssUsers
-msgid "editors, shells, file tools, terminals"
-msgstr ""
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Internet"
+msgstr "interessant"
+#
+#: ../../share/compssUsers:999
#, fuzzy
-msgid "Development applications"
-msgstr "Ontwikkeling"
+msgid "Network Computer (client)"
+msgstr "Netwerkdrukker (sok)"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Audio-related tools: mp3 or midi players, mixers, etc"
msgstr ""
-msgid "Multimedia"
-msgstr "Multimedia"
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Internet station"
+msgstr "Internetkonfigurasie"
+#: ../../share/compssUsers:999
msgid "Office"
msgstr "Kantoor"
-# ../../share/compssUsers
-msgid "Sciences"
-msgstr ""
-
-# ../../share/compssUsers
-msgid ""
-"Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and file "
-"transfer tools"
-msgstr ""
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Multimedia station"
+msgstr "Multimedia"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid ""
"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
"browse the Web"
msgstr ""
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "C and C++ development libraries, programs and include files"
msgstr ""
-# ../../share/compssUsers
-msgid "Communication facilities"
+#: ../../share/compssUsers:999
+msgid "Domain Name and Network Information Server"
msgstr ""
-msgid "KDE"
-msgstr "KDE"
-
-# ../../share/compssUsers
-msgid "Personnal Information Management"
-msgstr ""
-
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Programs to manage your finance, such as gnucash"
msgstr ""
-msgid "Gnome"
-msgstr "Gnome"
+#: ../../share/compssUsers:999
+msgid "PostgreSQL or MySQL database server"
+msgstr ""
-#, fuzzy
-msgid "Internet Tools"
-msgstr "Internetkonfigurasie"
+#: ../../share/compssUsers:999
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr ""
+#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Dokumentasie"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr ""
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Utilities"
msgstr ""
+#: ../../share/compssUsers:999
+msgid "DNS/NIS "
+msgstr ""
+
+#: ../../share/compssUsers:999
+msgid "Graphical Environment"
+msgstr ""
+
+#: ../../share/compssUsers:999
#, fuzzy
msgid "Multimedia - Sound"
msgstr "Multimedia"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Amusement programs: arcade, boards, strategy, etc"
msgstr ""
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Video players and editors"
msgstr ""
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Console Tools"
msgstr ""
-#, fuzzy
-msgid "Development other"
-msgstr "Ontwikkeling"
-
-# ../../share/compssUsers
-msgid "Databases clients and servers (mysql and postgresql)"
+#: ../../share/compssUsers:999
+msgid "Sound and video playing/editing programs"
msgstr ""
-# ../../share/compssUsers
-msgid "Sound and video playing/editing programs"
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Scientific Workstation"
+msgstr "Werkstasie"
+
+#: ../../share/compssUsers:999
+msgid "Editors, shells, file tools, terminals"
msgstr ""
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
msgstr ""
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid ""
"A graphical environment with user-friendly set of applications and desktop "
"tools"
msgstr ""
+#: ../../share/compssUsers:999
+msgid "Postfix mail server, Inn news server"
+msgstr ""
+
+#: ../../share/compssUsers:999
#, fuzzy
msgid "Games"
msgstr "Gnome"
-#, fuzzy
-msgid "Development C/C++"
-msgstr "Ontwikkeling"
-
+#: ../../share/compssUsers:999
#, fuzzy
msgid "Multimedia - Video"
msgstr "Multimedia"
-# ../../share/compssUsers
+#
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Network Computer server"
+msgstr "Netwerkdrukker (sok)"
+
+#: ../../share/compssUsers:999
msgid "Graphics programs such as The Gimp"
msgstr ""
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Office Workstation"
+msgstr "Werkstasie"
+
+#: ../../share/compssUsers:999
msgid ""
"The K Desktop Environment, the basic graphical environment with a collection "
"of accompanying tools"
msgstr ""
-# ../../share/compssUsers
-msgid "Tools to create and burn CD's"
+#: ../../share/compssUsers:999
+msgid "More Graphical Desktops (Gnome, IceWM)"
msgstr ""
-# ../../share/compssUsers
-msgid "More Graphical Desktops (Gnome, IceWM)"
+#: ../../share/compssUsers:999
+msgid "Tools to create and burn CD's"
msgstr ""
+#: ../../share/compssUsers:999
#, fuzzy
msgid "Multimedia - CD Burning"
msgstr "Multimedia"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Archiving, emulators, monitoring"
msgstr ""
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
+msgid "Database"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid ""
"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
"gnumeric), pdf viewers, etc"
msgstr ""
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
+msgid "Web/FTP"
+msgstr ""
+
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Server"
+msgstr "X-bediener"
+
+#: ../../share/compssUsers:999
+msgid "Personal Finance"
+msgstr ""
+
+#: ../../share/compssUsers:999
+msgid "Configuration"
+msgstr "Konfigurasie"
+
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "KDE Workstation"
+msgstr "Werkstasie"
+
+#: ../../share/compssUsers:999
msgid "Other Graphical Desktops"
msgstr ""
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
+msgid "Apache, Pro-ftpd"
+msgstr ""
+
+#: ../../share/compssUsers:999
+msgid "Mail/Groupware/News"
+msgstr ""
+
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Gnome Workstation"
+msgstr "Werkstasie"
+
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Internet gateway"
+msgstr "interessant"
+
+#: ../../share/compssUsers:999
msgid "Tools for your Palm Pilot or your Visor"
msgstr ""
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Game station"
+msgstr "Dokumentasie"
+
+#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr ""
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Tools to ease the configuration of your computer"
+msgstr "Wil u die konfigurasie toets?"
+
+#: ../../share/compssUsers:999
msgid "Set of tools for mail, news, web, file transfer, and chat"
msgstr ""
+#, fuzzy
+#~ msgid "Lilo/Grub configuration"
+#~ msgstr "ADSL konfigurasie"
+
+#, fuzzy
+#~ msgid "Selected size %d%s"
+#~ msgstr "Selekteer lOer"
+
+#, fuzzy
+#~ msgid "Opening your connection..."
+#~ msgstr "Konfigureer internetkonneksie"
+
+#, fuzzy
+#~ msgid "Configure..."
+#~ msgstr "IDE word opgestel"
+
+#, fuzzy
+#~ msgid "Standard tools"
+#~ msgstr "Standaard"
+
+#, fuzzy
+#~ msgid "Configuration de Lilo/Grub"
+#~ msgstr "Konfigurasie: Voeg area by"
+
+#~ msgid "This startup script try to load your modules for your usb mouse."
+#~ msgstr "Hierdie skrip laai de nodige modules vir 'n USB-muis."
+
+#~ msgid ""
+#~ "Now that your Internet connection is configured,\n"
+#~ "your computer can be configured to share its Internet connection.\n"
+#~ "Note: you need a dedicated Network Adapter to set up a Local Area Network "
+#~ "(LAN).\n"
+#~ "\n"
+#~ "Would you like to setup the Internet Connection Sharing?\n"
+#~ msgstr ""
+#~ "Nou dat u internetkonfigurasie opgestel is,\n"
+#~ "moet u die rekenaar opstel om dit te deel.\n"
+#~ "LW: U benodig 'n ware netwerkkaart om 'n lokalearea netwerk (LAN) op te "
+#~ "stel.\n"
+#~ "\n"
+#~ "Wil u internetdeling opstel?\n"
+
+#~ msgid "Automatic dependencies"
+#~ msgstr "Outomatiese afhanklikhede"
+
+#~ msgid "Configure LILO/GRUB"
+#~ msgstr "Stel LILO/GRUB op"
+
+#~ msgid "Create a boot floppy"
+#~ msgstr "Maar 'n herlaaiskyf"
+
+#~ msgid "Format floppy"
+#~ msgstr "Formatteer floppie"
+
+#~ msgid "Choice"
+#~ msgstr "Keuse"
+
+#, fuzzy
+#~ msgid ""
+#~ "You can now select some miscellaneous options for your system.\n"
+#~ "\n"
+#~ "* Use hard drive optimizations: this option can improve hard disk "
+#~ "performance but is only for advanced users. Some buggy\n"
+#~ " chipsets can ruin your data, so beware. Note that the kernel has a builtin "
+#~ "blacklist of drives and chipsets, but if\n"
+#~ " you want to avoid bad surprises, leave this option unset.\n"
+#~ "\n"
+#~ "\n"
+#~ "* Choose security level: you can choose a security level for your system. "
+#~ "Please refer to the manual for complete\n"
+#~ " information. Basically, if you don't know what to choose, keep the default "
+#~ "option.\n"
+#~ "\n"
+#~ "\n"
+#~ "* Precise RAM if needed: unfortunately, there is no standard method to ask "
+#~ "the BIOS about the amount of RAM present in\n"
+#~ " your computer. As consequence, Linux may fail to detect your amount of RAM "
+#~ "correctly. If this is the case, you can\n"
+#~ " specify the correct amount or RAM here. Please note that a difference of 2 "
+#~ "or 4 MB between detected memory and memory\n"
+#~ " present in your system is normal.\n"
+#~ "\n"
+#~ "\n"
+#~ "* Removable media automounting: if you would prefer not to manually mount "
+#~ "removable media (CD-Rom, floppy, Zip, etc.) by\n"
+#~ " typing \"mount\" and \"umount\", select this option.\n"
+#~ "\n"
+#~ "\n"
+#~ "* Clean \"/tmp\" at each boot: if you want delete all files and directories "
+#~ "stored in \"/tmp\" when you boot your system,\n"
+#~ " select this option.\n"
+#~ "\n"
+#~ "\n"
+#~ "* Enable num lock at startup: if you want NumLock key enabled after booting, "
+#~ "select this option. Please note that you\n"
+#~ " should not enable this option on laptops and that NumLock may or may not "
+#~ "work under X."
+#~ msgstr ""
+#~ "U kan nou 'n paar diverse opsies vir u stelsel kies.\n"
+#~ "\n"
+#~ " - Optimeer hardeskyf. Hierdie kan hardeskyfwerksverrigting verbeter, maar "
+#~ "is net\n"
+#~ " vir kundige gebruikers bedoel. Sekere gebroke koppelvlakke kan data "
+#~ "ruďneer.\n"
+#~ " Die bedryfstelsel kern het 'n swartlys van hardeskywe, maar indien u "
+#~ "onaangename\n"
+#~ " verrassings wil voorkom los hierdie opsie uit.\n"
+#~ "\n"
+#~ " - Sekuriteitsvlak: Lees die handleiding vir volledigheid, maar in kort:\n"
+#~ " Kies \"Medium\" indien u twyfel. Vir 'n hoogs veilige stelsel kies "
+#~ "\"Paranoďes\",\n"
+#~ " maar pasop: OP HIERDIE VLAK KLAN SELFS NIE 'ROOT' OP DIE KONSOLE\n"
+#~ " AANTEKEN NIE. Vir 'root' toegang moet 'n gewone gebruiker eers aanteken "
+#~ "en dan\n"
+#~ " \"su\". Dit is uitsluitlik vir 'n bediener bedoel.\n"
+#~ "\n"
+#~ " - Presiese geheuegrootte: Daar is geen ongelukkig standaard metode om die "
+#~ "geheuegrootte\n"
+#~ " uit die BIOS te bepaal nie. Soms sal Linux nie die grootte korrek "
+#~ "bepaal nie. In hierdie geval\n"
+#~ " kan die korrekte grootte her gegee word. Let daarop dat 'n verskil van "
+#~ "2-4MB normaal is.\n"
+#~ "\n"
+#~ " - Outohegting van verwyderbare media: Indien u nie elke keer die hegting "
+#~ "per intik wil doen\n"
+#~ " nie (van CDROMs, floppies, ZIpaandrywers ens.), selekteer hierdie "
+#~ "opsie.\n"
+#~ "\n"
+#~ " - NumLock: Indien u NumLock wil aansit by herlaaityd, selekteer hierdie "
+#~ "opsie. Dit sal\n"
+#~ " nie noodwendig NumLock onder X aansit nie."
+
+#~ msgid "Miscellaneous"
+#~ msgstr "Arbitręre items"
+
+#~ msgid "Miscellaneous questions"
+#~ msgstr "Diverse vrae"
+
+#~ msgid "Can't use supermount in high security level"
+#~ msgstr ""
+#~ "Superhegting (supermount) kan nie met 'n hoë sekuriteitsvlak gebruik word nie"
+
+#~ msgid ""
+#~ "beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
+#~ "If you want to be root, you have to login as a user and then use \"su\".\n"
+#~ "More generally, do not expect to use your machine for anything but as a "
+#~ "server.\n"
+#~ "You have been warned."
+#~ msgstr ""
+#~ "Warskuwing: IN HIERDIE SEKURITEITSVLAK, kan ROOT nie by die KONSOLE AANTEKEN "
+#~ "nie.\n"
+#~ "OM 'root' te wees moet u eers as 'n gewone gebruiker aanteken en dan "
+#~ "'su'.Hierdie is spesifiek vir bedienergebruik. U is gewaarsku!"
+
+#~ msgid ""
+#~ "Be carefull, having numlock enabled causes a lot of keystrokes to\n"
+#~ "give digits instead of normal letters (eg: pressing `p' gives `6')"
+#~ msgstr ""
+#~ "Wees versigtig, met NumLock aan sal heelwat sleutels as syfers eerder as "
+#~ "karakters na vore kom. (Bv 'n 'p' mag dalk '6' wees)"
+
+#~ msgid "First DNS Server"
+#~ msgstr "Eerste DNS bediener"
+
+#~ msgid "Second DNS Server"
+#~ msgstr "Tweede DNS bediener"
+
+#~ msgid "loopback"
+#~ msgstr "teruglus"
+
+#~ msgid "None"
+#~ msgstr "Niks"
+
+#~ msgid "Which bootloader(s) do you want to use?"
+#~ msgstr "Watter herlaaistelsel(s) wil u gebruik?"
+
+#~ msgid "Auto install floppy"
+#~ msgstr "Outoinstalleer floppie"
+
+#~ msgid "Try to find a modem?"
+#~ msgstr "Soekj vir 'n modem?"
+
+#~ msgid "Configure local network"
+#~ msgstr "Stel plaaslike netwerk op"
+
+#~ msgid "Disable networking"
+#~ msgstr "Sper netwerkstelsel"
+
+#~ msgid ""
+#~ "Local networking has already been configured.\n"
+#~ "Do you want to:"
+#~ msgstr "Plaaslike netwerk is alreeds opgestel: Wil u?"
+
+#~ msgid "Multimedia"
+#~ msgstr "Multimedia"
+
+#~ msgid "KDE"
+#~ msgstr "KDE"
+
+#~ msgid "Gnome"
+#~ msgstr "Gnome"
+
+#~ msgid "Configure timezone"
+#~ msgstr "Stel tydsone op"
+
+#~ msgid "Configure printer"
+#~ msgstr "Stel drukker op"
+
+#~ msgid "(may cause data corruption)"
+#~ msgstr "(kan data korrupteer)"
+
+#~ msgid "Use hard drive optimisations?"
+#~ msgstr "Gebruik skyfoptimisasie?"
+
+#~ msgid "Enable num lock at startup"
+#~ msgstr "Aansit van NumLock met herlaai"
+
+#~ msgid "Confirm Password"
+#~ msgstr "Bevestig wagwoord"
+
+#~ msgid "default"
+#~ msgstr "Verstek"
+
+#~ msgid "What is your system used for?"
+#~ msgstr "Wat is die gebruik van u stelsel?"
+
+#~ msgid "Select the size you want to install"
+#~ msgstr "Kies die grootte van die installasie"
+
+#~ msgid "Use diskdrake"
+#~ msgstr "Gebruik diskdrake"
+
+#~ msgid "Customized"
+#~ msgstr "Aangepaste"
+
+#~ msgid ""
+#~ "Are you sure you are an expert? \n"
+#~ "You will be allowed to make powerful but dangerous things here.\n"
+#~ "\n"
+#~ "You will be asked questions such as: ``Use shadow file for passwords?'',\n"
+#~ "are you ready to answer that kind of questions?"
+#~ msgstr ""
+#~ "Is u 'n kundige? U sal sal toegelaat word om kragtige, maar\n"
+#~ "gevaarlike keuses uit te oefen\n"
+#~ "\n"
+#~ "U sal vrae gevra word soos: \"Gebruik skaduwagwoorde?\"\n"
+#~ "Is u reg vir sulke vrae?"
+
+#~ msgid "Use shadow file"
+#~ msgstr "Gebruik skadulęer"
+
+#~ msgid "shadow"
+#~ msgstr "skadu's"
+
+#~ msgid "MD5"
+#~ msgstr "MD5"
+
+#~ msgid "Use MD5 passwords"
+#~ msgstr "gebruik MD5 wagwoorde"
+
+#~ msgid "Search"
+#~ msgstr "Soek"
+
+#~ msgid "Package"
+#~ msgstr "Pakket"
+
+#~ msgid "Text"
+#~ msgstr "Teks"
+
+#~ msgid "Tree"
+#~ msgstr "Boom"
+
+#~ msgid "Sort by"
+#~ msgstr "Gesorteer volgens"
+
+#~ msgid "Category"
+#~ msgstr "Kategorie"
+
+#~ msgid "See"
+#~ msgstr "Sien"
+
+#~ msgid "Installed packages"
+#~ msgstr "Installeerde pakkette"
+
+#~ msgid "Available packages"
+#~ msgstr "Beskikbare pakkette"
+
+#~ msgid "Show only leaves"
+#~ msgstr "Wys net eindnodes"
+
+#~ msgid "Expand all"
+#~ msgstr "Brei alles uit"
+
+#~ msgid "Collapse all"
+#~ msgstr "Trek alles in"
+
+#~ msgid "Add location of packages"
+#~ msgstr "Voeg pakketareas by"
+
+#~ msgid "Update location"
+#~ msgstr "Dateer area op"
+
+#~ msgid "Remove"
+#~ msgstr "Verwyder "
+
+#~ msgid "Find Package"
+#~ msgstr "Soek pakket"
+
+#~ msgid "Find Package containing file"
+#~ msgstr "Soek pakket met lęer"
+
+#~ msgid "Toggle between Installed and Available"
+#~ msgstr "Skakel tussen installeerde en beskikbare"
+
+#~ msgid "Uninstall"
+#~ msgstr "Verwyder"
+
+#~ msgid "Choose package to install"
+#~ msgstr "Kies pakket om te installeer"
+
+#~ msgid "Checking dependencies"
+#~ msgstr "Afhanklikhede word getoets"
+
+#~ msgid "Wait"
+#~ msgstr "Wag"
+
+#~ msgid "The following packages are going to be uninstalled"
+#~ msgstr "Die volgende pakkette gaan verwyder word"
+
+#~ msgid "Uninstalling the RPMs"
+#~ msgstr "RPM's word verwyder."
+
+#~ msgid "Regexp"
+#~ msgstr "Regex"
+
+#~ msgid "Which package are looking for"
+#~ msgstr "Watter pakket soek vir"
+
+#~ msgid "%s not found"
+#~ msgstr "%s is nie gevind nie"
+
+#~ msgid "No match"
+#~ msgstr "Geen treffer"
+
+#~ msgid "No more match"
+#~ msgstr "Niks meer treffers nie"
+
+#~ msgid ""
+#~ "rpmdrake is currently in ``low memory'' mode.\n"
+#~ "I'm going to relaunch rpmdrake to allow searching files"
+#~ msgstr ""
+#~ "rpmdrake is in lae-geheue opstelling.\n"
+#~ "Ek gaan rpmdrake herlaai om soektogte toe te laat."
+
+#~ msgid "Which file are you looking for?"
+#~ msgstr "Watter lęer soek u vir?"
+
+#~ msgid "What are looking for?"
+#~ msgstr "Wat soek vir?"
+
+#~ msgid "Give a name (eg: `extra', `commercial')"
+#~ msgstr "Gee 'n (engelse) naam (bv. 'extra')"
+
+#~ msgid "Directory"
+#~ msgstr "Lęergids"
+
+#~ msgid "No cdrom available (nothing in /mnt/cdrom)"
+#~ msgstr "Geen cdrom beskikbaar nie (niks in /mnt/cdrom nie)"
+
+#~ msgid "URL of the directory containing the RPMs"
+#~ msgstr "URL van die lęergids met die RPM's"
+
+#~ msgid ""
+#~ "For FTP and HTTP, you need to give the location for hdlist\n"
+#~ "It must be relative to the URL above"
+#~ msgstr ""
+#~ "Vir FTP en HTTP, moet die pad vir die hdlist gegee word\n"
+#~ "Dit moet relatief tot bg. URL wees."
+
+#~ msgid "Please submit the following information"
+#~ msgstr "Verskaf asb. die volgende inligting"
+
+#~ msgid "%s is already in use"
+#~ msgstr "%s is alreeds in gebruik"
+
+#~ msgid "Updating the RPMs base"
+#~ msgstr "Die RPM's se basis word opgedateer"
+
+#~ msgid "Going to remove entry %s"
+#~ msgstr "Inskrywing %s gaan verwyder word"
+
+#~ msgid "Finding leaves"
+#~ msgstr "Eindnodes word gesoek"
+
+#~ msgid "Finding leaves takes some time"
+#~ msgstr "Soek van eindnodes neem 'n tydjie"
+
+#~ msgid "I have found an ISDN Card:\n"
+#~ msgstr "Ek het 'n ISDN-kaart gevind\n"
+
+#~ msgid "France"
+#~ msgstr "Frankryk"
+
+#~ msgid "Other countries"
+#~ msgstr "Ander lande"
+
+#
+#~ msgid "In which country are you located ?"
+#~ msgstr "In watter land is u?"
+
+#~ msgid "Alcatel modem"
+#~ msgstr "Alcatel modem"
+
+#~ msgid "ECI modem"
+#~ msgstr "ECI modem"
+
+#~ msgid ""
+#~ "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
+#~ msgstr "Indien u ADSL-modem 'n Alcatel is, kies Alcatel, andersins ECI."
+
+#~ msgid "don't use pppoe"
+#~ msgstr "moenie pppoe gebruik nie"
+
+#~ msgid "mandatory"
+#~ msgstr "verpligtend"
+
+#~ msgid "interesting"
+#~ msgstr "interessant"
+
+#~ msgid "i18n (important)"
+#~ msgstr "i18n (belangrik)"
+
+#~ msgid "i18n (very nice)"
+#~ msgstr "i18n (baie oulik)"
+
+#~ msgid "i18n (nice)"
+#~ msgstr "i18n (oulik)"
+
+#~ msgid "Which serial port is your mouse connected to?"
+#~ msgstr "Aan watter seriaalpoort is u muis gekoppel?"
+
#~ msgid "Czech"
#~ msgstr "Tseggies"
@@ -7047,12 +8339,6 @@ msgstr ""
#~ msgid "Forget the changes?"
#~ msgstr "Vergeet van die veranderinge?"
-#~ msgid "Cable connection"
-#~ msgstr "Kabelkonneksie"
-
-#~ msgid "Host name:"
-#~ msgstr "Rekenaarnaam:"
-
#~ msgid "What is the type of your mouse?"
#~ msgstr "Wat is u muistoestel?"
@@ -7087,9 +8373,6 @@ msgstr ""
#~ msgid "Automatical resolutions search"
#~ msgstr "Outomatiese resolusie soektog"
-#~ msgid "dhcpd"
-#~ msgstr "dhcpd"
-
#~ msgid "pump"
#~ msgstr "pump"
@@ -7132,9 +8415,6 @@ msgstr ""
#~ msgid "Logitech Bus Mouse"
#~ msgstr "Logitech Busmuis"
-#~ msgid "USB Mouse"
-#~ msgstr "USB Muis"
-
#~ msgid "USB Mouse (3 buttons or more)"
#~ msgstr "USB Muis (3 knoppe of meer)"
@@ -7208,12 +8488,6 @@ msgstr ""
#~ msgid "Show more"
#~ msgstr "Vertoon meer"
-#~ msgid "curly"
-#~ msgstr "krul"
-
-#~ msgid "default"
-#~ msgstr "Verstek"
-
#~ msgid "tie"
#~ msgstr "das"
@@ -7232,9 +8506,6 @@ msgstr ""
#~ msgid "What is your keyboard layout?"
#~ msgstr "Wat is u sleutelborduitleg?"
-#~ msgid "Normal"
-#~ msgstr "Normaal"
-
#~ msgid "Try to find PCMCIA cards?"
#~ msgstr "Wil u PCMCIA-kaarte soek?"
@@ -7261,9 +8532,6 @@ msgstr ""
#~ msgid "No root partition found"
#~ msgstr "Geen basislęerstelsel gevind nie"
-#~ msgid "Can't use broadcast with no NIS domain"
-#~ msgstr "Kan nie uitsaau sonder 'n NIS-domein nie"
-
#~ msgid "Please choose a partition to use as your root partition."
#~ msgstr "Watter partisie moet u wortelpartisie wees?"
@@ -7276,9 +8544,6 @@ msgstr ""
#~ msgid ", %U MB"
#~ msgstr ", %U MB"
-#~ msgid "Automated"
-#~ msgstr "Outomaties"
-
# NOTE: this message will be displayed by lilo at boot time; that is
# using the BIOS font; that means cp437 charset on 99.99% of PC computers
# out there. It is then suggested that for non latin languages an ascii
diff --git a/perl-install/share/po/az.po b/perl-install/share/po/az.po
index 6cca45582..f7310ef79 100644
--- a/perl-install/share/po/az.po
+++ b/perl-install/share/po/az.po
@@ -1,43 +1,68 @@
-# Turkish translation of DrakX
+# Azerbaijani Turkish translation of DrakX
# Copyright (C) 1999 MandrakeSof
# Vasif Ismailoglu MD <azerb_linux@hotmail.com>, 2000
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2000-11-11 21:39+0100\n"
-"PO-Revision-Date: 2000-11-11 19:04+0200\n"
+"POT-Creation-Date: 2001-04-17 16:58+0200\n"
+"PO-Revision-Date: 2001-03-24 19:04+0200\n"
"Last-Translator: Vasif Ismailoglu MD <azerb_linux@hotmail.com>\n"
"Language-Team:Azerbaijani turkish <linuxaz@azerimail.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-9e\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:179
+#: ../../Xconfigurator.pm_.c:232
+msgid "Configure all heads independantly"
+msgstr "Bütün baţlýqlarý ayrý ayrý quraţdýr"
+
+#: ../../Xconfigurator.pm_.c:233
+msgid "Use Xinerama extension"
+msgstr "\"Xinerama\" ifadćlćrini iţlćt"
+
+#: ../../Xconfigurator.pm_.c:236
+#, c-format
+msgid "Configure only card \"%s\" (%s)"
+msgstr "Tćkcć \"%s\" kartýný qur (%s)"
+
+#: ../../Xconfigurator.pm_.c:239
+msgid "Multi-head configuration"
+msgstr "Çoxlu Baţlýq quraţdýrýlmasý"
+
+#: ../../Xconfigurator.pm_.c:240
+msgid ""
+"Your system support multiple head configuration.\n"
+"What do you want to do?"
+msgstr ""
+"Sizin sisteminiz çoxlu baţlýq quraţdýrmasýný dćstćklćyir.\n"
+"Nć etmćk istćyirsiniz?"
+
+#: ../../Xconfigurator.pm_.c:249
msgid "Graphic card"
msgstr "Ekran kartý"
-#: ../../Xconfigurator.pm_.c:179
+#: ../../Xconfigurator.pm_.c:249
msgid "Select a graphic card"
msgstr "Ekran kartýnýzý seçin"
-#: ../../Xconfigurator.pm_.c:180
+#: ../../Xconfigurator.pm_.c:250
msgid "Choose a X server"
msgstr "Bir X vericisi seçin"
-#: ../../Xconfigurator.pm_.c:180
+#: ../../Xconfigurator.pm_.c:250
msgid "X server"
msgstr "X verici"
-#: ../../Xconfigurator.pm_.c:217 ../../Xconfigurator.pm_.c:223
+#: ../../Xconfigurator.pm_.c:304 ../../Xconfigurator.pm_.c:311
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:220
+#: ../../Xconfigurator.pm_.c:307
msgid "Which configuration of XFree do you want to have?"
msgstr "Necć bir XFree qurđusunu istćyirsiniz?"
-#: ../../Xconfigurator.pm_.c:232
+#: ../../Xconfigurator.pm_.c:320
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -49,17 +74,31 @@ msgstr ""
"Sizin kartýnýza XFree %s tćrćfindćn dćstćk verilir ve bu 2D üçün daha yaxţý "
"bir fikir olar."
-#: ../../Xconfigurator.pm_.c:234 ../../Xconfigurator.pm_.c:257
+#: ../../Xconfigurator.pm_.c:322 ../../Xconfigurator.pm_.c:355
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
-msgstr "Sizin kartýnýzýn XFree %s ile 3D dćstćyi ola bilćr."
+msgstr "Sizin kartýnýzýn XFree %s ilć 3D dćstćyi ola bilćr."
-#: ../../Xconfigurator.pm_.c:236 ../../Xconfigurator.pm_.c:259
+#: ../../Xconfigurator.pm_.c:324 ../../Xconfigurator.pm_.c:357
#, c-format
msgid "XFree %s with 3D hardware acceleration"
-msgstr "3D sür'ćtlćndirmć dćstćyi ilć XFree %s"
+msgstr "3D avadanlýq sür'ćtlćndirmćsi ilć XFree %s"
+
+#: ../../Xconfigurator.pm_.c:332 ../../Xconfigurator.pm_.c:346
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+msgstr ""
+"Sizin kartýnýzýn XFree %s ilć 3D dćstćyi ola bilćr.\n"
+"DÝQQĆT! BU SINAQ MĆRHĆlĆSINDĆDIR VĆ BILGISAYARINIZI DONDURA BILĆR."
+
+#: ../../Xconfigurator.pm_.c:334 ../../Xconfigurator.pm_.c:348
+#, c-format
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr "SINAQ MĆRHĆLĆSÝNDĆKÝ 3D sür'ćtlćndirmć dćstćkli XFree %s"
-#: ../../Xconfigurator.pm_.c:245
+#: ../../Xconfigurator.pm_.c:343
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
@@ -69,45 +108,31 @@ msgstr ""
"Sizin kartýnýzýn 3D sür'ćtlćndirmć dćstćyi ola bilćr, amma sadecć olaraq "
"XFree %s\n"
"ilć düzgün iţlćyćr.\n"
-"DÝQQĆT! BU SINAQ MĆRHĆlĆSINDĆDIR VĆ BILGISAYARINIZI DONDURA BILĆR.\n"
+"DÝQQĆT! BU SINAQ MĆRHĆLĆSINDĆDIR VĆ BILGISAYARINIZI DONDURA BILĆR.\n"
"Sizin kartýnýza XFree %s tćrćfindćn dćstćk verilir ve bu 2D üçün daha yaxţý "
"bir seçki olar."
-#: ../../Xconfigurator.pm_.c:248
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
-msgstr ""
-"Sizin kartýnýzýn XFree %s ile 3D dćstćyi ola bilćr.\n"
-"DÝQQĆT! BU SINAQ MĆRHĆlĆSINDĆDIR VĆ BILGISAYARINIZI DONDURA BILĆR."
-
-#: ../../Xconfigurator.pm_.c:250
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "SINAQ MĆRHĆLĆSÝNDĆKÝ 3D sür'ćtlćndirmć dćstćkli XFree %s"
-
-#: ../../Xconfigurator.pm_.c:265
+#: ../../Xconfigurator.pm_.c:363
msgid "XFree configuration"
msgstr "XFree quraţdýrýlmasý"
-#: ../../Xconfigurator.pm_.c:303
+#: ../../Xconfigurator.pm_.c:396
msgid "Select the memory size of your graphic card"
-msgstr "Ekran kartýnýzýn hafizć böyüklüyünü seçin"
+msgstr "Ekran kartýnýzýn yaddaţ böyüklüyünü seçin"
-#: ../../Xconfigurator.pm_.c:347
+#: ../../Xconfigurator.pm_.c:443
msgid "Choose options for server"
msgstr "X verici üçün seçćnćklćri göstćrin"
-#: ../../Xconfigurator.pm_.c:358
+#: ../../Xconfigurator.pm_.c:460
msgid "Choose a monitor"
msgstr "Monitorunuzu seçin"
-#: ../../Xconfigurator.pm_.c:358
+#: ../../Xconfigurator.pm_.c:460
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:361
+#: ../../Xconfigurator.pm_.c:463
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -120,191 +145,197 @@ msgid ""
"monitor.\n"
" If in doubt, choose a conservative setting."
msgstr ""
-"Buradaki iki vacib parametr üfüqi ve ţaquli tćzćlćmć sür'ćtlćridir.\n"
+"Buradaki iki vacib parametr üfüqi ve ţaquli yenilćmć sür'ćtlćridir.\n"
"Seçćrkćn monitorunuzun qabiliyyćtinin üstündć bir parametr\n"
"seçmćmćyiniz çox vacibdir, ćks halda monitor zćrćr görćr.\n"
"Seçćrkćn bir qćrarsýzlýđa düţćrsćniz, alçaq rezolyusiya seçin."
-#: ../../Xconfigurator.pm_.c:368
+#: ../../Xconfigurator.pm_.c:470
msgid "Horizontal refresh rate"
-msgstr "Üfüqi tćzćlćmć sür'ćti"
+msgstr "Üfüqi yenilćmć sür'ćti"
-#: ../../Xconfigurator.pm_.c:368
+#: ../../Xconfigurator.pm_.c:471
msgid "Vertical refresh rate"
-msgstr "Ţaquli tćzćlćmć sür'ćti"
+msgstr "Ţaquli yenilćmć sür'ćti"
-#: ../../Xconfigurator.pm_.c:407
+#: ../../Xconfigurator.pm_.c:508
msgid "Monitor not configured"
msgstr "Monitor qurulmayýb"
-#: ../../Xconfigurator.pm_.c:410
+#: ../../Xconfigurator.pm_.c:511
msgid "Graphic card not configured yet"
msgstr "Ekran kartý hćlć qurulmayýb"
-#: ../../Xconfigurator.pm_.c:413
+#: ../../Xconfigurator.pm_.c:514
msgid "Resolutions not chosen yet"
msgstr "Rezolyusiya hćlć seçilmćyib"
-#: ../../Xconfigurator.pm_.c:429
+#: ../../Xconfigurator.pm_.c:530
msgid "Do you want to test the configuration?"
-msgstr "Qurđularý sýnamaq istćyirsinizmi?"
+msgstr "Qurđularý sýnamaq istćyirsiniz?"
-#: ../../Xconfigurator.pm_.c:433
+#: ../../Xconfigurator.pm_.c:534
msgid "Warning: testing this graphic card may freeze your computer"
-msgstr "Diqqćt: Bu qrafik kartýn ilć edilćcćk sýnaq tćhlükćlidir"
+msgstr "Diqqćt: Bu qrafika kartý ilć edilćcćk sýnaq tćhlükćlidir"
-#: ../../Xconfigurator.pm_.c:436
+#: ../../Xconfigurator.pm_.c:537
msgid "Test of the configuration"
-msgstr "Quraţdýrma sýnađý"
+msgstr "Qurđularýn sýnađý"
-#: ../../Xconfigurator.pm_.c:475
+#: ../../Xconfigurator.pm_.c:576
msgid ""
"\n"
"try to change some parameters"
msgstr ""
"\n"
-"bćzi parametrlćri dćyiţdirin"
+"bć'zi parametrlćri dćyiţdirin"
-#: ../../Xconfigurator.pm_.c:475
+#: ../../Xconfigurator.pm_.c:576
msgid "An error has occurred:"
msgstr "Bir xćta oldu:"
-#: ../../Xconfigurator.pm_.c:497
+#: ../../Xconfigurator.pm_.c:598
#, c-format
msgid "Leaving in %d seconds"
msgstr "%d saniyć sonra çýxýlacaq"
-#: ../../Xconfigurator.pm_.c:507
+#: ../../Xconfigurator.pm_.c:609
msgid "Is this the correct setting?"
-msgstr "Bu qurđular dođrudurmu?"
+msgstr "Bu qurđular dođrudur?"
-#: ../../Xconfigurator.pm_.c:515
+#: ../../Xconfigurator.pm_.c:617
msgid "An error has occurred, try to change some parameters"
msgstr "Bir xćta oldu, parametrlćri dćyiţdirin"
-#: ../../Xconfigurator.pm_.c:552 ../../printerdrake.pm_.c:276
+#: ../../Xconfigurator.pm_.c:663 ../../printerdrake.pm_.c:277
+#: ../../services.pm_.c:125
msgid "Resolution"
msgstr "Rezolyusiya"
-#: ../../Xconfigurator.pm_.c:587
+#: ../../Xconfigurator.pm_.c:710
msgid "Choose the resolution and the color depth"
msgstr "Rezolyusiya vć rćng dćrinliyini seçin"
-#: ../../Xconfigurator.pm_.c:589
+#: ../../Xconfigurator.pm_.c:712
#, c-format
msgid "Graphic card: %s"
msgstr "Ekran kartý: %s"
-#: ../../Xconfigurator.pm_.c:590
+#: ../../Xconfigurator.pm_.c:713
#, c-format
msgid "XFree86 server: %s"
msgstr "XFree86 verici: %s"
-#: ../../Xconfigurator.pm_.c:599
+#: ../../Xconfigurator.pm_.c:729 ../../standalone/draknet_.c:280
+#: ../../standalone/draknet_.c:283
+msgid "Expert Mode"
+msgstr "Usta Modu"
+
+#: ../../Xconfigurator.pm_.c:730
msgid "Show all"
msgstr "Hamýsýný Göstćr"
-#: ../../Xconfigurator.pm_.c:623
+#: ../../Xconfigurator.pm_.c:773
msgid "Resolutions"
msgstr "Rezolyusiyalar"
-#: ../../Xconfigurator.pm_.c:1021
+#: ../../Xconfigurator.pm_.c:1299
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Klavatura düzülüţü: %s\n"
-#: ../../Xconfigurator.pm_.c:1022
+#: ../../Xconfigurator.pm_.c:1300
#, c-format
msgid "Mouse type: %s\n"
msgstr "Siçan növü: %s\n"
-#: ../../Xconfigurator.pm_.c:1023
+#: ../../Xconfigurator.pm_.c:1301
#, c-format
msgid "Mouse device: %s\n"
msgstr "Siçan avadanlýđý: %s\n"
-#: ../../Xconfigurator.pm_.c:1024
+#: ../../Xconfigurator.pm_.c:1302
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1025
+#: ../../Xconfigurator.pm_.c:1303
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Monitorun Ţaquli Daramasý: %s\n"
-#: ../../Xconfigurator.pm_.c:1026
+#: ../../Xconfigurator.pm_.c:1304
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Monitorun Üfüqi Tćzćlćmćsi: %s\n"
-#: ../../Xconfigurator.pm_.c:1027
+#: ../../Xconfigurator.pm_.c:1305
#, c-format
msgid "Graphic card: %s\n"
msgstr "Ekran kartý: %s\n"
-#: ../../Xconfigurator.pm_.c:1028
+#: ../../Xconfigurator.pm_.c:1306
#, c-format
msgid "Graphic memory: %s kB\n"
-msgstr "Ekran kartý hafizćsi: %s KB\n"
+msgstr "Ekran kartý yaddaţý: %s KB\n"
-#: ../../Xconfigurator.pm_.c:1030
+#: ../../Xconfigurator.pm_.c:1308
#, c-format
msgid "Color depth: %s\n"
msgstr "Rćng dćrinliyi: %s\n"
-#: ../../Xconfigurator.pm_.c:1031
+#: ../../Xconfigurator.pm_.c:1309
#, c-format
msgid "Resolution: %s\n"
msgstr "Rezolyusiya: %s\n"
-#: ../../Xconfigurator.pm_.c:1033
+#: ../../Xconfigurator.pm_.c:1311
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 verici: %s\n"
-#: ../../Xconfigurator.pm_.c:1034
+#: ../../Xconfigurator.pm_.c:1312
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 sürücü: %s\n"
-#: ../../Xconfigurator.pm_.c:1053
+#: ../../Xconfigurator.pm_.c:1331
msgid "Preparing X-Window configuration"
msgstr "X-Window qurđularý hazýrlanýr"
-#: ../../Xconfigurator.pm_.c:1067
+#: ../../Xconfigurator.pm_.c:1351
+msgid "What do you want to do?"
+msgstr "Nć etmćk istćyirsiniz?"
+
+#: ../../Xconfigurator.pm_.c:1356
msgid "Change Monitor"
msgstr "Monitoru Dćyiţdir"
-#: ../../Xconfigurator.pm_.c:1068
+#: ../../Xconfigurator.pm_.c:1357
msgid "Change Graphic card"
msgstr "Ekran kartýný dćyiţdir"
-#: ../../Xconfigurator.pm_.c:1069
+#: ../../Xconfigurator.pm_.c:1359
msgid "Change Server options"
msgstr "Verici seçćnćklćrini dćyiţdir"
-#: ../../Xconfigurator.pm_.c:1070
+#: ../../Xconfigurator.pm_.c:1360
msgid "Change Resolution"
-msgstr "Rezolyusiya dćyiţdir"
+msgstr "Rezolyusiyaný Dćyiţdir"
-#: ../../Xconfigurator.pm_.c:1071
+#: ../../Xconfigurator.pm_.c:1361
msgid "Show information"
-msgstr "Bilgilćri göstćr"
+msgstr "Mć'lumatý göstćr"
-#: ../../Xconfigurator.pm_.c:1072
+#: ../../Xconfigurator.pm_.c:1362
msgid "Test again"
-msgstr "Tćkrar sýna"
+msgstr "Yenidćn sýna"
-#: ../../Xconfigurator.pm_.c:1073 ../../standalone/rpmdrake_.c:46
+#: ../../Xconfigurator.pm_.c:1363 ../../bootlook.pm_.c:220
msgid "Quit"
msgstr "Çýx"
-#: ../../Xconfigurator.pm_.c:1077 ../../standalone/drakboot_.c:40
-msgid "What do you want to do?"
-msgstr "Ne etmćk istćyirsiniz?"
-
-#: ../../Xconfigurator.pm_.c:1084
+#: ../../Xconfigurator.pm_.c:1371
#, c-format
msgid ""
"Keep the changes?\n"
@@ -313,51 +344,31 @@ msgid ""
"%s"
msgstr ""
"Mövcud qurđularý saxlayýmmý?\n"
-"Halhazýrký qurđular:\n"
+"Hal-hazýrký qurđular:\n"
"\n"
"%s"
-#: ../../Xconfigurator.pm_.c:1105
+#: ../../Xconfigurator.pm_.c:1392
#, c-format
msgid "Please relog into %s to activate the changes"
-msgstr "%s'ć tćkrar girin vć dćyiţikliklćri aktivlćţdirin"
+msgstr "\"%s\"a(ć) tćkrar girin vć dćyiţikliklćri fćallaţdýrýn"
-#: ../../Xconfigurator.pm_.c:1125
+#: ../../Xconfigurator.pm_.c:1412
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Lütfen çýxýn vć Ctrl-Alt-BackSpace düymćlćrinć basýn"
-#: ../../Xconfigurator.pm_.c:1128
+#: ../../Xconfigurator.pm_.c:1415
msgid "X at startup"
-msgstr "Açýlýţda X"
+msgstr "X ilć Açýlýţ"
-#: ../../Xconfigurator.pm_.c:1129
+#: ../../Xconfigurator.pm_.c:1416
msgid ""
"I can set up your computer to automatically start X upon booting.\n"
"Would you like X to start when you reboot?"
msgstr ""
-"Bilgisayarýnýzý avtomatik olaraq X ilć açýlmasý üçün qurabilćrćm.\n"
+"Kompüterinizi avtomatik olaraq X ilć açýlmasý üçün qura bilćrćm.\n"
"Açýlýţda X Window ilć baţlamaq istćyirsinizmi?"
-#: ../../Xconfigurator.pm_.c:1153
-msgid "Autologin"
-msgstr "Autologin"
-
-#: ../../Xconfigurator.pm_.c:1154
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"If you don't want to use this feature, click on the cancel button."
-msgstr ""
-"Bilgisayarýnýzý avtomatik olaraq bir istifadćçi ilć baţlada bilćrćm.\n"
-"Ýstćmirsiniz isć rćdd edin."
-
-#: ../../Xconfigurator.pm_.c:1156
-msgid "Choose the default user:"
-msgstr "Ćsas istifadćçiyi seçin:"
-
-#: ../../Xconfigurator.pm_.c:1157
-msgid "Choose the window manager to run:"
-msgstr "Ýstifadć etmćk istćdiyiniz pćncćrć idarćcisini seçin:"
-
#: ../../Xconfigurator_consts.pm_.c:6
msgid "256 colors (8 bits)"
msgstr "256 rćng (8 bits)"
@@ -404,309 +415,361 @@ msgstr "8 MB"
#: ../../Xconfigurator_consts.pm_.c:112
msgid "16 MB or more"
-msgstr "16 MB vćya daha çox"
+msgstr "16 MB vć ya daha çox"
-#: ../../Xconfigurator_consts.pm_.c:117 ../../Xconfigurator_consts.pm_.c:118
+#: ../../Xconfigurator_consts.pm_.c:120
msgid "Standard VGA, 640x480 at 60 Hz"
msgstr "Standart VGA, 60 Hz'dć 640x480 "
-#: ../../Xconfigurator_consts.pm_.c:119
+#: ../../Xconfigurator_consts.pm_.c:121
msgid "Super VGA, 800x600 at 56 Hz"
msgstr "Super VGA, 56 Hz'dć 800x600"
-#: ../../Xconfigurator_consts.pm_.c:120
+#: ../../Xconfigurator_consts.pm_.c:122
msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "8514 Uyđun, 87 Hz'dć titrćţimli 1024x768 (800x600 yok)"
+msgstr "8514 Uyđun, 87 Hz'dć titrćţimli 1024x768 (800x600 yox)"
-#: ../../Xconfigurator_consts.pm_.c:121
+#: ../../Xconfigurator_consts.pm_.c:123
msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
msgstr "Super VGA, 87 Hz'dć titrćţimli 1024x768, 56 Hz'dć 800x600"
-#: ../../Xconfigurator_consts.pm_.c:122
+#: ../../Xconfigurator_consts.pm_.c:124
msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
-msgstr "Ýnkiţaf etdirilmiţ Super VGA, 60 Hz'dć 800x600, 72 Hz'dć 640x480"
+msgstr "Tćkmillćţdirilmiţ Super VGA, 60 Hz'dć 800x600, 72 Hz'dć 640x480"
-#: ../../Xconfigurator_consts.pm_.c:123
+#: ../../Xconfigurator_consts.pm_.c:125
msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
msgstr "Titrćţimsiz SVGA, 60 Hz'dć 1024x768, 72 Hz'dć 800x600"
-#: ../../Xconfigurator_consts.pm_.c:124
+#: ../../Xconfigurator_consts.pm_.c:126
msgid "High Frequency SVGA, 1024x768 at 70 Hz"
msgstr "Yüksćk Frekanslý SVGA, 70 Hz'dć 1024x768"
-#: ../../Xconfigurator_consts.pm_.c:125
+#: ../../Xconfigurator_consts.pm_.c:127
msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
msgstr "Çoxlu Frekansa qadir 60 Hz'dć 1280x1024"
-#: ../../Xconfigurator_consts.pm_.c:126
+#: ../../Xconfigurator_consts.pm_.c:128
msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
msgstr "Çoxlu Frekansa qadir 74 Hz'dć 1280x1024"
-#: ../../Xconfigurator_consts.pm_.c:127
+#: ../../Xconfigurator_consts.pm_.c:129
msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
msgstr "Çoxlu Frekansa qadir 76 Hz'dć 1280x1024"
-#: ../../Xconfigurator_consts.pm_.c:128
+#: ../../Xconfigurator_consts.pm_.c:130
msgid "Monitor that can do 1600x1200 at 70 Hz"
msgstr "70 Hz dć 1600x1200 qadir Monitor"
-#: ../../Xconfigurator_consts.pm_.c:129
+#: ../../Xconfigurator_consts.pm_.c:131
msgid "Monitor that can do 1600x1200 at 76 Hz"
msgstr "76 Hz dć 1600x1200 qadir Monitor"
-#: ../../any.pm_.c:91 ../../any.pm_.c:121 ../../any_new.pm_.c:91
-#: ../../any_new.pm_.c:121
+#: ../../any.pm_.c:99 ../../any.pm_.c:124
msgid "First sector of boot partition"
-msgstr "Açýlýţ bölümünün ilk sektoru"
+msgstr "Açýlýţ qisminin ilk sektoru"
-#: ../../any.pm_.c:91 ../../any.pm_.c:121 ../../any.pm_.c:150
-#: ../../any_new.pm_.c:91 ../../any_new.pm_.c:121 ../../any_new.pm_.c:150
+#: ../../any.pm_.c:99 ../../any.pm_.c:124 ../../any.pm_.c:196
msgid "First sector of drive (MBR)"
msgstr "Diskin ilk sektoru (MBR)"
-#: ../../any.pm_.c:95 ../../any_new.pm_.c:95
+#: ../../any.pm_.c:103
msgid "SILO Installation"
-msgstr "LILO/grup Qurulumu"
+msgstr "SILO Qurulumu"
-#: ../../any.pm_.c:96 ../../any.pm_.c:102 ../../any_new.pm_.c:96
-#: ../../any_new.pm_.c:102
+#: ../../any.pm_.c:104 ../../any.pm_.c:117
msgid "Where do you want to install the bootloader?"
-msgstr "Sistem yüklćyiciyi haraya qurmaq istćyirsiniz?"
+msgstr "Sistem yüklćyicisini haraya qurmaq istćyirsiniz?"
-#: ../../any.pm_.c:101 ../../any_new.pm_.c:101
+#: ../../any.pm_.c:116
msgid "LILO/grub Installation"
msgstr "LILO/grup Qurulumu"
-#: ../../any.pm_.c:111 ../../any_new.pm_.c:111
-#: ../../install_steps_interactive.pm_.c:736
-msgid "None"
-msgstr "Heçbiri"
+#: ../../any.pm_.c:128 ../../any.pm_.c:142
+msgid "SILO"
+msgstr "SILO"
+
+#: ../../any.pm_.c:130
+msgid "LILO with text menu"
+msgstr "Mćtn menyulu LILO"
-#: ../../any.pm_.c:111 ../../any_new.pm_.c:111
-msgid "Which bootloader(s) do you want to use?"
-msgstr "Hansý açýlýţ yüklćyicilćrini istifadć etmćk istćyirsiniz?"
+#: ../../any.pm_.c:131 ../../any.pm_.c:142
+msgid "LILO with graphical menu"
+msgstr "Qrafiki menyulu LILO"
-#: ../../any.pm_.c:125 ../../any_new.pm_.c:125
+#: ../../any.pm_.c:134
+msgid "Grub"
+msgstr "Grub"
+
+#: ../../any.pm_.c:138
+msgid "Boot from DOS/Windows (loadlin)"
+msgstr "\"DOS/WÝndows\"dan açýl (loadlin)"
+
+#: ../../any.pm_.c:140 ../../any.pm_.c:142
+msgid "Yaboot"
+msgstr "Yaboot"
+
+#: ../../any.pm_.c:148 ../../any.pm_.c:179
+msgid "Bootloader main options"
+msgstr "Sistem yüklćyicisi ana seçćnćklćri"
+
+#: ../../any.pm_.c:149 ../../any.pm_.c:180
+msgid "Bootloader to use"
+msgstr "Ýstifadć edilćcćk Açýlýţ idarćcisi"
+
+#: ../../any.pm_.c:151
msgid "Bootloader installation"
-msgstr "Sistem yüklćyici ana seçćnćklćri"
+msgstr "Açýlýţ yüklćyici qurul÷ţu"
-#: ../../any.pm_.c:127 ../../any_new.pm_.c:127
+#: ../../any.pm_.c:153 ../../any.pm_.c:182
msgid "Boot device"
msgstr "Açýlýţ avadanlýđý"
-#: ../../any.pm_.c:128 ../../any_new.pm_.c:128
+#: ../../any.pm_.c:154
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (köhnć BIOS'larda iţlćmćz)"
-#: ../../any.pm_.c:129 ../../any_new.pm_.c:129
+#: ../../any.pm_.c:155
msgid "Compact"
msgstr "Bćsit"
-#: ../../any.pm_.c:129 ../../any_new.pm_.c:129
+#: ../../any.pm_.c:155
msgid "compact"
msgstr "bćsit"
-#: ../../any.pm_.c:130 ../../any.pm_.c:199 ../../any_new.pm_.c:130
-#: ../../any_new.pm_.c:199
+#: ../../any.pm_.c:156 ../../any.pm_.c:255
msgid "Video mode"
msgstr "Ekran modu"
-#: ../../any.pm_.c:132 ../../any_new.pm_.c:132
+#: ../../any.pm_.c:158
msgid "Delay before booting default image"
msgstr "Açýlýţda gecikmć müddćti"
-#: ../../any.pm_.c:134 ../../any_new.pm_.c:134
-#: ../../install_steps_interactive.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:815 ../../netconnect.pm_.c:560
-#: ../../netconnect_new.pm_.c:686 ../../printerdrake.pm_.c:94
-#: ../../printerdrake.pm_.c:128 ../../standalone/adduserdrake_.c:42
+#: ../../any.pm_.c:160 ../../any.pm_.c:737
+#: ../../install_steps_interactive.pm_.c:904 ../../netconnect.pm_.c:627
+#: ../../printerdrake.pm_.c:98 ../../printerdrake.pm_.c:132
+#: ../../standalone/draknet_.c:567
msgid "Password"
msgstr "Parol"
-#: ../../any.pm_.c:135 ../../any_new.pm_.c:135
-#: ../../install_steps_interactive.pm_.c:765
-#: ../../install_steps_interactive.pm_.c:816
-#: ../../standalone/adduserdrake_.c:43
+#: ../../any.pm_.c:161 ../../any.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:905
msgid "Password (again)"
-msgstr "Parol (tekrar)"
+msgstr "Parol (tćkrar)"
-#: ../../any.pm_.c:136 ../../any_new.pm_.c:136
+#: ../../any.pm_.c:162
msgid "Restrict command line options"
msgstr "Ćmr sćtiri seçćnćklćrini mćhdudlaţdýr"
-#: ../../any.pm_.c:136 ../../any_new.pm_.c:136
+#: ../../any.pm_.c:162
msgid "restrict"
msgstr "mćhdudlaţdýr"
-#: ../../any.pm_.c:142 ../../any_new.pm_.c:142
-msgid "Bootloader main options"
-msgstr "Sistem yüklćyicisi ana seçćnćklćri"
+#: ../../any.pm_.c:164
+msgid "Clean /tmp at each boot"
+msgstr "/tmp'yi hćr açýlýţda tćmizlć"
+
+#: ../../any.pm_.c:165
+#, c-format
+msgid "Precise RAM size if needed (found %d MB)"
+msgstr "Ümumi yaddaţ miqdarý (%d MB tapýldý)"
-#: ../../any.pm_.c:145 ../../any_new.pm_.c:145
+#: ../../any.pm_.c:167
+msgid "Enable multi profiles"
+msgstr "Birdćn artýq profilć icazć ver"
+
+#: ../../any.pm_.c:171
+msgid "Give the ram size in MB"
+msgstr "Yaddaţ miqdarýný Mb cinsindćn verin"
+
+#: ../../any.pm_.c:173
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"``Ćmr sćtiri seçćnćklćrini mćhdudlaţdýr`` seçćnćyi parolsuz bir iţć yaramaz"
-#: ../../any.pm_.c:146 ../../any_new.pm_.c:146
-#: ../../install_steps_interactive.pm_.c:774
-#: ../../install_steps_interactive.pm_.c:829
-#: ../../standalone/adduserdrake_.c:56
+#: ../../any.pm_.c:174 ../../any.pm_.c:714
+#: ../../install_steps_interactive.pm_.c:899
msgid "Please try again"
-msgstr "Lütfćn tekrar sýnayýn"
+msgstr "Lütfćn tćkrar sýnayýn"
-#: ../../any.pm_.c:146 ../../any_new.pm_.c:146
-#: ../../install_steps_interactive.pm_.c:774
-#: ../../install_steps_interactive.pm_.c:829
-#: ../../standalone/adduserdrake_.c:56
+#: ../../any.pm_.c:174 ../../any.pm_.c:714
+#: ../../install_steps_interactive.pm_.c:899
msgid "The passwords do not match"
-msgstr "Parollar uymur"
+msgstr "Parollar uyđun gćlmir"
-#: ../../any.pm_.c:157 ../../any_new.pm_.c:157
+#: ../../any.pm_.c:181
+msgid "Init Message"
+msgstr "Ýlk Ýsmarýcý"
+
+#: ../../any.pm_.c:183
+msgid "Open Firmware Delay"
+msgstr "\"Firmware\" Gecikmćsini Aç"
+
+#: ../../any.pm_.c:184
+msgid "Kernel Boot Timeout"
+msgstr "Çćkirdćk Açýlýţý Vaxt Dolmasý"
+
+#: ../../any.pm_.c:185
+msgid "Enable CD Boot?"
+msgstr "\"CD\"dćn Açýlýţý Fćallaţdýrýmmý?"
+
+#: ../../any.pm_.c:186
+msgid "Enable OF Boot?"
+msgstr "\"OF\" Açýlýţý Fćallaţdýrýmmý?"
+
+#: ../../any.pm_.c:187
+msgid "Default OS?"
+msgstr "Ćsas OS"
+
+#: ../../any.pm_.c:209
msgid ""
"Here are the different entries.\n"
"You can add some more or change the existing ones."
msgstr ""
-"Buradaký birbirindćn fćrqli seçćnćklćrć tćzćlćrini ćlavć edćbilćr,\n"
+"Buradaký bir birindćn fćrqli seçćnćklćrć yenilćrini ćlavć edć bilćr,\n"
"ya da mövcud olanlarý dćyiţdirć bilćrsiniz."
-#: ../../any.pm_.c:165 ../../any_new.pm_.c:165 ../../printerdrake.pm_.c:352
-#: ../../standalone/rpmdrake_.c:302
+#: ../../any.pm_.c:219 ../../printerdrake.pm_.c:356
msgid "Add"
msgstr "Ćlavć et"
-#: ../../any.pm_.c:165 ../../any_new.pm_.c:165 ../../diskdrake.pm_.c:46
-#: ../../install_steps_interactive.pm_.c:809 ../../netconnect.pm_.c:842
-#: ../../netconnect_new.pm_.c:984 ../../printerdrake.pm_.c:352
-#: ../../standalone/adduserdrake_.c:36
+#: ../../any.pm_.c:219 ../../any.pm_.c:725 ../../diskdrake.pm_.c:46
+#: ../../printerdrake.pm_.c:356
msgid "Done"
msgstr "Bitdi"
-#: ../../any.pm_.c:174 ../../any_new.pm_.c:174
+#: ../../any.pm_.c:219
+#, fuzzy
+msgid "Modify"
+msgstr "RAID'i dćyiţdir"
+
+#: ../../any.pm_.c:227
msgid "Which type of entry do you want to add?"
msgstr "Ne cür bir giriţ istćyirsiniz?"
-#: ../../any.pm_.c:175 ../../any_new.pm_.c:175
+#: ../../any.pm_.c:228
msgid "Linux"
-msgstr "Linux"
+msgstr "Linuks"
-#: ../../any.pm_.c:175 ../../any_new.pm_.c:175
+#: ../../any.pm_.c:228
msgid "Other OS (SunOS...)"
msgstr "Digćr sistemlćr (SunOS...)"
-#: ../../any.pm_.c:175 ../../any_new.pm_.c:175
+#: ../../any.pm_.c:229
+msgid "Other OS (MacOS...)"
+msgstr "Digćr sistemlćr (MacOS...)"
+
+#: ../../any.pm_.c:229
msgid "Other OS (windows...)"
msgstr "Digćr sistemlćr (windows...)"
-#: ../../any.pm_.c:196 ../../any_new.pm_.c:196
+#: ../../any.pm_.c:249 ../../any.pm_.c:251
msgid "Image"
-msgstr "Rćsm"
+msgstr "Ćks"
-#: ../../any.pm_.c:197 ../../any.pm_.c:206 ../../any_new.pm_.c:197
-#: ../../any_new.pm_.c:206
+#: ../../any.pm_.c:252 ../../any.pm_.c:263
msgid "Root"
msgstr "Kök"
-#: ../../any.pm_.c:198 ../../any_new.pm_.c:198
+#: ../../any.pm_.c:253 ../../any.pm_.c:282
msgid "Append"
msgstr "Sonuna ćlavć et"
-#: ../../any.pm_.c:200 ../../any_new.pm_.c:200
+#: ../../any.pm_.c:257
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:201 ../../any_new.pm_.c:201
+#: ../../any.pm_.c:258
msgid "Read-write"
msgstr "Oxu-yaz"
-#: ../../any.pm_.c:208 ../../any_new.pm_.c:208
+#: ../../any.pm_.c:265
msgid "Table"
msgstr "Cćdvćl"
-#: ../../any.pm_.c:209 ../../any_new.pm_.c:209
+#: ../../any.pm_.c:266
msgid "Unsafe"
msgstr "E'tibarsýz"
-#: ../../any.pm_.c:215 ../../any_new.pm_.c:215
+#: ../../any.pm_.c:273 ../../any.pm_.c:278 ../../any.pm_.c:281
msgid "Label"
msgstr "Etiket"
-#: ../../any.pm_.c:217 ../../any_new.pm_.c:217
+#: ../../any.pm_.c:275 ../../any.pm_.c:286
msgid "Default"
msgstr "Ćsas"
-#: ../../any.pm_.c:220 ../../any_new.pm_.c:220 ../../install_gtk.pm_.c:82
-#: ../../install_steps_interactive.pm_.c:762 ../../interactive.pm_.c:76
-#: ../../interactive.pm_.c:86 ../../interactive.pm_.c:250
-#: ../../interactive_newt.pm_.c:51 ../../interactive_newt.pm_.c:99
-#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:243
-#: ../../my_gtk.pm_.c:486 ../../my_gtk.pm_.c:661 ../../printerdrake.pm_.c:444
-#: ../../printerdrake.pm_.c:464
-msgid "Ok"
-msgstr "Oldu"
+#: ../../any.pm_.c:283
+msgid "Initrd-size"
+msgstr "Initrd böyüklüyü"
+
+#: ../../any.pm_.c:285
+msgid "NoVideo"
+msgstr "NoVÝdeo"
-#: ../../any.pm_.c:220 ../../any_new.pm_.c:220
+#: ../../any.pm_.c:293
msgid "Remove entry"
msgstr "Giriţi sil"
-#: ../../any.pm_.c:223 ../../any_new.pm_.c:223
+#: ../../any.pm_.c:296
msgid "Empty label not allowed"
msgstr "Boţ etiket qćbul edilć bilmćz"
-#: ../../any.pm_.c:224 ../../any_new.pm_.c:224
+#: ../../any.pm_.c:297
msgid "This label is already used"
msgstr "Bu etiket istifadć edilmćz"
-#: ../../any.pm_.c:500 ../../any_new.pm_.c:492
+#: ../../any.pm_.c:316
+msgid "What type of partitioning?"
+msgstr "Nćcć bölmćlandirmć istćyirsćn?"
+
+#: ../../any.pm_.c:604
#, c-format
msgid "Found %s %s interfaces"
-msgstr "%s %s ara üzü tapýldý"
+msgstr "%s %s axtar üzü tapýldý"
-#: ../../any.pm_.c:501 ../../any_new.pm_.c:493
+#: ../../any.pm_.c:605
msgid "Do you have another one?"
-msgstr "Baţqa var mý?"
+msgstr "Baţqa varmý?"
-#: ../../any.pm_.c:502 ../../any_new.pm_.c:494
+#: ../../any.pm_.c:606
#, c-format
msgid "Do you have any %s interfaces?"
-msgstr "Heç %s ara üzü varmý?"
+msgstr "Heç %s axtar üzü varmý?"
-#: ../../any.pm_.c:504 ../../any_new.pm_.c:496 ../../interactive.pm_.c:81
-#: ../../my_gtk.pm_.c:485 ../../netconnect.pm_.c:90 ../../netconnect.pm_.c:470
-#: ../../netconnect_new.pm_.c:148 ../../netconnect_new.pm_.c:509
-#: ../../printerdrake.pm_.c:233
+#: ../../any.pm_.c:608 ../../interactive.pm_.c:100 ../../my_gtk.pm_.c:615
+#: ../../printerdrake.pm_.c:237
msgid "No"
msgstr "Xeyr"
-#: ../../any.pm_.c:504 ../../any_new.pm_.c:496 ../../interactive.pm_.c:81
-#: ../../my_gtk.pm_.c:485 ../../netconnect.pm_.c:88 ../../netconnect.pm_.c:468
-#: ../../netconnect_new.pm_.c:146 ../../netconnect_new.pm_.c:507
+#: ../../any.pm_.c:608 ../../interactive.pm_.c:100 ../../my_gtk.pm_.c:615
msgid "Yes"
msgstr "Bćli"
-#: ../../any.pm_.c:505 ../../any_new.pm_.c:497
+#: ../../any.pm_.c:609
msgid "See hardware info"
-msgstr "Avadanlýq bilgilćrinć bax"
+msgstr "Avadanlýq mć'lumatýna bax"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:522 ../../any_new.pm_.c:533
+#: ../../any.pm_.c:644
#, c-format
msgid "Installing driver for %s card %s"
msgstr "%s kartý (%s) üçün sürücü yüklćnir"
-#: ../../any.pm_.c:523 ../../any_new.pm_.c:534
+#: ../../any.pm_.c:645
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:534 ../../any_new.pm_.c:545
+#: ../../any.pm_.c:656
#, c-format
msgid "Which %s driver should I try?"
msgstr "Hansý %s sürücüsü sýnansýn?"
-#: ../../any.pm_.c:542 ../../any_new.pm_.c:553
+#: ../../any.pm_.c:664
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -717,26 +780,26 @@ msgid ""
"should\n"
"not cause any damage."
msgstr ""
-"Bćzi hallarda, %s sürücü düzgün iţlćmćsi üçün ćlavć bilgi istćyćbilćr.\n"
-"Sürücüler üçün ćlavć bir xüsusiyyćt göstćrmćk mi istćyćrsiniz, yoxsa\n"
-"sürücülćrin lazými bilgilćr üçün avadalýđý tanýmasýný mý istćyćrsiniz? \n"
-"Bćzćn tanýmlama bilgisayarýnýzý dondura bilćr amma donduđu üçün\n"
-"bilgisayarýnýza heç bir ţey olmaz."
+"Bćzi hallarda, %s sürücü düzgün iţlćmćsi üçün ćlavć mć'lumat istćyć bilćr.\n"
+"Sürücüler üçün ćlavć bir xüsusiyyćt göstćrmćkmi istćyćrsiniz, yoxsa\n"
+"sürücülćrin lazými mć'lumatlar üçün avadalýđý tanýmasýnýmý istćyćrsiniz? \n"
+"Bćzćn tanýmlama kompüterinizi dondura bilćr amma donduđu üçün\n"
+"kompüterinizć heç bir ţey olmaz."
-#: ../../any.pm_.c:547 ../../any_new.pm_.c:558
+#: ../../any.pm_.c:669
msgid "Autoprobe"
msgstr "Avtomatik yoxla"
-#: ../../any.pm_.c:547 ../../any_new.pm_.c:558
+#: ../../any.pm_.c:669
msgid "Specify options"
msgstr "Seçćnćklćri göstćr"
-#: ../../any.pm_.c:551 ../../any_new.pm_.c:562
+#: ../../any.pm_.c:673
#, c-format
msgid "You may now provide its options to module %s."
msgstr "Ýndi %s moduluna parametrlćr girć bilćrsiniz."
-#: ../../any.pm_.c:557 ../../any_new.pm_.c:568
+#: ../../any.pm_.c:679
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -747,25 +810,104 @@ msgstr ""
"Parametrlćr``ad=qiymćt ad2=qiymćt2...'' ţćklindć olmalýdýr.\n"
"Mćsćlćn ``io=0x300 irq=7''"
-#: ../../any.pm_.c:560 ../../any_new.pm_.c:571
+#: ../../any.pm_.c:682
msgid "Module options:"
msgstr "Modul seçćnćklćri:"
-#: ../../any.pm_.c:570 ../../any_new.pm_.c:581
+#: ../../any.pm_.c:693
#, c-format
msgid ""
"Loading module %s failed.\n"
"Do you want to try again with other parameters?"
msgstr ""
"%s modulunun yüklćnmćsi iflas etdi.\n"
-"Tćzćdćn baţqa bir parametr ilć sýnamaq istćyirsinizmi?"
+"Yenidćn baţqa bir parametr ilć sýnamaq istćyirsinizmi?"
+
+#: ../../any.pm_.c:711
+#, c-format
+msgid "(already added %s)"
+msgstr "(%s artýq ćlavć edilmiţdir)"
+
+#: ../../any.pm_.c:715
+msgid "This password is too simple"
+msgstr "Zćif parol seçdiniz!"
+
+#: ../../any.pm_.c:716
+msgid "Please give a user name"
+msgstr "Lütfćn bir istifadćçi adý alýn"
+
+#: ../../any.pm_.c:717
+msgid ""
+"The user name must contain only lower cased letters, numbers, `-' and `_'"
+msgstr ""
+"Ýstifadćçi adýnda sadacć kiçik hćrflćr, rćqćmlćr, `-' vć `_' xarakterlćri "
+"ola bilćr"
+
+#: ../../any.pm_.c:718
+msgid "This user name is already added"
+msgstr "Bu istifadćçi adý artýq vardýr"
+
+#: ../../any.pm_.c:722
+msgid "Add user"
+msgstr "Ýstifadćçiyi ćlavć et"
+
+#: ../../any.pm_.c:723
+#, c-format
+msgid ""
+"Enter a user\n"
+"%s"
+msgstr ""
+"Bir istifadćçi girin\n"
+"%s"
+
+#: ../../any.pm_.c:724
+msgid "Accept user"
+msgstr "Ýstifadćçiyi qćbul et"
+
+#: ../../any.pm_.c:735
+msgid "Real name"
+msgstr "Hćqiqi adý"
+
+#: ../../any.pm_.c:736 ../../printerdrake.pm_.c:97
+#: ../../printerdrake.pm_.c:131
+msgid "User name"
+msgstr "Ýstifadćçi adý"
+
+#: ../../any.pm_.c:739
+msgid "Shell"
+msgstr "Qabýq"
+
+#: ../../any.pm_.c:741
+msgid "Icon"
+msgstr "Timsal"
+
+#: ../../any.pm_.c:762
+msgid "Autologin"
+msgstr "Avtomatik Giriţ"
+
+#: ../../any.pm_.c:763
+msgid ""
+"I can set up your computer to automatically log on one user.\n"
+"If you don't want to use this feature, click on the cancel button."
+msgstr ""
+"Kompüterinizi avtomatik olaraq bir istifadćçi ilć baţlada bilćrćm.\n"
+"Ýstćmirsiniz isć rćdd edin."
+
+#: ../../any.pm_.c:765
+msgid "Choose the default user:"
+msgstr "Ćsas istifadćçiyi seçin:"
+
+#: ../../any.pm_.c:766
+msgid "Choose the window manager to run:"
+msgstr "Ýstifadć etmćk istćdiyiniz pćncćrć idarćcisini seçin:"
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
-#
-#: ../../bootloader.pm_.c:234
+#
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#: ../../bootloader.pm_.c:262
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -774,10 +916,10 @@ msgid ""
"wait %d seconds for default boot.\n"
"\n"
msgstr ""
-"%s islatim sistemi secim proqramina xosgelmissiniz!\n"
+"%s islćtim sistemi secim proqramina xos gćlmissiniz!\n"
"\n"
-"Iclerinden birini acmaq ucun adini yazin ve <ENTER>\n"
-"duymesine basin ve ya esas acilis ucun %d saniye gozleyin.\n"
+"Içlćrindćn birini acmaq ucun adini yazin vć <ENTER>\n"
+"duymćsinć basin vć ya ćsas acilis ucun %d saniyć gozlćyin.\n"
"\n"
# NOTE: this message will be displayed by grub at boot time; that is
@@ -788,9 +930,10 @@ msgstr ""
# The lines must fit on screen, aka length < 80
# and only one line per string for the GRUB messages
#
-#: ../../bootloader.pm_.c:596
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#: ../../bootloader.pm_.c:795
msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Islatim sistemi secici GRUB'a xosgelmissiniz!"
+msgstr "Islćtim sistemi secici GRUB'a xos gćlmissiniz!"
# NOTE: this message will be displayed by grub at boot time; that is
# using the BIOS font; that means cp437 charset on 99.99% of PC computers
@@ -800,10 +943,10 @@ msgstr "Islatim sistemi secici GRUB'a xosgelmissiniz!"
# The lines must fit on screen, aka length < 80
# and only one line per string for the GRUB messages
#
-#: ../../bootloader.pm_.c:597
+#: ../../bootloader.pm_.c:796
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "%c va %c duymelari ila aydinlatilmis girislei sece bilersiniz"
+msgstr "%c va %c duymćlćri ilć iţýqlandýrýlmýţ giriţlćri seçć bilćrsiniz"
# NOTE: this message will be displayed by grub at boot time; that is
# using the BIOS font; that means cp437 charset on 99.99% of PC computers
@@ -813,9 +956,9 @@ msgstr "%c va %c duymelari ila aydinlatilmis girislei sece bilersiniz"
# The lines must fit on screen, aka length < 80
# and only one line per string for the GRUB messages
#
-#: ../../bootloader.pm_.c:598
+#: ../../bootloader.pm_.c:797
msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Sistemi secili isletim sistemiyle acmaq ucun entere,"
+msgstr "Sistemi secili islćtim sistemiylć acmaq ucun enterć,"
# NOTE: this message will be displayed by grub at boot time; that is
# using the BIOS font; that means cp437 charset on 99.99% of PC computers
@@ -825,10 +968,10 @@ msgstr "Sistemi secili isletim sistemiyle acmaq ucun entere,"
# The lines must fit on screen, aka length < 80
# and only one line per string for the GRUB messages
#
-#: ../../bootloader.pm_.c:599
+#: ../../bootloader.pm_.c:798
msgid "commands before booting, or 'c' for a command-line."
msgstr ""
-"acilisdan evvel emrleri teskil etmek ucun 'e', emrsetiri ucun ise'c' basin"
+"acilisdan ćvvćl ćmrlćri duzćltmćk ucun 'e', ćmr sćtiri ucun isć 'c' basin"
# NOTE: this message will be displayed by grub at boot time; that is
# using the BIOS font; that means cp437 charset on 99.99% of PC computers
@@ -838,39 +981,219 @@ msgstr ""
# The lines must fit on screen, aka length < 80
# and only one line per string for the GRUB messages
#
-#: ../../bootloader.pm_.c:600
+#: ../../bootloader.pm_.c:799
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "Isaretli secenek %d saniye icinde sistemi acacaq."
+msgstr "Isarćtli seçćnćk %d saniyć icindć sistemi acacaq."
-#: ../../bootloader.pm_.c:604
+#: ../../bootloader.pm_.c:803
msgid "not enough room in /boot"
msgstr "/boot içindć lazými yer yoxdur"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:696
+#: ../../bootloader.pm_.c:895
msgid "Desktop"
-msgstr "Desktop"
+msgstr "Masa Üstü"
-#: ../../bootloader.pm_.c:696
+#: ../../bootloader.pm_.c:895
msgid "Start Menu"
-msgstr "Start Menu"
+msgstr "Baţlama Menyusu"
+
+#: ../../bootlook.pm_.c:46
+msgid "no help implemented yet.\n"
+msgstr "hćlćlik kömćk sistemi mövcud deyildir.\n"
+
+#: ../../bootlook.pm_.c:62
+msgid "Boot Style Configuration"
+msgstr "Qurulum Tćrzi Quraţdýrýlmasý"
+
+#: ../../bootlook.pm_.c:79
+msgid "/_File"
+msgstr "/_Fayl"
+
+#: ../../bootlook.pm_.c:81
+msgid "/File/_New"
+msgstr "/Fayl/_Yeni"
+
+#: ../../bootlook.pm_.c:82
+msgid "<control>N"
+msgstr "<control>Y"
+
+#: ../../bootlook.pm_.c:84
+msgid "/File/_Open"
+msgstr "/Fayl/_Aç"
+
+#: ../../bootlook.pm_.c:85
+msgid "<control>O"
+msgstr "<control>A"
+
+#: ../../bootlook.pm_.c:87
+msgid "/File/_Save"
+msgstr "/Fayl/_Qeyd Et"
+
+#: ../../bootlook.pm_.c:88
+msgid "<control>S"
+msgstr "<control>Q"
+
+#: ../../bootlook.pm_.c:90
+msgid "/File/Save _As"
+msgstr "/Fayl/_Fćrqli Qeyd Et"
-#: ../../common.pm_.c:610
+#: ../../bootlook.pm_.c:91
+msgid "/File/-"
+msgstr "/Fayl/-"
+
+#: ../../bootlook.pm_.c:93
+msgid "/File/_Quit"
+msgstr "/Fayl/Çý_x"
+
+#: ../../bootlook.pm_.c:94
+msgid "<control>Q"
+msgstr "<control>x"
+
+#: ../../bootlook.pm_.c:96
+msgid "/_Options"
+msgstr "/_Seçćnćklćr"
+
+#: ../../bootlook.pm_.c:98
+msgid "/Options/Test"
+msgstr "/Seçćnćklćr/Sýnaq"
+
+#: ../../bootlook.pm_.c:99
+msgid "/_Help"
+msgstr "/_Kömćk"
+
+#: ../../bootlook.pm_.c:101
+msgid "/Help/_About..."
+msgstr "/Kömćk/_Haqqýnda..."
+
+#: ../../bootlook.pm_.c:111 ../../standalone/drakgw_.c:634
+#: ../../standalone/draknet_.c:262 ../../standalone/tinyfirewall_.c:57
+msgid "Configure"
+msgstr "Qur"
+
+#: ../../bootlook.pm_.c:114
+#, fuzzy, c-format
+msgid ""
+"You are currently using %s as Boot Manager.\n"
+"Click on Configure to launch the setup wizard."
+msgstr ""
+"Ýnternet Bađlantýsý Bölüţdürmć vasitćsinć Xoţ Gćldiniz!\n"
+"\n"
+"%s\n"
+"\n"
+"Quraţdýrma sehirbazýný açmaq üçün ``OLDU''ya týqlayýn."
+
+#: ../../bootlook.pm_.c:121
+#, fuzzy
+msgid "Lilo/grub mode"
+msgstr "Yýđma modu"
+
+#: ../../bootlook.pm_.c:131
+msgid "NewStyle Categorizing Monitor"
+msgstr "\"NewStyle\" Kateqoriyasýndan Monitor"
+
+#: ../../bootlook.pm_.c:134
+msgid "NewStyle Monitor"
+msgstr "\"NewStyle\" Monitor"
+
+#: ../../bootlook.pm_.c:137
+msgid "Traditional Monitor"
+msgstr "Ćnćnćvi Monitor"
+
+#: ../../bootlook.pm_.c:140
+msgid "Traditional Gtk+ Monitor"
+msgstr "Ćnćnćvi Gtk+ Monitor"
+
+#: ../../bootlook.pm_.c:144
+msgid "Launch Aurora at boot time"
+msgstr "Açýlýţda Auroraný baţlat"
+
+#: ../../bootlook.pm_.c:169
+msgid "Boot mode"
+msgstr "Açýlýţ modu"
+
+#: ../../bootlook.pm_.c:179
+msgid "Launch the X-Window system at start"
+msgstr "Açýlýţda X-Window sistemini baţlat"
+
+#: ../../bootlook.pm_.c:187
+msgid "No, I don't want autologin"
+msgstr "Xeyr, Avtomatik giriţ istćmirćm"
+
+#: ../../bootlook.pm_.c:193
+msgid "Yes, I want autologin with this (user, desktop)"
+msgstr ""
+"Bćli, bu istifadaçi üçün avtoamtik giriţ istćyirćm (istifadćçi, masa üstü)"
+
+#: ../../bootlook.pm_.c:210
+msgid "System mode"
+msgstr "Sistem modu"
+
+#: ../../bootlook.pm_.c:218 ../../standalone/draknet_.c:88
+#: ../../standalone/draknet_.c:120 ../../standalone/draknet_.c:184
+#: ../../standalone/draknet_.c:302 ../../standalone/draknet_.c:394
+#: ../../standalone/draknet_.c:471 ../../standalone/draknet_.c:507
+#: ../../standalone/draknet_.c:609
+msgid "OK"
+msgstr "Oldu"
+
+#: ../../bootlook.pm_.c:220 ../../install_steps_gtk.pm_.c:576
+#: ../../interactive.pm_.c:110 ../../interactive.pm_.c:265
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:357
+#: ../../my_gtk.pm_.c:360 ../../my_gtk.pm_.c:616
+#: ../../standalone/drakgw_.c:639 ../../standalone/draknet_.c:95
+#: ../../standalone/draknet_.c:127 ../../standalone/draknet_.c:295
+#: ../../standalone/draknet_.c:483 ../../standalone/draknet_.c:623
+#: ../../standalone/tinyfirewall_.c:63
+msgid "Cancel"
+msgstr "Lćđv et"
+
+#: ../../bootlook.pm_.c:297
+msgid "can not open /etc/inittab for reading: $!"
+msgstr "/etc/inittab oxunmaq üçün açýla bilmir: $!"
+
+#: ../../bootlook.pm_.c:351
+msgid "can not open /etc/sysconfig/autologin for reading: $!"
+msgstr "/etc/sysconfig/autologin oxunmaq üçün açýla bilmir: $!"
+
+#: ../../bootlook.pm_.c:416 ../../standalone/drakboot_.c:47
+msgid "Installation of LILO failed. The following error occured:"
+msgstr "LILO qurulumu iflas etdi. Olan xćta:"
+
+#: ../../common.pm_.c:634
+msgid "GB"
+msgstr "GB"
+
+#: ../../common.pm_.c:634
+msgid "KB"
+msgstr "KB"
+
+#: ../../common.pm_.c:634 ../../diskdrake.pm_.c:660
+#: ../../install_steps_graphical.pm_.c:287
+#: ../../install_steps_graphical.pm_.c:334
+msgid "MB"
+msgstr "MB"
+
+#: ../../common.pm_.c:642
+msgid "TB"
+msgstr "TB"
+
+#: ../../common.pm_.c:655
#, c-format
msgid "%d minutes"
msgstr "%d dćqiqć"
-#: ../../common.pm_.c:612
+#: ../../common.pm_.c:657
msgid "1 minute"
msgstr "1 dćqiqć"
-#: ../../common.pm_.c:614
+#: ../../common.pm_.c:659
#, c-format
msgid "%d seconds"
msgstr "%d saniyć sonra çýxýlýr"
-#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:427
+#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:462
msgid "Create"
msgstr "Yarat"
@@ -878,7 +1201,7 @@ msgstr "Yarat"
msgid "Unmount"
msgstr "Ayýr"
-#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:429
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:464
msgid "Delete"
msgstr "Sil"
@@ -886,16 +1209,16 @@ msgstr "Sil"
msgid "Format"
msgstr "Ţćkillćndir"
-#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:610
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:653
msgid "Resize"
-msgstr "Tćzćdćn Ölç"
+msgstr "Yenidćn Ölç"
-#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:427
-#: ../../diskdrake.pm_.c:480
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:462
+#: ../../diskdrake.pm_.c:518
msgid "Type"
msgstr "Növ"
-#: ../../diskdrake.pm_.c:24 ../../diskdrake.pm_.c:500
+#: ../../diskdrake.pm_.c:24 ../../diskdrake.pm_.c:539
msgid "Mount point"
msgstr "Bađlama nöqtćsi"
@@ -913,11 +1236,11 @@ msgstr "Normal moda keç"
#: ../../diskdrake.pm_.c:41
msgid "Restore from file"
-msgstr "Dosyedćn geri çađýr"
+msgstr "Fayldan geri çađýr"
#: ../../diskdrake.pm_.c:42
msgid "Save in file"
-msgstr "Dosyeyć qeyd et"
+msgstr "Fayla qeyd et"
#: ../../diskdrake.pm_.c:43
msgid "Wizard"
@@ -935,85 +1258,82 @@ msgstr "Disketć qeyd et"
msgid "Clear all"
msgstr "Hamýsýný tćmizlć"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "Format all"
msgstr "Hamýsýný ţćkillćndir"
-#: ../../diskdrake.pm_.c:51
+#: ../../diskdrake.pm_.c:55
msgid "Auto allocate"
msgstr "Avtomatik ayýr"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:59
msgid "All primary partitions are used"
-msgstr "Bütün birinci bölmćlćr istifadćdć"
+msgstr "Bütün birinci bölmćlćr istifadćdćdir"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:59
msgid "I can't add any more partition"
msgstr "Artýq bölmć ćlavć edilć bilmćz"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:59
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr "Artýq bölmć yaratmaq üçün, bir bölmćyi silib mćntiqi bölmć yaradýn"
-#: ../../diskdrake.pm_.c:57
-msgid "Rescue partition table"
-msgstr "Bölüm cćdvćlini qurtar"
+#: ../../diskdrake.pm_.c:61
+msgid "Not enough space for auto-allocating"
+msgstr "Avtomatik yerlćţdirmć üçün boţ sahć yoxdur"
-#: ../../diskdrake.pm_.c:58
+#: ../../diskdrake.pm_.c:63
msgid "Undo"
msgstr "Geri al"
-#: ../../diskdrake.pm_.c:59
+#: ../../diskdrake.pm_.c:64
msgid "Write partition table"
msgstr "Bölüm cćdvćlini Yaz"
-#: ../../diskdrake.pm_.c:60
-msgid "Reload"
-msgstr "Tćzćdćn yüklć"
-
-#: ../../diskdrake.pm_.c:101
-msgid "loopback"
-msgstr "loopback"
+#: ../../diskdrake.pm_.c:65 ../../install_steps_interactive.pm_.c:185
+msgid "More"
+msgstr "Daha Çox"
-#: ../../diskdrake.pm_.c:114
+#: ../../diskdrake.pm_.c:116
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake.pm_.c:114
+#: ../../diskdrake.pm_.c:116
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake.pm_.c:114
+#: ../../diskdrake.pm_.c:116
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake.pm_.c:114
+#: ../../diskdrake.pm_.c:116
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake.pm_.c:114
+#: ../../diskdrake.pm_.c:116
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake.pm_.c:115
+#: ../../diskdrake.pm_.c:117
msgid "Empty"
msgstr "Boţ"
-#: ../../diskdrake.pm_.c:115 ../../mouse.pm_.c:125
+#: ../../diskdrake.pm_.c:117 ../../install_steps_gtk.pm_.c:407
+#: ../../mouse.pm_.c:145
msgid "Other"
msgstr "Digćr"
-#: ../../diskdrake.pm_.c:121
+#: ../../diskdrake.pm_.c:123
msgid "Filesystem types:"
-msgstr "Dosye sistemi növü:"
+msgstr "Fayl sistemi növü:"
-#: ../../diskdrake.pm_.c:130
+#: ../../diskdrake.pm_.c:132 ../../install_steps_gtk.pm_.c:577
msgid "Details"
-msgstr "Ayrýntýlar"
+msgstr "Ćtraflý"
-#: ../../diskdrake.pm_.c:144
+#: ../../diskdrake.pm_.c:147
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1022,21 +1342,21 @@ msgid ""
msgstr ""
"Tćk bir böyük disk bölmćniz var\n"
"(ćsasćn MS DOS/Windows istifadć edćr).\n"
-"Ćvvćlcć bu disk bölmćsinin boyunu dćyiţdirmćyinizi\n"
-"tövsiyć edirik. Ćvvćlcć bölmćnnin üstünć, sonra \"Tćzćdćn\n"
+"Ćvvćlcć bu disk bölmćsinin böyüklüyünü dćyiţdirmćyinizi\n"
+"tövsiyć edirik. Ćvvćlcć bölmćnin üstünć, sonra \"Yenidćn\n"
"Ölç\" düymćsinć týqlayýn"
-#: ../../diskdrake.pm_.c:149
+#: ../../diskdrake.pm_.c:152
msgid "Please make a backup of your data first"
msgstr "Ćvvćlcć datanýzýn yedćyini alýn"
-#: ../../diskdrake.pm_.c:149 ../../diskdrake.pm_.c:166
-#: ../../diskdrake.pm_.c:175 ../../diskdrake.pm_.c:532
-#: ../../diskdrake.pm_.c:554
+#: ../../diskdrake.pm_.c:152 ../../diskdrake.pm_.c:170
+#: ../../diskdrake.pm_.c:179 ../../diskdrake.pm_.c:570
+#: ../../diskdrake.pm_.c:592
msgid "Read carefully!"
msgstr "Diqqćtlć Oxuyun!"
-#: ../../diskdrake.pm_.c:152
+#: ../../diskdrake.pm_.c:155
msgid ""
"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
"enough)\n"
@@ -1046,77 +1366,81 @@ msgstr ""
"bćsdir.)\n"
"buraxmayý unutmayýn."
-#: ../../diskdrake.pm_.c:166
+#: ../../diskdrake.pm_.c:170
msgid "Be careful: this operation is dangerous."
msgstr "Diqqćtlý olun: bu ćmćliyyat tćhlükćlidir."
-#: ../../diskdrake.pm_.c:203 ../../install_steps.pm_.c:73
-#: ../../install_steps_interactive.pm_.c:38
-#: ../../install_steps_interactive.pm_.c:315 ../../standalone/diskdrake_.c:60
-#: ../../standalone/rpmdrake_.c:294 ../../standalone/rpmdrake_.c:304
+#: ../../diskdrake.pm_.c:214 ../../install_steps.pm_.c:72
+#: ../../install_steps_interactive.pm_.c:37
+#: ../../install_steps_interactive.pm_.c:322 ../../standalone/diskdrake_.c:66
msgid "Error"
msgstr "Xćta"
-#: ../../diskdrake.pm_.c:227 ../../diskdrake.pm_.c:708
+#: ../../diskdrake.pm_.c:238 ../../diskdrake.pm_.c:748
msgid "Mount point: "
msgstr "Bađlama nöqtćsi: "
-#: ../../diskdrake.pm_.c:228 ../../diskdrake.pm_.c:269
+#: ../../diskdrake.pm_.c:239 ../../diskdrake.pm_.c:298
msgid "Device: "
msgstr "Avadanlýq: "
-#: ../../diskdrake.pm_.c:229
+#: ../../diskdrake.pm_.c:240
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "DOS sürücü hćrfi: %s (sadćcć tćxmini)\n"
-#: ../../diskdrake.pm_.c:230 ../../diskdrake.pm_.c:272
+#: ../../diskdrake.pm_.c:244 ../../diskdrake.pm_.c:251
+#: ../../diskdrake.pm_.c:301
msgid "Type: "
msgstr "Növ: "
-#: ../../diskdrake.pm_.c:231
+#: ../../diskdrake.pm_.c:248
+msgid "Name: "
+msgstr "Ad: "
+
+#: ../../diskdrake.pm_.c:253
#, c-format
msgid "Start: sector %s\n"
msgstr "Baţlanđýc: sektor %s\n"
-#: ../../diskdrake.pm_.c:232
+#: ../../diskdrake.pm_.c:254
#, c-format
-msgid "Size: %d MB"
-msgstr "Boyu: %d MB"
+msgid "Size: %s"
+msgstr "Böyüklüyü: %s"
-#: ../../diskdrake.pm_.c:234
+#: ../../diskdrake.pm_.c:256
#, c-format
msgid ", %s sectors"
msgstr ", %s sektor"
-#: ../../diskdrake.pm_.c:236
+#: ../../diskdrake.pm_.c:258
#, c-format
msgid "Cylinder %d to cylinder %d\n"
msgstr "Silindr %d 'dćn silindr %d'yć\n"
-#: ../../diskdrake.pm_.c:237
+#: ../../diskdrake.pm_.c:259
msgid "Formatted\n"
msgstr "Ţćkillćndirilmiţ\n"
-#: ../../diskdrake.pm_.c:238
+#: ../../diskdrake.pm_.c:260
msgid "Not formatted\n"
msgstr "Ţćkillćndirilmćmiţ\n"
-#: ../../diskdrake.pm_.c:239
+#: ../../diskdrake.pm_.c:261
msgid "Mounted\n"
msgstr "Bađlý\n"
-#: ../../diskdrake.pm_.c:240
+#: ../../diskdrake.pm_.c:262
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake.pm_.c:241
+#: ../../diskdrake.pm_.c:264
#, c-format
msgid "Loopback file(s): %s\n"
-msgstr "Loopback dosyesi: %s\n"
+msgstr "Loopback faylý: %s\n"
-#: ../../diskdrake.pm_.c:242
+#: ../../diskdrake.pm_.c:265
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -1124,79 +1448,114 @@ msgstr ""
"Baţ açýlacaq bölmć\n"
" (MS-DOS açýlýţý üçün)\n"
-#: ../../diskdrake.pm_.c:244
+#: ../../diskdrake.pm_.c:267
#, c-format
msgid "Level %s\n"
msgstr "Sćviyyć %s\n"
-#: ../../diskdrake.pm_.c:245
+#: ../../diskdrake.pm_.c:268
#, c-format
msgid "Chunk size %s\n"
msgstr "Parça boyu %s\n"
-#: ../../diskdrake.pm_.c:246
+#: ../../diskdrake.pm_.c:269
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-disklćri %s\n"
-#: ../../diskdrake.pm_.c:248
+#: ../../diskdrake.pm_.c:271
#, c-format
msgid "Loopback file name: %s"
-msgstr "Loopback dosyesi adý: %s"
+msgstr "Loopback faylý adý: %s"
-#: ../../diskdrake.pm_.c:265
+#: ../../diskdrake.pm_.c:274
+msgid ""
+"\n"
+"Chances are, this partition is\n"
+"a Driver partition, you should\n"
+"probably leave it alone.\n"
+msgstr ""
+"\n"
+"Bćlkć dć bu bir Sürücü bölmćsidir.\n"
+"Onda bunu ele belćcć buraxýn.\n"
+
+#: ../../diskdrake.pm_.c:277
+msgid ""
+"\n"
+"This special Bootstrap\n"
+"partition is for\n"
+"dual-booting your system.\n"
+msgstr ""
+"\n"
+"Bu, ikili açýlýţ üçün xüsusi\n"
+"Bootstrap'dýr.\n"
+
+#: ../../diskdrake.pm_.c:294
msgid "Please click on a partition"
msgstr "Lütfćn bir bölmć üstünć týqlayýn"
-#: ../../diskdrake.pm_.c:270
+#: ../../diskdrake.pm_.c:299
#, c-format
-msgid "Size: %d MB\n"
-msgstr "Boy: %d MB\n"
+msgid "Size: %s\n"
+msgstr "Böyüklük: %s\n"
-#: ../../diskdrake.pm_.c:271
+#: ../../diskdrake.pm_.c:300
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometriyasý: %s silindr, %s baţ, %s sektor\n"
-#: ../../diskdrake.pm_.c:273
+#: ../../diskdrake.pm_.c:302
+#, c-format
+msgid "LVM-disks %s\n"
+msgstr "LVM-disklćri %s\n"
+
+#: ../../diskdrake.pm_.c:303
#, c-format
msgid "Partition table type: %s\n"
msgstr "Bölmć cćdvćli növü: %s\n"
-#: ../../diskdrake.pm_.c:274
+#: ../../diskdrake.pm_.c:304
#, c-format
msgid "on bus %d id %d\n"
msgstr "%d data yolunda, %d no'li\n"
-#: ../../diskdrake.pm_.c:290
+#: ../../diskdrake.pm_.c:320
msgid "Mount"
msgstr "Bađla"
-#: ../../diskdrake.pm_.c:292
+#: ../../diskdrake.pm_.c:322
msgid "Active"
-msgstr "Aktiv"
+msgstr "Fćal"
-#: ../../diskdrake.pm_.c:294
+#: ../../diskdrake.pm_.c:324
msgid "Add to RAID"
msgstr "RAID'ć ćlavć et"
-#: ../../diskdrake.pm_.c:296
+#: ../../diskdrake.pm_.c:326
msgid "Remove from RAID"
msgstr "RAID'dćn ayýr"
-#: ../../diskdrake.pm_.c:298
+#: ../../diskdrake.pm_.c:328
msgid "Modify RAID"
msgstr "RAID'i dćyiţdir"
-#: ../../diskdrake.pm_.c:300
+#: ../../diskdrake.pm_.c:330
+msgid "Add to LVM"
+msgstr "LVM'ć ćlavć et"
+
+#: ../../diskdrake.pm_.c:332
+msgid "Remove from LVM"
+msgstr "LVM'dćn ayýr"
+
+#: ../../diskdrake.pm_.c:334
msgid "Use for loopback"
msgstr "Loopback üçün istifadć et"
-#: ../../diskdrake.pm_.c:307
+#: ../../diskdrake.pm_.c:341
msgid "Choose action"
msgstr "Monitorunuzu seçin"
-#: ../../diskdrake.pm_.c:400
+#: ../../diskdrake.pm_.c:435
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1208,19 +1567,19 @@ msgstr ""
"ehtiyacýnýz yoxdur, vć ya LILO istifadćsini sýnayarsýnýzancaq LILO iţlćmćyć "
"bilćr."
-#: ../../diskdrake.pm_.c:404
+#: ../../diskdrake.pm_.c:439
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
"the 1024th cylinder of the hard drive, and you have no /boot partition.\n"
"If you plan to use the LILO boot manager, be careful to add a /boot partition"
msgstr ""
-"Seçdiyiniz bölüm fiziki sahćnin üstündć (1024. silindrinxaricindć)\n"
-"/boot bölümünüz yoxdur. Lilo açýlýţ idarćcisindćnistifadć etmćk "
+"Seçdiyiniz bölüm fiziki sahćnin üstündć (1024. silindrin xaricindć)\n"
+"/boot bölümünüz yoxdur. Lilo açýlýţ idarćcisindćn istifadć etmćk "
"istćyirsćniz, \n"
"/boot bölmćsini ćlavć edćrkćn çox diqqćtli olmalýsýnýz."
-#: ../../diskdrake.pm_.c:410
+#: ../../diskdrake.pm_.c:445
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1230,58 +1589,58 @@ msgstr ""
"Ćgćr lilo ya da grub istifadć etmćk istćyirsćniz bir /boot bölmćsi\n"
"ćlavć etmćyi unutmayýn"
-#: ../../diskdrake.pm_.c:427 ../../diskdrake.pm_.c:429
+#: ../../diskdrake.pm_.c:462 ../../diskdrake.pm_.c:464
#, c-format
msgid "Use ``%s'' instead"
msgstr "Yerinć ``%s'' iţlćt"
-#: ../../diskdrake.pm_.c:432
+#: ../../diskdrake.pm_.c:468
msgid "Use ``Unmount'' first"
msgstr "Ćvvćlcć ``Ayýr''ý iţlćt"
-#: ../../diskdrake.pm_.c:433 ../../diskdrake.pm_.c:475
+#: ../../diskdrake.pm_.c:469 ../../diskdrake.pm_.c:513
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
-"%s bölmćsinin növünü dćyiţdirdikdćn sonra, bu bölmćdćki bütün bilgilćr "
+"%s bölmćsinin növünü dćyiţdirdikdćn sonra, bu bölmćdćki bütün mć'lumatlar "
"silinćcćkdir"
-#: ../../diskdrake.pm_.c:445
+#: ../../diskdrake.pm_.c:481
msgid "Continue anyway?"
-msgstr "Davam edilsin mi?"
+msgstr "Davam edilsinmi?"
-#: ../../diskdrake.pm_.c:450
+#: ../../diskdrake.pm_.c:486
msgid "Quit without saving"
msgstr "Qeyd etmćdćn Çýx"
-#: ../../diskdrake.pm_.c:450
+#: ../../diskdrake.pm_.c:486
msgid "Quit without writing the partition table?"
-msgstr "Bölmć cćdvćlinni qeyd etmćdćn mi çýxýrsýnýz?"
+msgstr "Bölmć cćdvćlinni qeyd etmćdćnmi çýxýrsýnýz?"
-#: ../../diskdrake.pm_.c:478
+#: ../../diskdrake.pm_.c:516
msgid "Change partition type"
msgstr "Bölmć növünü Dćyiţdir"
-#: ../../diskdrake.pm_.c:479
+#: ../../diskdrake.pm_.c:517
msgid "Which filesystem do you want?"
msgstr "Hansý dili istćyirsiniz?"
-#: ../../diskdrake.pm_.c:482 ../../diskdrake.pm_.c:740
+#: ../../diskdrake.pm_.c:520 ../../diskdrake.pm_.c:780
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "32MB dćn kiçik disk bölmćlćrindć ReiserFS istifadć etmćlisiniz"
-#: ../../diskdrake.pm_.c:498
+#: ../../diskdrake.pm_.c:537
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "%s loopback avadanlýđýný haraya bađlamaq istćyirsiniz?"
-#: ../../diskdrake.pm_.c:499
+#: ../../diskdrake.pm_.c:538
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "%s avadanlýđýný haraya bađlamaq istćyirsiniz?"
-#: ../../diskdrake.pm_.c:504
+#: ../../diskdrake.pm_.c:542
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1290,248 +1649,276 @@ msgstr ""
"ayrýla bilinmir.\n"
"Ćvvćlcć loopback'ý lćđv edin."
-#: ../../diskdrake.pm_.c:523
+#: ../../diskdrake.pm_.c:561
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
-"%s bölmćsi ţćkillćndirildikdćn sonra bu bölmćdćki bütün bilgilćr silinćcćkdir"
+"%s bölmćsi ţćkillćndirildikdćn sonra bu bölmćdćki bütün mć'lumatlar "
+"silinćcćkdir"
-#: ../../diskdrake.pm_.c:525
+#: ../../diskdrake.pm_.c:563
msgid "Formatting"
msgstr "Ţćkillćndirilir"
-#: ../../diskdrake.pm_.c:526
+#: ../../diskdrake.pm_.c:564
#, c-format
msgid "Formatting loopback file %s"
-msgstr "Loopback dosyesi ţćkillćndirilir: %s"
+msgstr "Loopback faylý ţćkillćndirilir: %s"
-#: ../../diskdrake.pm_.c:527 ../../install_steps_interactive.pm_.c:402
+#: ../../diskdrake.pm_.c:565 ../../install_steps_interactive.pm_.c:430
#, c-format
msgid "Formatting partition %s"
msgstr "Ţćkillćndirilćn bölmć: %s"
-#: ../../diskdrake.pm_.c:532
+#: ../../diskdrake.pm_.c:570
msgid "After formatting all partitions,"
msgstr "Bütün bölmćlćri ţćkillćndirdikdćn sonra, "
-#: ../../diskdrake.pm_.c:532
+#: ../../diskdrake.pm_.c:570
msgid "all data on these partitions will be lost"
msgstr "bu bölmćlćrdćki bütün verilćr itćcćkdir"
-#: ../../diskdrake.pm_.c:538
+#: ../../diskdrake.pm_.c:576
msgid "Move"
msgstr "Daţý"
-#: ../../diskdrake.pm_.c:539
+#: ../../diskdrake.pm_.c:577
msgid "Which disk do you want to move it to?"
msgstr "Hansý diskć daţýmaq istćyirsiniz?"
-#: ../../diskdrake.pm_.c:540
+#: ../../diskdrake.pm_.c:578
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake.pm_.c:541
+#: ../../diskdrake.pm_.c:579
msgid "Which sector do you want to move it to?"
msgstr "Hansý sektora daţýmaq istćyirsiniz?"
-#: ../../diskdrake.pm_.c:544
+#: ../../diskdrake.pm_.c:582
msgid "Moving"
msgstr "Daţýnýr"
-#: ../../diskdrake.pm_.c:544
+#: ../../diskdrake.pm_.c:582
msgid "Moving partition..."
msgstr "Bölmć daţýnýr..."
-#: ../../diskdrake.pm_.c:554
+#: ../../diskdrake.pm_.c:592
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "%s sürücüsünün bölmć cćdvćli diskć yazýlacaq!"
-#: ../../diskdrake.pm_.c:556
+#: ../../diskdrake.pm_.c:594
msgid "You'll need to reboot before the modification can take place"
-msgstr "Tćzć qurđularýn aktivlćţmćsi üçün sistemi tćzćdćn baţlatmanýz lazýmdýr"
+msgstr "Tćzć qurđularýn aktivlćţmćsi üçün sistemi yenidćn baţlatmanýz lazýmdýr"
-#: ../../diskdrake.pm_.c:577
+#: ../../diskdrake.pm_.c:615
msgid "Computing FAT filesystem bounds"
-msgstr "Fat dosye sistemi uclarý hesaplanýr"
+msgstr "Fat fayl sistemi uclarý hesaplanýr"
-#: ../../diskdrake.pm_.c:577 ../../diskdrake.pm_.c:637
+#: ../../diskdrake.pm_.c:615 ../../diskdrake.pm_.c:680
#: ../../install_interactive.pm_.c:107
msgid "Resizing"
-msgstr "Tćzćdćn ölçülür"
+msgstr "Yenidćn ölçülür"
-#: ../../diskdrake.pm_.c:600
+#: ../../diskdrake.pm_.c:643
msgid "This partition is not resizeable"
msgstr "Hansý bölmć növünü istćyirsiniz?"
-#: ../../diskdrake.pm_.c:605
+#: ../../diskdrake.pm_.c:648
msgid "All data on this partition should be backed-up"
-msgstr "Bu bölmćdćki bütün bilgilćr yedćklćnmćlidir"
+msgstr "Bu bölmćdćki bütün mć'lumatlar yedćklćnmćlidir"
-#: ../../diskdrake.pm_.c:607
+#: ../../diskdrake.pm_.c:650
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
-"%s bölümü yenidćn ölçüldükdćn sonra bu bölmćdćki bütün bilgilćr silinćcćkdir"
+"%s bölümü yenidćn ölçüldükdćn sonra bu bölmćdćki bütün mć'lumatlar "
+"silinćcćkdir"
-#: ../../diskdrake.pm_.c:617
+#: ../../diskdrake.pm_.c:660
msgid "Choose the new size"
msgstr "Tćzć ölçü seçin"
-#: ../../diskdrake.pm_.c:617 ../../install_steps_graphical.pm_.c:287
-#: ../../install_steps_graphical.pm_.c:334
-#: ../../install_steps_interactive.pm_.c:518
-#: ../../partition_table_raw.pm_.c:101
-msgid "MB"
-msgstr "MB"
-
-#: ../../diskdrake.pm_.c:674
+#: ../../diskdrake.pm_.c:714
msgid "Create a new partition"
msgstr "Tćzć bölmć yarat"
-#: ../../diskdrake.pm_.c:700
+#: ../../diskdrake.pm_.c:740
msgid "Start sector: "
msgstr "Baţlanđýç sektoru: "
-#: ../../diskdrake.pm_.c:704 ../../diskdrake.pm_.c:779
+#: ../../diskdrake.pm_.c:744 ../../diskdrake.pm_.c:819
msgid "Size in MB: "
msgstr "MB cinsindćn ölçü: "
-#: ../../diskdrake.pm_.c:707 ../../diskdrake.pm_.c:782
+#: ../../diskdrake.pm_.c:747 ../../diskdrake.pm_.c:822
msgid "Filesystem type: "
-msgstr "Dosye sistemi növü: "
+msgstr "Fayl sistemi növü: "
-#: ../../diskdrake.pm_.c:710
+#: ../../diskdrake.pm_.c:750
msgid "Preference: "
msgstr "Xüsusiyyćtlćr: "
-#: ../../diskdrake.pm_.c:758
+#: ../../diskdrake.pm_.c:798
msgid "This partition can't be used for loopback"
msgstr "Bu disk bölmćsi loopback üçün iţlćdilmćz"
-#: ../../diskdrake.pm_.c:768
+#: ../../diskdrake.pm_.c:808
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake.pm_.c:778
+#: ../../diskdrake.pm_.c:818
msgid "Loopback file name: "
-msgstr "Loopback dosye adý: "
+msgstr "Loopback fayl adý: "
-#: ../../diskdrake.pm_.c:804
+#: ../../diskdrake.pm_.c:844
msgid "File already used by another loopback, choose another one"
msgstr ""
-"Dosye baţqa bir loopback tćrćfindćn istifadćdćdir, baţqa\n"
+"Fayl baţqa bir loopback tćrćfindćn istifadćdćdir, baţqa\n"
"birini seçin"
-#: ../../diskdrake.pm_.c:805
+#: ../../diskdrake.pm_.c:845
msgid "File already exists. Use it?"
-msgstr "Dosye onsuz da var. Ýţlćdilsin mi?"
+msgstr "Fayl onsuz da vardýr. Ýţlćdilsinmi?"
-#: ../../diskdrake.pm_.c:827 ../../diskdrake.pm_.c:843
+#: ../../diskdrake.pm_.c:867 ../../diskdrake.pm_.c:883
msgid "Select file"
-msgstr "Dosye seç"
+msgstr "Fayl seç"
-#: ../../diskdrake.pm_.c:836
+#: ../../diskdrake.pm_.c:876
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
msgstr ""
"Yedćk bölmć cćdvćli eyni ölçüyć sahib deyil\n"
-"Davam etmćk istćyirsiniz mi?"
+"Davam etmćk istćyirsinizmi?"
-#: ../../diskdrake.pm_.c:844
+#: ../../diskdrake.pm_.c:884
msgid "Warning"
msgstr "Xćbćrdarlýq"
-#: ../../diskdrake.pm_.c:845
+#: ../../diskdrake.pm_.c:885
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
msgstr ""
"DÝsket sürücüyć bir disket yerlćţdirin\n"
-"Bu disketdćki bütün bilgilćr yox olacaqdýr"
+"Bu disketdćki bütün mć'lumatlar yox olacaqdýr"
-#: ../../diskdrake.pm_.c:856
+#: ../../diskdrake.pm_.c:896
msgid "Trying to rescue partition table"
-msgstr "Bölmć cćdvćli qurtarýlmađa çalýţýlýr"
+msgstr "Bölmć cćdvćli qurtarýlmađa cćhd edilir"
-#: ../../diskdrake.pm_.c:867
+#: ../../diskdrake.pm_.c:905
msgid "device"
msgstr "avadanlýq"
-#: ../../diskdrake.pm_.c:868
+#: ../../diskdrake.pm_.c:906
msgid "level"
msgstr "sćviyyć"
-#: ../../diskdrake.pm_.c:869
+#: ../../diskdrake.pm_.c:907
msgid "chunk size"
msgstr "parça boyu"
-#: ../../diskdrake.pm_.c:881
+#: ../../diskdrake.pm_.c:919
msgid "Choose an existing RAID to add to"
msgstr "Ćlavć etmćk üçün mövcud bir RAID seçin"
-#: ../../diskdrake.pm_.c:882
+#: ../../diskdrake.pm_.c:920 ../../diskdrake.pm_.c:946
msgid "new"
-msgstr "tćzć"
+msgstr "yeni"
+
+#: ../../diskdrake.pm_.c:944
+msgid "Choose an existing LVM to add to"
+msgstr "Ćlavć etmćk üçün mövcud bir LVM seçin"
+
+#: ../../diskdrake.pm_.c:949
+msgid "LVM name?"
+msgstr "LVM adý?"
+
+#: ../../diskdrake.pm_.c:976
+msgid "Removable media automounting"
+msgstr "Taxýlýb sökülć bilćn avadanlýqlarýn avtomatik bađlanmasý"
+
+#: ../../diskdrake.pm_.c:977
+msgid "Rescue partition table"
+msgstr "Bölüm cćdvćlini qurtar"
+
+#: ../../diskdrake.pm_.c:979
+msgid "Reload"
+msgstr "Yenidćn yüklć"
#: ../../fs.pm_.c:88 ../../fs.pm_.c:95 ../../fs.pm_.c:101 ../../fs.pm_.c:107
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s ţćkillćndirilmćsindć %s bölmć xćtasý"
-#: ../../fs.pm_.c:133
+#: ../../fs.pm_.c:135
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "%s'i necć ţćkillćndirćcćyimi bilmirćm (Növ: %s)"
-#: ../../fs.pm_.c:218
+#: ../../fs.pm_.c:220
msgid "mount failed: "
msgstr "bađlama iflas etdi: "
-#: ../../fs.pm_.c:230
+#: ../../fs.pm_.c:232
#, c-format
msgid "error unmounting %s: %s"
msgstr "%s ayrýlýrkćn xćta oldu: %s"
-#: ../../fsedit.pm_.c:235
+#: ../../fsedit.pm_.c:21
+msgid "simple"
+msgstr "bćsit"
+
+#: ../../fsedit.pm_.c:30
+msgid "server"
+msgstr "verici"
+
+#: ../../fsedit.pm_.c:261
msgid "Mount points must begin with a leading /"
msgstr "Bađlama nöqtćlćri / ilć baţlamalýdýr"
-#: ../../fsedit.pm_.c:238
+#: ../../fsedit.pm_.c:264
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Onsuz da bađlama nöqtćsi %s olan bir bölmć var\n"
-#: ../../fsedit.pm_.c:246
+#: ../../fsedit.pm_.c:272
#, c-format
msgid "Circular mounts %s\n"
msgstr "Dairćvi bađlama %s\n"
-#: ../../fsedit.pm_.c:258
+#: ../../fsedit.pm_.c:284
+#, c-format
+msgid "You can't use a LVM Logical Volume for mount point %s"
+msgstr "%s üçün LVM Mćntiqi Cildini istifadć edć bilmćzsiniz"
+
+#: ../../fsedit.pm_.c:285
msgid "This directory should remain within the root filesystem"
-msgstr "Bu qovluq kök dosye sistemi içćrisindć olmalýdýr"
+msgstr "Bu qovluq kök fayl sistemi içćrisindć olmalýdýr"
-#: ../../fsedit.pm_.c:259
+#: ../../fsedit.pm_.c:286
msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
msgstr ""
-"Bu bađlama nöqtćsi üçün hćqiqi bir dosye sisteminć (ext2, reisrfs)\n"
+"Bu bađlama nöqtćsi üçün hćqiqi bir fayl sisteminć (ext2, reisrfs)\n"
"ehtiyac vardýr.\n"
-#: ../../fsedit.pm_.c:335
+#: ../../fsedit.pm_.c:368
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Yazmaq üçün açýlan %s'dć xćta: %s"
-#: ../../fsedit.pm_.c:417
+#: ../../fsedit.pm_.c:452
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"
msgstr ""
-"Bir xćta oldu. Tćzć dosye sisteminin yaradýlacađý keçćrli bir sürücü "
+"Bir xćta oldu. Tćzć fayl sisteminin yaradýlacađý keçćrli bir sürücü "
"tapýlmadý. Bu problemin qaynađý üçün avadanlýđýnýzý yoxlayýn"
-#: ../../fsedit.pm_.c:431
+#: ../../fsedit.pm_.c:466
msgid "You don't have any partitions!"
msgstr "Heç disk bölmćniz yoxdur!"
@@ -1593,15 +1980,15 @@ msgid ""
"levels to install or update your\n"
"Linux-Mandrake operating system:\n"
"\n"
-"\t* Recommanded: if you have never installed a GNU/Linux operating system "
+"\t* Recommended: if you have never installed a GNU/Linux operating system "
"choose this. Installation will be\n"
"\t be very easy and you will be asked only on few questions.\n"
"\n"
"\n"
"\t* Customized: if you are familiar enough with GNU/Linux, you may choose "
"the primary usage (workstation, server,\n"
-"\t development) of your sytem. You will need to answer to more questions "
-"than in \"Recommanded\" installation\n"
+"\t development) of your system. You will need to answer to more questions "
+"than in \"Recommended\" installation\n"
"\t class, so you need to know how GNU/Linux works to choose this "
"installation class.\n"
"\n"
@@ -1633,13 +2020,13 @@ msgstr ""
"\n"
"\n"
"\t* Xüsusi: Ćgć ćvvćlcć GNU/Linuxa bir az aţina isćniz seçinOnda siz "
-"istćdiyiniz sistem növünü (Masaüstü, Verici, Tćcrübi)seçć bilćcćksiniz.\n"
+"istćdiyiniz sistem növünü (Masa üstü, Verici, Tćcrübi)seçć bilćcćksiniz.\n"
"\t Ćlbćtdć sizć \"Tövsiyć edilćn\" seçkidćn daha çox sual soruţulacaq.\n"
"\t Ona görć dć GNU/Linuxa bir az aţina olmalýsýnýz.\n"
"\n"
"\n"
"\t* Usta: Ćgćr yaxţý bir GNU/Linux biliyinć sahibsćniz, bu sinifi seçin.\n"
-"\t \"Xüsusi\" sinifindćki kimi iţlćdćcćyiniz sistemi (Masaüstü, Verici, "
+"\t \"Xüsusi\" sinifindćki kimi iţlćdćcćyiniz sistemi (Masa üstü, Verici, "
"Tćcrübi)\n"
"\t seçć bilćcćksiniz. Amma sizi çox çćtin suallar gözlćyir. Bćzćn bu "
"suallarýn içindćn\n"
@@ -1698,25 +2085,25 @@ msgid ""
"\t server and so on. As such, do not expect any gimmicks (KDE, GNOME, etc.) "
"to be installed."
msgstr ""
-"Ýndi isć bilgisayarýnýzý necć iţlćdćcćyinizć qerar verin.Seç:\n"
+"Ýndi isć kompüterinizi necć iţlćdćcćyinizć qerar verin.Seç:\n"
"\n"
-"\t* Masaüţtü: bilgisayarýnýzý gündćlik iţlćr (idarć iţlćri, qrafika vs.)\n"
+"\t* Masaüţtü: kompüterinizi gündćlik iţlćr (idarć iţlćri, qrafika vs.)\n"
"\t üçün istifadć edćcćk isćniz bunu seçin.\n"
"\n"
"\n"
-"\t* Tćcrübi: Bilgisayarýnýzý yazýlým inkiţafý üçüniţlćdćcćksćniz sizin üçün "
-"ideal seçkidir.\n"
+"\t* Tćcrübi: Kompüterinizi proqram tć'minatý inkiţafý üçüniţlćdćcćksćniz "
+"sizin üçün ideal seçkidir.\n"
"\t O zaman qaynaq kodlarý yazmaq, ţćkillćndirmćk vć xćtadan ayýqlamaq vć "
"yauyđulama paketlćri hazýrlamaq üçün lazými her cür proqramýn daxil olduđu "
-"bir kolleksiya bilgisayarýnýza qurulacaqdýr.\n"
+"bir kolleksiya kompüterinizć qurulacaqdýr.\n"
"\n"
"\n"
-"\t* Verici: Bilgisayarýnýza Linux-Mandrakeni verici olaraq iţlćtmćk "
+"\t* Verici: Kompüterýnýza Linux-Mandrakeni verici olaraq iţlćtmćk "
"üçünquracaqsanýz bu yaxţý bir seçkidir.\n"
-"\t Bir dosye vericisi (NFS ya da SMB),yazýçý vericisi(Unixin lp protokolu ya "
-"da Windows tćrzi SMByazdýrma),\n"
-"\t tanýtýcý verici (NIS), veri tabaný vericisi vć oxţarý...Onda KDE, GNOME "
-"kimi çćkici ţeylćrin qurulmasýný gözlćmćyin."
+"\t Bir fayl vericisi (NFS ya da SMB),çap edici vericisi(Unixin lp protokolu "
+"ya da Windows tćrzi SMB yazdýrma),\n"
+"\t tanýdýcý verici (NIS), mć'lumat tabaný vericisi vć oxţarý...Onda KDE, "
+"GNOME kimi mćzćli ţeylćrin qurulmasýný gözlćmćyin."
#: ../../help.pm_.c:84
msgid ""
@@ -1773,7 +2160,7 @@ msgstr ""
"(baţlýq 3, \"Avadanlýđýnýz üçün kollektiv mć'lumat) bölümüne\n"
"baxýn. Ya da avadanlýđýnýzýn ćl kitabçasýndan, vć ya\n"
"web sćhifćsindćn (Ćgćr internetć çýxýţýnýz var isć)\n"
-"ya da Microsoft Windowsdan (Ćgćr sisteminnizdć qurulu isć)\n"
+"ya da Microsoft Windowsdan (Ćgćr sisteminizdć qurulu isć)\n"
"mć'lumat alýn."
#: ../../help.pm_.c:108
@@ -1859,12 +2246,12 @@ msgstr ""
"\n"
"\n"
"Sizć ćn az 2 bölmć lazýmdýr. Biri sistemin özünü köçürmćsi üçün\n"
-"Digćri isć uydurma hafizć (ya da digćr adý ile Swap) üçün.\n"
+"Digćri isć uydurma yaddaţ (ya da digćr adý ilć Swap) üçün.\n"
"\n"
"\n"
"Ćgćr diskiniz onsuz da bölünmüţ isć (ćvvćlki sistemden ya da\n"
-"baţqa bölmćlćndirmć aracýlarý ile hazýrlanmýţ) quruluţda\n"
-"sadćcć olaraq o yerleri yüklćmćk üçün seçin.\n"
+"baţqa bölmćlćndirmć vasitćlćri ilć hazýrlanmýţ) quruluţda\n"
+"sadćcć olaraq o yerlćri yüklćmćk üçün seçin.\n"
"\n"
"\n"
"Ćgćr disk bölünmćmiţ ise yuxarýdaký sehirbazdan istifadć edć bilćrsiniz.\n"
@@ -1879,12 +2266,12 @@ msgstr ""
"\t Microsoft Windows qurulu isć ve bütün diski ćhatć edir isć\n"
"\t Linux Mandrake üçün bir yer ayýrmalýsýnýz. Bunun üçün\n"
"\t ya bütün diski silmćlisiniz (\"Bütün diski sil\" bax ya da\n"
-"\t \" Usta modu\" tövsiyćlćri) ya da tćzćdćn bölmćlćndirmćlisiniz.Bu iţ heç "
-"bir bilgi itkisi olmadan da edilć bilćr.Bunun baţqa adý\n"
-"\t eyni bilgisayarda hćm Linux Mandrake hćm dć Windows quruluolmasýdýr.\n"
+"\t \" Usta modu\" tövsiyćlćri) ya da yenidćn bölmćlćndirmćlisiniz.Bu iţ heç "
+"bir mć'lumat itkisi olmadan da edilć bilćr.Bunun baţqa adý\n"
+"\t eyni kompüterdć hćm Linux Mandrake hćm dć Windows quruluolmasýdýr.\n"
"\n"
"\n"
-"t Bu seçkiyć getmćdćn ćvvćl bir ţeyi baţa düţmćlisiniz kitćzćdćn "
+"t Bu seçkiyć getmćdćn ćvvćl bir ţeyi baţa düţmćlisiniz kiyenidćn "
"bölmćlćndirmć ilć sizin Windows bölmćsi kiçilćcćkdir.\n"
"\t Yćni Windows altýnda daha az disk sahćsinć malik olacaqsýnýz.\n"
"\n"
@@ -1920,7 +2307,7 @@ msgid ""
"hard drive.\n"
"\n"
"\n"
-" * Auto allocate:: this option allows you to automatically create Ext2 and "
+" * Auto allocate: this option allows you to automatically create Ext2 and "
"swap partitions in free space of your\n"
" hard drive.\n"
"\n"
@@ -1967,70 +2354,86 @@ msgid ""
"\n"
" * Ctrl-d to delete a partition\n"
"\n"
-" * Ctrl-m to set the mount point"
+" * Ctrl-m to set the mount point\n"
+" \n"
+"\n"
+" \n"
+"If you are installing on a PPC Machine, you will want to create a small HFS "
+"'bootstrap' partition of at least 1MB for use\n"
+"by the yaboot bootloader. If you opt to make the partition a bit larger, say "
+"50MB, you may find it a useful place to store \n"
+"a spare kernel and ramdisk image for emergency boot situations."
msgstr ""
-"Bu nöqtćdć siz Linux Mandrake yüklćmćk üçün bölmćlćri seçmćlisinizĆgćr "
-"ćvvćldćn bölmćlćr var isć (sistemdć ćvvćllćr qurulu olanGNU/Linux bölmćlćri "
-"vć ya baţqa bölmćlćndirmć aracýlarý ilćhazýrladýđýnýz bölmćlćr) onlarý seçin "
-"vć istifadć edin.\n"
-"Yoxsa onlarý göstćrmćlisiniz.\n"
+"Bu nöqtćdć siz Linux Mandrake yüklćmćk üçün bölmćlćri seçmćlisiniz. Ćgćr "
+"ćvvćldćn bölmćlćr var isć (sistemdć ćvvćllćr qurulu olan GNU/Linux bölmćlćri "
+"vć ya baţqa bölmćlćndirmć vasitćlćri ilć hazýrladýđýnýz bölmćlćr) onlarý "
+"seçin vć istifadć edin.\n"
+"Yoxsa onlarý bildirmćlisiniz.\n"
"\n"
"\n"
"Bölmćlćri yaratmaq üçün ćvvćlci diski seçmćlisiniz.\n"
"Diski seçmćk üçün birinci IDE sürücüsü üçün \"hda\" yý, ikinciyi seçmćk üçün "
-"\"hdb\"yi, birinci SCSÝ sürücüsüüçün ise \"sda\" vs týqlamalýsýnýz.\n"
+"\"hdb\"yi, birinci SCSÝ sürücüsü üçün ise \"sda\" vs týqlamalýsýnýz.\n"
"\n"
"\n"
-"Seçdiyiniz sürücüyć aţađýdakýlarý edć bilćrsiniz:\n"
+"Seçdiyiniz sürücüyć aţađýdakýlarý etmćyć qadirsiniz:\n"
"\n"
-"\t*Hamýsýný tćmizlć: seçili sürücüdć bütün bölmćlćrisilćr.\n"
+" *Hamýsýný tćmizlć: seçili sürücüdć bütün bölmćlćrisilćr.\n"
"\n"
"\n"
-"\t*Avtomatik: Sürücünüzdćki boţ sahćdć Ext2 vć Swap\tbölmćlćrini avtomatik\n"
-"\tyaradar.\n"
+" *Avtomatik: Sürücünüzdćki boţ sahćdć Ext2 vć Swap\tbölmćlćrini avtomatik\n"
+"yaradar.\n"
"\n"
"\n"
-"\t*Bölmć cćdvćlini qurtar: Zćdćlćnmiţ bölmć cćdvćlini\tbćrpa edćr. Lütfćn\n"
-" \tdiqqćtli olun, çünkü bu da iflas edć bilćr.\n"
+" *Bölmć cćdvćlini qurtar: Zćdćlćnmiţ bölmć cćdvćlini\tbćrpa edćr. Lütfćn\n"
+" diqqćtli olun, çünkü bu da iflas edć bilćr.\n"
"\n"
"\n"
-"\t*Gćri dön: Ýstćmćdiyiniz seçkilćrinizdćn geri döndćrćr.\n"
+" *Gćri dön: Ýstćmćdiyiniz seçkilćrinizdćn geri döndćrćr.\n"
"\n"
"\n"
-"\t*Tćzćdćn yüklć: Bütün dćyiţikliklćrinizizdćn geri dönćr\tbaţdaki bölmć "
+" *Yenidćn yüklć: Bütün dćyiţikliklćrinizizdćn geri dönćr\tbaţdaki bölmć "
"cćdvćlinć gćlćr.\n"
"\n"
"\n"
-"\t*Sehirbaz: Bölmćlćndirmćyi bir sehirbaz edćr. Tćcrübćsiz\tisćniz bunu "
+" *Sehirbaz: Bölmćlćndirmćyi bir sehirbaz edćr. Tćcrübćsiz\tisćniz bunu "
"seçin.\n"
"\n"
"\n"
-"\t*Floppy'dćn bćrpa et: Bölmć cćdvćlini ćvvćllćr flopy'yć qeyd\tetdiniz isć "
+" *Floppy'dćn bćrpa et: Bölmć cćdvćlini ćvvćllćr flopy'yć qeyd\tetdiniz isć "
"bölmć cćdvćlini bćrpa edin.\n"
"\n"
"\n"
-"\t*Floppy'yć qeyd et: Daha sonradan bćrpa etmek üçün\tbilgilćri floppy'yć "
+" *Floppy'yć qeyd et: Daha sonradan bćrpa etmek üçün\tbilgilćri floppy'yć "
"qeyd edin.\n"
-"\tBu seçki ţiddćtlć tövsiyć edilir.\n"
+" Bu seçki ţiddćtlć tövsiyć edilir.\n"
"\n"
"\n"
-"\t*Oldu: Bölmćlćndirmć bitdiyindć bunu seçćrćk\tdćyiţikliklćrinizi qeyd "
+" *Oldu: Bölmćlćndirmć bitdiyindć bunu seçćrćk\tdćyiţikliklćrinizi qeyd "
"edin.\n"
"\n"
"\n"
-"Xćbćriniz olsun, istćnilćn seçkiyć Tab ve Aţađý/Yuxarýoxlarýný da iţlćdćrćk "
+"Xćbćriniz olsun, istćnilćn seçkiyć Tab ve Aţađý/Yuxarý oxlarýný da iţlćdćrćk "
"klaviaturadan idarć edć bilćrsiniz.\n"
"\n"
"\n"
"Bölmć seçildiyi zaman bunlarý iţlćdć bilćrsiniz:\n"
"\n"
-"\t\t*Ctrl-c yeni bölmć yaratmaq üçün (boţ bölmćseçili olduđu zaman)\n"
+" *Ctrl-c yeni bölmć yaratmaq üçün (boţ bölmćseçili olduđu zaman)\n"
+"\n"
+" *Ctrl-d bölmćyi lćđv etmćk üçün\n"
"\n"
-"\t\t*Ctrl-d bölmćyi lćđv etmćk üçün\n"
+" *Ctrl-m bađlama nöqtćsini göstćrmćk üçün\n"
+"\t\n"
"\n"
-"\t\t*Ctrl-m bađlama nöqtćsini göstćrmćk üçün"
+"\t\n"
+"Ćgćr PPC kompüterdć qurulum aparýrsýnýzsa ćn az 1 MBlýq balaca bir HFC "
+"'bootstrap' bölmćsini \"yaboot\" açýlýţ yüklćyicisi üçün seçmćk "
+"istćyćcćksiniz.\n"
+"Ćgćr daha çox yeriniz varsa ; mćsćlćn 50 MB, onda bütün kernel vć "
+"\"ramdisk\" ćksini tćcili açýlýţ hallarý üçün saxlaya bilćrsiniz."
-#: ../../help.pm_.c:218
+#: ../../help.pm_.c:224
msgid ""
"Above are listed the existing Linux partitions detected on\n"
"your hard drive. You can keep choices make by the wizard, they are good for "
@@ -2076,7 +2479,7 @@ msgstr ""
"Yuxarýda sürücünüzdć tapýlan Linux bölmćlćri sýralanýb\n"
"Sehirbazýn tövsiyćlćrinć uyun, onlar çox vaxt iţć yarayýr.\n"
"Ćgćr bunu istćmćsćniz en azýndan kök bölmćsi (\"/\") seçmćlisiniz\n"
-"Çox kiçik bölmć seçmćyin. yoxsa çox yazýlým yüklćyć bilmćzsćniz.\n"
+"Çox kiçik bölmć seçmćyin. yoxsa çox proqram tć'minatý yüklćyć bilmćzsćniz.\n"
"Ćgćr verilćrinizi baţqa bölmćdć tutmaq istćyirsinizsć, ondabir de \"/home\" "
"bölmćsi dć yaratmalýsýnýz (birdćn çox Linux\n"
"bölmćniz var isć).\n"
@@ -2108,7 +2511,7 @@ msgstr ""
"SCSI sürücülćrindć \"a\" nýn mćnasý \"birinci sürücü\",\n"
"\"b\"nin mćnasý \"ikinci sürücü\"dür vs..."
-#: ../../help.pm_.c:252
+#: ../../help.pm_.c:258
msgid ""
"Choose the hard drive you want to erase to install your\n"
"new Linux-Mandrake partition. Be careful, all data present on it will be "
@@ -2116,10 +2519,10 @@ msgid ""
"and will not be recoverable."
msgstr ""
"Linux Mandrakeni yüklćmak üçün sürücüyü seçin.\n"
-"Diqqćtli olun, sürücüdćki bütün bilgilćr silinćcćk\n"
+"Diqqćtli olun, sürücüdćki bütün mć'lumatlar silinćcćk\n"
"vć geri gćlmćyćcćk."
-#: ../../help.pm_.c:257
+#: ../../help.pm_.c:263
msgid ""
"Click on \"OK\" if you want to delete all data and\n"
"partitions present on this hard drive. Be careful, after clicking on \"OK\", "
@@ -2141,7 +2544,7 @@ msgstr ""
"Bölmćdćki mć'lumatlarý qoruyaraq \"Lćđv et\" düymćsinć\n"
"ćmaliyyatý lćđv edć bilćrsiniz."
-#: ../../help.pm_.c:267
+#: ../../help.pm_.c:273
msgid ""
"More than one Microsoft Windows partition have been\n"
"detected on your hard drive. Please choose the one you want resize to "
@@ -2213,11 +2616,11 @@ msgstr ""
"SCSI sürücülćrindć \"a\" nýn mćnasý \"birinci sürücü\",\n"
"\"b\"nin mćnasý \"ikinci sürücü\"dür vs..."
-#: ../../help.pm_.c:300
+#: ../../help.pm_.c:306
msgid "Please be patient. This operation can take several minutes."
msgstr "Sćbrli olun. Bu ćmćliyyat bir neçć deqiqć sürć bilćr."
-#: ../../help.pm_.c:303
+#: ../../help.pm_.c:309
msgid ""
"Any partitions that have been newly defined must be\n"
"formatted for use (formatting meaning creating a filesystem).\n"
@@ -2251,7 +2654,7 @@ msgid ""
"Linux-Mandrake operating system."
msgstr ""
"Yeni yaradýlan bütün bölmćlćr ţćkillćndirilmćlidir\n"
-"(ţćkillćndirmćk yćni dosye sistemi yaratmaq - format).\n"
+"(ţćkillćndirmćk yćni fayl sistemi yaratmaq - format).\n"
"\n"
"\n"
"Bu arada var olan hazýr bölmćlćri dć üstündćkilćri silmćk üçünyenidćn "
@@ -2278,7 +2681,7 @@ msgstr ""
"Yeni Linux Mandrake sisteminizi qurmaq üçün baţqa bölmć seçmćk\n"
"istćyirsiniz isć \"Lćđv et\" düymćsinć basýn."
-#: ../../help.pm_.c:329
+#: ../../help.pm_.c:335
msgid ""
"You may now select the group of packages you wish to\n"
"install or upgrade.\n"
@@ -2304,7 +2707,7 @@ msgstr ""
"Siyahýnýn üstündć \"Ţćxsi paket seçilmćsi\"\n"
"seçćnćyini iţarćtlćsiniz 1000dćn artýqpaket arasýndan seçć bilćrsiniz."
-#: ../../help.pm_.c:341
+#: ../../help.pm_.c:347
msgid ""
"You can now choose individually all the packages you\n"
"wish to install.\n"
@@ -2343,7 +2746,7 @@ msgstr ""
"qaldýrdýđýnýzda\n"
"ehtiyacý olan digćr paketlerin de iţarćti sćssizcć qalxar."
-#: ../../help.pm_.c:358
+#: ../../help.pm_.c:364
msgid ""
"If you have all the CDs in the list above, click Ok. If you have\n"
"none of those CDs, click Cancel. If only some CDs are missing, unselect "
@@ -2351,11 +2754,11 @@ msgid ""
"then click Ok."
msgstr ""
"Yuxarýdaký siyahýdaký bütün CD'lćrć sahipsćniz, OLDU'yu týqlayýn.\n"
-"Bu CD'lćrin heç birinć sahip deyilsćniz, Lćđv et'i týqlayýn.\n"
+"Bu CD'lćrin heç birinć sahib deyilsćniz, Lćđv et'i týqlayýn.\n"
"CD'lćrdćn bćzilćri ćksiksć, bunlarý seçili vćziyyćtdćn çýxarýb OLDU'yu "
"týqlayýn."
-#: ../../help.pm_.c:363
+#: ../../help.pm_.c:369
msgid ""
"Your new Linux-Mandrake operating system is currently being\n"
"installed. This operation should take a few minutes (it depends on size you\n"
@@ -2364,14 +2767,14 @@ msgid ""
"\n"
"Please be patient."
msgstr ""
-"Tćptćzć Linux Mandrake sisteminizć qurulacaq. Bu da seçdiyiniz\n"
+"Tćpyeni Linux Mandrake sisteminizć qurulacaq. Bu da seçdiyiniz\n"
"yüklćmć boyuna vć sistćminizin qabiliyyćtinć görć\n"
"bir neçć deqiqć alar.\n"
"\n"
"\n"
"Lütfćn, sćbrli olun."
-#: ../../help.pm_.c:371
+#: ../../help.pm_.c:377
msgid ""
"You can now test your mouse. Use buttons and wheel to verify\n"
"if settings are good. If not, you can click on \"Cancel\" to choose another\n"
@@ -2382,7 +2785,7 @@ msgstr ""
"problem yoxdur. Ćgćr deyilsć onda \"Lćđv et\"i týqlayaraq\n"
"baţqa siçan sürücüsü seçć bilćrsiniz."
-#: ../../help.pm_.c:376
+#: ../../help.pm_.c:382
msgid ""
"Please select the correct port. For example, the COM1\n"
"port under MS Windows is named ttyS0 under GNU/Linux."
@@ -2390,7 +2793,7 @@ msgstr ""
"Lütfćn dođru qapýyý seçin. Mćsćlćnn, MS Windowsdaký COM1'in qarţýlýđý\n"
"Linuxda ttyS0'dýr."
-#: ../../help.pm_.c:380
+#: ../../help.pm_.c:386
msgid ""
"If you wish to connect your computer to the Internet or\n"
"to a local network please choose the correct option. Please turn on your "
@@ -2407,20 +2810,20 @@ msgid ""
"have\n"
"finished to configure your network connection, choose \"Done\"."
msgstr ""
-"bilgisayarýnýzý internete vć ya yerli networka bađlamaq\n"
-"istćyirsinizsć lütfćn dođru xüsusiyćti seçin. AyrýcaDrakXin bunu tapmasý "
+"kompüterinizi internete vć ya yerli networka bađlamaq\n"
+"istćyirsinizsć lütfćn dođru xüsusiyćti seçin. Ayrýca DrakXin bunu tapmasý "
"üçün avadanlýđýnýzý açýn.\n"
"\n"
"\n"
-"Ýnternet vć ya yerli networka heç giriţiniz yox isć\"Network qurđularýný "
+"Ýnternet vć ya yerli networka heç giriţiniz yox isć\"Ţćbćkć qurđularýný "
"keç\"\n"
"seçćnćyini iţarćtlćyin.\n"
"\n"
"\n"
-"Network qurđularýný sonraya buraxmaq istćyirsinizsćvć ya qurđular bitdiysć "
+"Ţćbćkć qurđularýný sonraya buraxmaq istćyirsinizsćvć ya qurđular bitdiysć "
"\"Oldu\" seçćnćyini iţarćtlćyin."
-#: ../../help.pm_.c:393
+#: ../../help.pm_.c:399
msgid ""
"No modem has been detected. Please select the serial port on which it is "
"plugged.\n"
@@ -2435,7 +2838,7 @@ msgstr ""
"Xćbćriniz olsun, birinci serial qapý (Windows altýnda\n"
"\"COM1\") linux altýnda\"ttyS0\" deyć adlandýrýlýr."
-#: ../../help.pm_.c:400
+#: ../../help.pm_.c:406
msgid ""
"You may now enter dialup options. If you don't know\n"
"or are not sure what to enter, the correct informations can be obtained "
@@ -2450,18 +2853,18 @@ msgstr ""
"(Mćsćlćn, ÝXV (ISP) vć DNS nömrćlćri kimi) bunlarý\n"
"daha sonra da internete girćrćk öyrćnć bilćrsiniz."
-#: ../../help.pm_.c:407
+#: ../../help.pm_.c:413
msgid ""
"If your modem is an external modem, please turn on it now to let DrakX "
"detect it automatically."
msgstr ""
-"Modeminiz xarici isć modeminizi açýn ki DrakX onu avtomatik olaraqtapsýn."
+"Modeminiz xarici isć modeminizi açýn ki DrakX onu avtomatik olaraq tapsýn."
-#: ../../help.pm_.c:410
+#: ../../help.pm_.c:416
msgid "Please turn on your modem and choose the correct one."
msgstr "Lütfćn modeminizi açýn ve dođru seçćnćyi iţarćtlćyin."
-#: ../../help.pm_.c:413
+#: ../../help.pm_.c:419
msgid ""
"If you are not sure if informations above are\n"
"correct or if you don't know or are not sure what to enter, the correct\n"
@@ -2471,12 +2874,12 @@ msgid ""
"obtained\n"
"from your Internet Service Provider at connection time."
msgstr ""
-"Ćgćr yuxarýdakýlar haqqýnda mć'lumatýnýz yox isć vć ya ne girćcćyinizć qerar "
+"Ćgćr yuxarýdakýlar haqqýnda mć'lumatýnýz yox isć vć ya ne girćcćyinizć qćrar "
"vermćdinizsć\n"
"(Mćsćlćn, ÝXV (ISP) vć DNS nömrćlćri kimi)bunlarý\n"
"daha sonra da internete girćrćk öyrćnć bilćrsiniz."
-#: ../../help.pm_.c:420
+#: ../../help.pm_.c:426
msgid ""
"You may now enter your host name if needed. If you\n"
"don't know or are not sure what to enter, the correct informations can be\n"
@@ -2487,7 +2890,7 @@ msgstr ""
"(Mćsćlćn, ÝXV (ISP) vć DNS nömrćlćri kimi)bunlarý\n"
"daha sonra da internete girćrćk öyrćnć bilćrsiniz."
-#: ../../help.pm_.c:425
+#: ../../help.pm_.c:431
msgid ""
"You may now configure your network device.\n"
"\n"
@@ -2510,7 +2913,7 @@ msgstr ""
" - IP ünvaný: Ćgćr IP ünvanýný bilmirsinizsć, sistem idarćcisinćya da \n"
"Ýnternet xidmćt vericisinć danýţýn.\n"
"\n"
-" - Network maskasý: Ümumiyyćtlć \"255.255.255.0\" yaxţý bir seçkidir. Ćgćr "
+" - Ţćbćkć maskasý: Ümumiyyćtlć \"255.255.255.0\" yaxţý bir seçkidir. Ćgćr "
"ćmin \n"
"deyilsćniz, yenć sistem idarćcinizć ya da xidmćt vericinizćsoruţun.\n"
"\n"
@@ -2519,7 +2922,7 @@ msgstr ""
"dćnćsini \n"
"istifadć edirsć bu seçćnćyi iţarćtlćyin."
-#: ../../help.pm_.c:437
+#: ../../help.pm_.c:443
msgid ""
"You may now enter your host name if needed. If you\n"
"don't know or are not sure what to enter, ask your network administrator."
@@ -2528,13 +2931,13 @@ msgstr ""
"\n"
"bilmirsćniz sistem idarćcinizć soruţun."
-#: ../../help.pm_.c:441
+#: ../../help.pm_.c:447
msgid ""
"You may now enter your host name if needed. If you\n"
"don't know or are not sure what to enter, leave blank."
msgstr "Ýndi ev sahibi adýný girin. Bilmirsinizsć boţ buraxýn."
-#: ../../help.pm_.c:445
+#: ../../help.pm_.c:451
msgid ""
"You may now enter dialup options. If you're not sure what to enter, the\n"
"correct information can be obtained from your ISP."
@@ -2543,13 +2946,13 @@ msgstr ""
"lazým olduđunu\n"
"bilmirsćniz Ýnternet xidmćt vericinizdćn lazými bilgilćri alýn."
-#: ../../help.pm_.c:449
+#: ../../help.pm_.c:455
msgid ""
"If you will use proxies, please configure them now. If you don't know if\n"
"you should use proxies, ask your network administrator or your ISP."
msgstr "Ćgć vćkil (proxy) verici istifadć edacćmsćniz bunlarý girin."
-#: ../../help.pm_.c:453
+#: ../../help.pm_.c:459
msgid ""
"You can install cryptographic package if your internet connection has been\n"
"set up correctly. First choose a mirror where you wish to download packages "
@@ -2561,14 +2964,14 @@ msgid ""
"to your legislation."
msgstr ""
"Ćgćr Ýnternet bađlantýnýz dođru ţćkildć qurulmuţ isć kriptoqrafik paketi \n"
-"dć qura bilćrsiniz. Ćvvćl bir ayna ünvaný seçin vć daha sonra qurulacaq \n"
+"dć qura bilćrsiniz. Ćvvćl bir ćks ünvaný seçin vć daha sonra qurulacaq \n"
"paketlćri quraţdýrýn."
-#: ../../help.pm_.c:462
+#: ../../help.pm_.c:468
msgid "You can now select your timezone according to where you live."
msgstr "Ýndi isć yaţadýđýnýz yerć görć zaman zolađýný seçin."
-#: ../../help.pm_.c:465
+#: ../../help.pm_.c:471
msgid ""
"GNU/Linux manages time in GMT (Greenwich Manage\n"
"Time) and translates it in local time according to the time zone you have\n"
@@ -2582,7 +2985,7 @@ msgstr ""
"\n"
"Sisteminizdć Microsoft Windows iţlćdirsćniz \"Xeyr\" seçin."
-#: ../../help.pm_.c:473
+#: ../../help.pm_.c:479
msgid ""
"You may now choose which services you want to start at boot time.\n"
"\n"
@@ -2603,19 +3006,19 @@ msgstr ""
"açýqlayan\n"
"kiçik bir baloncuq ortaya çýxacaqdýr.\n"
"\n"
-"Ćgćr bilgisayarýnýzý bir verici olaraq istifadć edćcćksćniz bu addýmda tam "
-"bir diqqćt ayýrmalýsýnýz:\n"
+"Ćgćr kompüterinizi bir verici olaraq istifadć edćcćksćniz bu addýmda tam bir "
+"diqqćt ayýrmalýsýnýz:\n"
"mühtćmćldir ki lazými heç bir xidmćti baţlatmaq istćmćzsiniz."
-#: ../../help.pm_.c:486
+#: ../../help.pm_.c:492
msgid ""
"You can configure a local printer (connected to your computer) or remote\n"
"printer (accessible via a Unix, Netware or Microsoft Windows network)."
msgstr ""
-"Siz indi yerli vć ya çevirmćli yazýcýný qura bilćrsiniz\n"
+"Siz indi yerli vć ya çevirmćli yazýçýný qura bilćrsiniz\n"
"(Unix, Netware vć ya Microsoft Windows networkundaký)."
-#: ../../help.pm_.c:490
+#: ../../help.pm_.c:496
msgid ""
"If you wish to be able to print, please choose one printing system between\n"
"CUPS and LPR.\n"
@@ -2647,7 +3050,7 @@ msgstr ""
"\n"
"Printeriniz yox isć \"Yox\" düymćsinć týqlayýn."
-#: ../../help.pm_.c:505
+#: ../../help.pm_.c:511
msgid ""
"GNU/Linux can deal with many types of printer. Each of these types requires\n"
"a different setup.\n"
@@ -2665,23 +3068,23 @@ msgid ""
"machine\n"
"(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
msgstr ""
-"GNU/Linux bir çox yazýcý növü iţlćdć bilćr. Hćr bir növ\n"
+"GNU/Linux bir çox çap edici növü iţlćdć bilćr. Hćr bir növ\n"
"müxtćlif quruluţ istćyćr.\n"
"\n"
"\n"
-"Yazýçýnýz fiziki olaraq bilgisayarýnýza bađlý isć\n"
-"\"Yerli yazýçý\"ný seçin.\n"
+"Çap ediciniz fiziki olaraq kompüterinizć bađlý isć\n"
+"\"Yerli çap edici\"ný seçin.\n"
"\n"
"\n"
-"Unix sisteminć bađlý yazýçýya uzaqdan bađlanmaq istćyirsinizsć\n"
-"\"Uzaqdan bađlanýlan yazýçý\".\n"
+"Unix sisteminć bađlý çap ediciyć uzaqdan bađlanmaq istćyirsinizsć\n"
+"\"Uzaqdan bađlanýlan çap edici\".\n"
"\n"
"\n"
-" MS Windows bilgisayarýna (vć ya SMB protokolunu\n"
-"iţlćdćn Unix bilgisayarýna) bađlý bir yazýçýya çatmaq üçün\n"
+" MS Windows kompüterinć (vć ya SMB protokolunu\n"
+"iţlćdćn Unix kompüterinć) bađlý bir çap ediciyć çatmaq üçün\n"
"\"SMB/Windows95/98/NT\" seçćnćyini iţarćtlćyin."
-#: ../../help.pm_.c:521
+#: ../../help.pm_.c:527
msgid ""
"Please turn on your printer before continuing to let DrakX detect it.\n"
"\n"
@@ -2708,25 +3111,25 @@ msgid ""
msgstr ""
"Lütfćn DrakXin tapa bilmćsi üçün yazýçýnýzý açýn.\n"
"\n"
-"Burada bir neçć bilgi vermćlisiniz.\n"
+"Burada bir neçć mć'lumat vermćlisiniz.\n"
"\n"
"\n"
-"\t*Yazýçý adý: yazýçýlar üçün \"lp\" iţlćdilir.\n"
+"\t*Çap Edici adý: yazýçýlar üçün \"lp\" iţlćdilir.\n"
"Ona görć dć yazýçýnýzýn adý \"lp\" olmalýdýr.\n"
-"Bir neçć yazýçýnýz var isć istćdiyiniz adý verć bilćrsiniz. Sadćcćolaraq "
-"aralarýna boru iţarćti \"|\" qoymalýsýnýz.\n"
+"Bir neçć çap ediciniz var isć istćdiyiniz adý verć bilćrsiniz. Sadćcć olaraq "
+"ć aralarýna boru iţarćti \"|\" qoymalýsýnýz.\n"
"Mćsćlćn \"Mćnim yazýçým|lp\".\n"
-"Adýnda \"lp\" olan yazýçý baţ yazýçý olacaqdýr.\n"
+"Adýnda \"lp\" olan çap edici baţ çap edici olacaqdýr.\n"
"\n"
"\n"
-"\t*Tćsvir: Ýstćyć bađlýdýr. Amma bir neçć yazýçýnýz var isć\n"
+"\t*Tćsvir: Ýstćyć bađlýdýr. Amma bir neçć çap ediciniz var isć\n"
"\tbir xeyli faydalý ola bilćr.\n"
"\n"
"\n"
-"\t*Yerlćţmć: Yazýçýnýn yeri haqqýnda istćdiyinizi yaza bilćrsiniz.\tMćsćlćn, "
-"\"2ci mćrtćbć\".\n"
+"\t*Yerlćţmć: Çap Edicinin yeri haqqýnda istćdiyinizi yaza "
+"bilćrsiniz.\tMćsćlćn, \"2ci mćrtćbć\".\n"
-#: ../../help.pm_.c:542
+#: ../../help.pm_.c:548
msgid ""
"You need to enter some informations here.\n"
"\n"
@@ -2759,24 +3162,24 @@ msgid ""
" If you want to acces a printer located on NetWare network, select "
"\"NetWare\".\n"
msgstr ""
-"Burada bir neçć bilgi vermćlisiniz.\n"
+"Burada bir neçć mć'lumat vermćlisiniz.\n"
"\n"
"\n"
"\t*Ýstćk adý: yazýçýlar üçün \"lp\" iţlćdilir.\n"
"Ona görć dć yazýçýnýzýn adý \"lp\" olmalýdýr.\n"
-"Bir neçć yazýçýnýz var isć istćdiyiniz adý verć bilćrsiniz. Sadćcćolaraq "
-"aralarýna boru iţarćti \"|\" qoymalýsýnýz.\n"
+"Bir neçć çap ediciniz var isć istćdiyiniz adý verć bilćrsiniz. Sadćcć "
+"ćolaraq aralarýna boru iţarćti \"|\" qoymalýsýnýz.\n"
"Mćsćlćn \"Mćnim yazýçým|lp\".\n"
-"Adýnda \"lp\" olan yazýçý baţ yazýçý olacaqdýr.\n"
+"Adýnda \"lp\" olan çap edici baţ çap edici olacaqdýr.\n"
"\n"
"\n"
-"\t*Saxlama qovluđu: Yazýçý sifariţlćrinizi saxlanýldýđý yer.\n"
+"\t*Saxlama qovluđu: Çap Edici sifariţlćrinizi saxlanýldýđý yer.\n"
"\tMövzudan bixćbćr isćniz ćsas qurđunu seçin.\n"
"\n"
"\n"
-"\t*Yazýçý bađlantýsý: Yazýçý fiziki olaraq bilgisayara bađlý ise\n"
-"\t\"Yerli Yazýçý\" seçin.\n"
-"\tUzaq bir Unix sistemć bađlý yazýçý isć\"Uzaqdan idarćli lpd Yazýçý\" "
+"\t*Çap Edici bađlantýsý: Çap Edici fiziki olaraq kompüterć bađlý ise\n"
+"\t\"Yerli Çap Edici\" seçin.\n"
+"\tUzaq bir Unix sistemć bađlý çap edici isć\"Uzaqdan idarćli lpd Çap Edici\" "
"seçin.\n"
"\n"
"\n"
@@ -2784,9 +3187,9 @@ msgstr ""
"isć \"SMB/Windows 95/98/NT\" seçin.\n"
"\n"
"\n"
-"\tNetWare networkda yerlćţćn yazýçý üçün isć\"NetWare\" seçin.\n"
+"\tNetWare networkda yerlćţćn çap edici üçün isć\"NetWare\" seçin.\n"
-#: ../../help.pm_.c:567
+#: ../../help.pm_.c:573
msgid ""
"Your printer has not been detected. Please enter the name of the device on\n"
"which it is connected.\n"
@@ -2797,18 +3200,18 @@ msgid ""
"one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
"Windows."
msgstr ""
-"Sizin yazýçý tapýlmadý. Lütfćn bađlý olduđu avadanlýđýn\n"
+"Sizin çap edici tapýlmadý. Lütfćn bađlý olduđu avadanlýđýn\n"
"adýný girin.\n"
"\n"
"\n"
-"Xćbćriniz olsun, bir çox yazýçý birinci paralel qapýya bađlýdýr.\n"
+"Xćbćriniz olsun, bir çox çap edici birinci paralel qapýya bađlýdýr.\n"
"Bu da GNU/Linuxda \"/dev/lp0\", Windowsda isć \"LPT1\"dir."
-#: ../../help.pm_.c:575
+#: ../../help.pm_.c:581
msgid "You must now select your printer in the above list."
-msgstr "Ýndi yuxarýdaký siyahýdan yazýcý seçmalisiniz."
+msgstr "Ýndi yuxarýdaký siyahýdan çap edici seçmalisiniz."
-#: ../../help.pm_.c:578
+#: ../../help.pm_.c:584
msgid ""
"Please select the right options according to your printer.\n"
"Please see its documentation if you don't know what choose here.\n"
@@ -2824,7 +3227,7 @@ msgstr ""
"Bir sonraký addýmda yazýcýnýzý sýnaya bilćrsiniz vć\n"
"daha sonra da istćdiyiniz zaman dćyiţdirć bilćr."
-#: ../../help.pm_.c:585
+#: ../../help.pm_.c:591
msgid ""
"You can now enter the root password for your Linux-Mandrake system.\n"
"The password must be entered twice to verify that both password entries are "
@@ -2866,7 +3269,7 @@ msgstr ""
"yazan qismć \"root\" vć \"password\" yazan qismć idarćci parolunu\n"
"yazmalýsýnýz."
-#: ../../help.pm_.c:603
+#: ../../help.pm_.c:609
msgid ""
"To enable a more secure system, you should select \"Use shadow file\" and\n"
"\"Use MD5 passwords\"."
@@ -2874,16 +3277,16 @@ msgstr ""
"Daha e'tibarlý bir sistem üçün \"Kölgć parol iţlćt\" vć \"MD5 kodlama \n"
"iţlćt\" seçćnćklćrini iţarćtlayin."
-#: ../../help.pm_.c:607
+#: ../../help.pm_.c:613
msgid ""
"If your network uses NIS, select \"Use NIS\". If you don't know, ask your\n"
"network administrator."
msgstr ""
-"Ćgćr networkda NIS istifadć edilirsć, \"NIS iţlćt\" seçćneyini iţarćtlćyin. "
+"Ćgćr networkda NIS istifadć edilirsć, \"NIS iţlćt\" seçćneyini iţarćtlćyin. "
"Ćgćr \n"
"bilmirsćniz sistem idarćcinizć soruţun."
-#: ../../help.pm_.c:611
+#: ../../help.pm_.c:617
msgid ""
"You may now create one or more \"regular\" user account(s), as\n"
"opposed to the \"privileged\" user account, root. You can create\n"
@@ -2906,20 +3309,21 @@ msgid ""
"you will have created here, and login as root only for administration\n"
"and maintenance purposes."
msgstr ""
-"Ýndi bir ya da daha çox adamýn Linux sisteminizi istifadćetmćsinć icazć\n"
+"Ýndi bir ya da daha çox adamýn Linux sisteminizi istifadć etmćsinć icazćć\n"
"verć bilćrsiniz. Hćr istifadćçi hesabý üçün edilćn dćyiţikliklćr sadćcć\n"
"o istifadćçi ve istifadćçinin \"istifadćçi sýrasý\" üçün keçerli olar.\n"
"\n"
"\n"
-"Sistemi sadćcć siz istifadć edeceksiniz belć ayrý bir istifadćçi hesabý "
+"Sistemi sadćcć siz istifadć edeceksćniz belć ayrý bir istifadćçi hesabý "
"açaraq\n"
"normal iţler üçün bu hesabý istifadć etmćlisiniz. Ýdarći \"root\" hesabý\n"
-"gündćlik iţlćrdć istifadć edilmćmćlidir. Bu bir mühafizć riski tćţkil edćr.\n"
+"gündćlik iţlćrdć istifadć edilmćmćlidir. Bu bir tćhlükćsizlik riski tćţkil "
+"edćr.\n"
"Sadć bir istifadćçi hesabý ilć iţlćmćk sizi vć sistemi size qarţý\n"
"qoruyar. Ýdarćci hesabý olan \"root\" sadćcć, sadć bir istifadćçi hesabý\n"
-"ile etmćyćcćyiniz idarć vć tćmir iţlćri üçün istifadć edilmćlidir."
+"ilć etmćyćcćyiniz idarć vć tćmir iţlćri üçün istifadć edilmćlidir."
-#: ../../help.pm_.c:630
+#: ../../help.pm_.c:636
msgid ""
"Creating a boot disk is strongly recommended. If you can't\n"
"boot your computer, it's the only way to rescue your system without\n"
@@ -2929,7 +3333,7 @@ msgstr ""
"Sistemi aça bilmćdiyiniz zaman bu, sizin üçün tćk yol olar.\n"
"Yoxsa sistemi yenidćn yüklćmćk mćcburiyyćtindćsiniz."
-#: ../../help.pm_.c:635
+#: ../../help.pm_.c:641
msgid ""
"You need to indicate where you wish\n"
"to place the information required to boot to GNU/Linux.\n"
@@ -2943,7 +3347,7 @@ msgstr ""
"\n"
"Nć etdiyinizi bilmirsćniz, \"Diskin ilk sektoru (MBR)\" seçin."
-#: ../../help.pm_.c:643
+#: ../../help.pm_.c:649
msgid ""
"Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
" (primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
@@ -2952,7 +3356,7 @@ msgstr ""
"(Birinci ali IDE disk) ya da \"/dev/sda\" (birinci SCSI disk)\n"
"olacaqdýr."
-#: ../../help.pm_.c:647
+#: ../../help.pm_.c:653
msgid ""
"LILO (the LInux LOader) and Grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -2967,13 +3371,13 @@ msgid ""
msgstr ""
"LILO (Linux Yüklćyici) vć Grub açýlýţ sistem yüklćyicilćridir: sistemi "
"Linux\n"
-"ya da bilgisayarýnýzda olan baţqa bir iţlćtimiyle aça bilćrlćr.\n"
+"ya da kompüterinizdć olan baţqa bir iţlćtimiyle aça bilćrlćr.\n"
"Ćsasćn bu digćr iţlćtim sistemlćri dođru bir ţćkilde tćsbit edilib açýlýţa\n"
"qurula bilćrlćr. Ćgćr bir problem olarsa, buradan ćllć ćlavć edilć "
"bilćrlćr.\n"
"Parametrlćr mövzusunda diqqćtli olun."
-#: ../../help.pm_.c:659
+#: ../../help.pm_.c:665
msgid ""
"LILO and grub main options are:\n"
" - Boot device: Sets the name of the device (e.g. a hard disk\n"
@@ -2993,31 +3397,289 @@ msgid ""
"\n"
" * normal: select normal 80x25 text mode.\n"
"\n"
-" * <number>: use the corresponding text mode."
+" * <number>: use the corresponding text mode.\n"
+"\n"
+"\n"
+" - Clean \"/tmp\" at each boot: if you want delete all files and "
+"directories\n"
+"stored in \"/tmp\" when you boot your system, select this option.\n"
+"\n"
+"\n"
+" - Precise RAM if needed: unfortunately, there is no standard method to ask "
+"the\n"
+"BIOS about the amount of RAM present in your computer. As consequence, Linux "
+"may\n"
+"fail to detect your amount of RAM correctly. If this is the case, you can\n"
+"specify the correct amount or RAM here. Please note that a difference of 2 "
+"or 4\n"
+"MB between detected memory and memory present in your system is normal."
msgstr ""
"LILO vć grub ana seçćnćklćri bunlardýr: \n"
-"\t - Açýlýţ avadanlýđý: Açýlýţ sektorunu olduđu sabit disk bölmćsini daxil "
+"\t- Açýlýţ avadanlýđý: Açýlýţ sektorunu olduđu sabit disk bölmćsini daxil "
"edćn avadanlýđýn\n"
"adýný tćyin edćr.\n"
"Ćgćr heç bir ţey bilmirsćniz \"/dev/hda\"yý seçin.\n"
"\n"
"\n"
-" \t - Baţ görüntü ilć açmadan ćvvćl gecikmć: Açýlýţ sistem yüklćyicisinin "
-"ilk \n"
-"görünüţü açmadan ćvvćl gözlćyćcćyi zamanýn, saniyćnin onda biri cinsindćn "
+"\t- Ćsas ćks ilć açmadan ćvvćl gecikmć: Açýlýţ sistem yüklćyicisinin ilk \n"
+"ćksi açmadan ćvvćl gözlćyćcćyi zamanýn, saniyćnin onda biri cinsindćn "
"miqdarýdýr.\n"
-"Bu, klaviaturanýn aktivlćţmćsindćn hćmćn sonra sabit diskdćn açýlan "
-"sistemlćr üçün faydalýdýr.\n"
+"Bu, klaviaturanýn fćallaţmasýndan hćmćn sonra sabit diskdćn açýlan sistemlćr "
+"üçün faydalýdýr.\n"
"Sistem yüklćyicisi, ćgćr \"delay\" sýfýr olaraq verilmiţ isć\n"
-"\theç gözlćmćz.\n"
+"heç gözlćmćz.\n"
"\n"
"\n"
-" \t- Ekran modu: Açýlýţda bir neçć mćtn ekran modu seçilć bilćr:\n"
+"\t- Ekran modu: Açýlýţda bir neçć mćtn ekran modu seçilć bilćr:\n"
" * sadć: 80x25 mćtn ekran açýlýr.\n"
-" * <rćqćm>: Göstćrilćnn rćqćmlćrć görć mćtn ekran rezolyusiyasý "
-"quraţdýrýlýr."
+" * <rćqćm>: Göstćrilćnn rćqćmlćrć görć mćtn ekran rezolyusiyasý "
+"quraţdýrýlýr.\n"
+"\n"
+"\n"
+"\t- \"/tmp\"I hćr açýlýţda tćmizlć: Ćgćr hćr açýlýţda \"/tmp\" cćrgćsindć "
+"olan bütün\n"
+"olan bütün cćrgć vć qovluqlarýn silinmćsini istćyirsinizsć, bu seçćnćyi "
+"seçin.\n"
+"\n"
+"\n"
+"\t- Var olan RAM miqdarý: Tććsüf ki, Linuks hćmiţć RAM miqdarýný BIOSdan "
+"düzgün\n"
+"bir ţćkildć öyrćnćmćyć bilćr. Onda siz çzünüz sisteminizdć olan hćqiq RAM "
+"miqdarýný buradan\n"
+"girć bilćrsiniz. Yadda saxlayýn ki, hćqiqi RAM ilć sistemin tapdýđý miqdar "
+"arasýnda 2\n"
+"vć ya 4 MBlýq fćrq ola bilćr."
-#: ../../help.pm_.c:680
+#: ../../help.pm_.c:697
+msgid ""
+"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able\n"
+"to boot either GNU/Linux, MacOS, or MacOSX, if present on your computer.\n"
+"Normally, these other operating systems are correctly detected and\n"
+"installed. If this is not the case, you can add an entry by hand in this\n"
+"screen. Be careful as to choose the correct parameters.\n"
+"\n"
+"\n"
+"Yaboot main options are:\n"
+"\n"
+"\n"
+" - Init Message: A simple text message that is displayed before the boot\n"
+"prompt.\n"
+"\n"
+"\n"
+" - Boot Device: Indicate where you want to place the information required "
+"to \n"
+"boot to GNU/Linux. Generally, you will have setup a bootstrap partition "
+"earlier \n"
+"to hold this information.\n"
+"\n"
+"\n"
+" - Open Firmware Delay: Unlike LILO, there are two delays available with \n"
+"yaboot. The first delay is measured in seconds and at this point you can \n"
+"choose between CD, OF boot, MacOS, or Linux.\n"
+"\n"
+"\n"
+" - Kernel Boot Timeout: This timeout is similar to the LILO boot delay. "
+"After \n"
+"selecting Linux, you will have this delay in 0.1 seconds before your "
+"default\n"
+"kernel description is selected.\n"
+"\n"
+"\n"
+" - Enable CD Boot?: Checking this option will allow you to choose 'C' for "
+"CD at\n"
+"the first boot prompt.\n"
+"\n"
+"\n"
+" - Enable OF Boot?: Checking this option will allow you to choose 'N' for "
+"Open\n"
+"Firmware at the first boot prompt.\n"
+"\n"
+"\n"
+" - Default OS: You can select which OS will boot by default when the Open "
+"Firmware \n"
+"Delay expires."
+msgstr ""
+"\"Yaboot\" NewWorld MacIntosh avadalýđý üçün açýlýţ idarćcisidir. Ayrýca\n"
+"GNU/Linux, MacOS, vć ya MacOSX sistemlćrini kompüterinizdć varsa, "
+"açacaqdýr.\n"
+"Normalda, bu iţlćtim sistemlćri düzgün tapýlýb qurula bilirlćr\n"
+"Ćgćr belć olmazsa, bu ekrandan ćllć lazými qurđularý girć bilćrsiniz.\n"
+"Düzgün parametrlćri girib girmćdiyinizi yaxţýca bir yoxlayýn.\n"
+"\n"
+"\n"
+"\"Yaboot\" ana seçćnćklćri:\n"
+"\n"
+"\n"
+" - Baţlanđýc Ýsmarýcý: Açýlýţdan ćvvćl çýxan sadć bir ismarýc.\n"
+"\n"
+"\n"
+" - Açýlýţ Avadanlýđý: GNU/Linuksu hardan baţlatmaq istćdiyinizi "
+"bildirir.Ümumiyyćtlć bu mć'lumatý daha ćvvćl \"bootstrap\" quraţdýrýlmasý "
+"sýrasýndabildirmiţ olacaqsýnýz.\n"
+"\n"
+"\n"
+" - Açýq \"Firmware\" Gecikmćsi: LILOdan fćrqli olaraq, \"yaboot\"da iki "
+"dćnć gecikmć vardýr\n"
+"Birinci gecikmć saniyćlćrlć ölçülür vć bu arada siz\n"
+"CD, OF açýlýţý, MacOS vć ya Linux arasýnda seçki aparmalýsýnýz.\n"
+"\n"
+"\n"
+" - Kernel Açýlýţ Vaxt Dolmasý: Bu vaxt dolmasý LILO açýlýţ gecikmćsinć "
+"uyđun gćlir. Linuksu\n"
+"seçdikdćn sonra ana kernel parametri olaraq bu gecikmć 0.1 saniyć olaraq "
+"qurulu olacaqdýr.\n"
+"\n"
+"\n"
+" - CD Açýlýţý Fćallaţsýnmý?: Bu seçćnćklć CDdćn açýlýţý timsal edćn 'C' "
+"xarakteri ilk açýlýţda çýxacaqdýr.\n"
+"\n"
+"\n"
+" - OF Açýlýţý Fćallaţsýnmý?: Bu seçćnćklć OFdćn (Open Firmware) açýlýţýný "
+"timsal edćn 'N' xarakteri\n"
+"ilk açýlýţda çýxacaqdýr.\n"
+"\n"
+"\n"
+" - Ana OS: OF gecikmćsi müddćti dolduđu vaxt hansý OSnin açýlacađýný "
+"göstćrir."
+
+#: ../../help.pm_.c:738
+msgid ""
+"You can add additional entries for yaboot, either for other operating "
+"systems,\n"
+"alternate kernels, or for an emergency boot image.\n"
+"\n"
+"\n"
+"For other OS's - the entry consists only of a label and the root partition.\n"
+"\n"
+"\n"
+"For Linux, there are a few possible options: \n"
+"\n"
+"\n"
+" - Label: This is simply the name will type at the yaboot prompt to select "
+"this \n"
+"boot option.\n"
+"\n"
+"\n"
+" - Image: This would be the name of the kernel to boot. Typically vmlinux "
+"or\n"
+"a variation of vmlinux with an extension.\n"
+"\n"
+"\n"
+" - Root: The root device or '/' for your Linux installation.\n"
+"\n"
+"\n"
+" \n"
+" - Append: On Apple hardware, the kernel append option is used quite often "
+"to\n"
+"assist in initializing video hardware, or to enable keyboard mouse button "
+"emulation\n"
+"for the often lacking 2nd and 3rd mouse buttons on a stock Apple mouse. The "
+"following \n"
+"are some examples:\n"
+"\n"
+"\n"
+"\t\t video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+"hda=autotune\n"
+"\n"
+"\t\t video=atyfb:vmode:12,cmode:24 adb_buttons=103,111 \n"
+"\n"
+"\n"
+" \n"
+" - Initrd: This option can be used either to load initial modules, before "
+"the boot \n"
+"device is available, or to load a ramdisk image for an emergency boot "
+"situation.\n"
+"\n"
+"\n"
+" - Initrd-size: The default ramdisk size is generally 4096 bytes. If you "
+"should need\n"
+"to allocate a large ramdisk, this option can be used.\n"
+"\n"
+"\n"
+" - Read-write: Normally the 'root' partition is initially brought up "
+"read-only, to allow\n"
+"a filesystem check before the system becomes 'live'. You can override this "
+"option here.\n"
+"\n"
+"\n"
+" - NoVideo: Should the Apple video hardware prove to be exceptionally "
+"problematic, you can\n"
+"select this option to boot in 'novideo' mode, with native framebuffer "
+"support.\n"
+"\n"
+"\n"
+" - Default: Selects this entry as being the default Linux selection, "
+"selectable by just\n"
+"pressing ENTER at the yaboot prompt. This entry will also be highlighted "
+"with a '*', if you\n"
+"press TAB to see the boot selections."
+msgstr ""
+"Burada \"yaboot\" üçün hćm baţqa iţlćtim sistemlćri, hćm alternativ "
+"kernellćr,\n"
+" ya da tćcili yardým açýlýţ ćkslćri ćlavć edć bilćrsiniz.\n"
+"\n"
+"\n"
+"Baţqa OSlćr üçün giriţin mćnasý ad vć kök çýđýrýndan ibarćtdir.\n"
+"\n"
+"\n"
+"Linuks üçün mühtćmćl giriţlćr bunlar ola bilćr: \n"
+"\n"
+"\n"
+" - Ad: Bu sadćcć olaraq \"yaboot\" üçün açýlacaq sistemi timsal edćn bir "
+"addýr.\n"
+"\n"
+"\n"
+" - Ćks: Bu isć açýlacaq çćkirdćyin, yć'ni kernelin adýdýr. Çox vaxt bu "
+"\"vmlinux\" vć ya\n"
+"bunun variasiyalarýdýr.\n"
+"\n"
+"\n"
+" - Kök: Linuks qurulumunun kök avadanlýđý vć ya '/'.\n"
+"\n"
+"\n"
+" \n"
+" - Ćlavć: Apple avadanlýqlarýnda kernel ćlavć seçćnćklćri ilć sýxlýqla "
+"baţlanđýc\n"
+"video avadanlýđý vć ya sýx sýx xćta verćn 2ci vć 3cü siçan düymćlćri üçün "
+"emulyasiya\n"
+"imkanlarý tanýna bilir. Mćsćlćn bunlar \n"
+"bir neçć nümunćdir:\n"
+"\n"
+"\n"
+"\t\t video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+"hda=autotune\n"
+"\n"
+"\t\t video=atyfb:vmode:12,cmode:24 adb_buttons=103,111 \n"
+"\n"
+"\n"
+" \n"
+" - Initrd: Açýlýţ avadanlýđýndan ćvvćl bćzi açýlýţ modullarýný seçmćk\n"
+"üçün iţlćdilir, ya da tćcili yardým açýlýţlarýnda \"ramdisk\" ćksini "
+"yüklćmćk imkaný verir.\n"
+"\n"
+"\n"
+" - Initrd-size: Ana \"ramdisk\" böyüklüyü ümumiyyćtlć 4096 baytdýr. Ćgćr "
+"daha geniţ \"ramdisk\" bildirć\n"
+"bilćrsiniz isć bu seçćnćyi iţlćdin.\n"
+"\n"
+"\n"
+" - Oxuma-yazma: Normalda sistemin 'dirilmćsindćn' ćvvćl bćzi sýnaqlarýn "
+"aparýla bilmćsi üçün\n"
+"'root' fayl sistemi bu moda soxulur. Bu seçćnćyi nćzćrć almayabilćrsiniz.\n"
+"\n"
+"\n"
+" - NoVideo: Bćlkć \"Apple\" video avadanlýđý problem çýxarda bilćr.Onda bu "
+"seçćnćklć\n"
+"sistemi 'novideo' modda tćbii \"framebuffer\" dćstćyi ilć aça bilćrsiniz.\n"
+"\n"
+"\n"
+" - Ćsas: Bu seçćnćklć Linuks sistemi ćsas iţlćtim sistemi halýna gćtirć "
+"bilćrsiniz.\n"
+"Onda ENTER düymćsinć basmaqla Linuks sistemi açýlacaqdýr. Bu giriţ ayrýca "
+"TAB ilć açýlýţ seçkilćrinć baxdýđýnýz vaxt \n"
+"'*' iţarćtilć iţýqlandýrýlacaqdýr."
+
+#: ../../help.pm_.c:793
msgid ""
"SILO is a bootloader for SPARC: it is able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3030,14 +3692,14 @@ msgid ""
"anyone, in which case you can delete the corresponding entries. But\n"
"in this case, you will need a boot disk in order to boot them!"
msgstr ""
-"SILO (Linux Yükleyici) SPARC üçün bir sistem yüklćyicidir: sistemi Linux\n"
-"ya da bilgisayarýnnýzdaký baţqa bir iţlćtim sistemiylć açabilirlćr.\n"
+"SILO (Linux Yüklćyici) SPARC üçün bir sistem yüklćyicidir: sistemi Linux\n"
+"ya da kompüterinizdćki baţqa bir iţlćtim sistemiylć açabilirlćr.\n"
"Ćsasćn bu digćr iţlćtim sistemlćri dođru bir ţćkildć tćsbitedilibaçýlýţa\n"
"qurula bilćrlćr. Ćgćr bir problem olarsa, buradan ćllć ćlavć edilć "
"bilćrlćr.\n"
"Parametrlćr mövzusunda diqqćtli olun."
-#: ../../help.pm_.c:692
+#: ../../help.pm_.c:805
msgid ""
"SILO main options are:\n"
" - Bootloader installation: Indicate where you want to place the\n"
@@ -3066,7 +3728,7 @@ msgstr ""
"Sistem yüklćyicisi, ćgćr \"delay\" sýfýr olaraq verilmiţ isć\n"
"heç gözlćmćz."
-#: ../../help.pm_.c:705
+#: ../../help.pm_.c:818
msgid ""
"Now it's time to configure the X Window System, which is the\n"
"core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
@@ -3092,100 +3754,32 @@ msgstr ""
"baţlayacaqdýr. Qurđuţarýnýza baxýn vć yoxlayýn. Qurđularýnýzý yoxlayaraq\n"
"uyuţmazlýq olub olmadýđýna baxýn, lazým gćlirsć geriyć dönün."
-#: ../../help.pm_.c:718
+#: ../../help.pm_.c:831
msgid ""
"If something is wrong in X configuration, use these options to correctly\n"
"configure the X Window System."
msgstr "X qurđularýnda problem olarsa aţađýdaký seçćnćklćri istifadć edin."
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:835
msgid ""
"If you prefer to use a graphical login, select \"Yes\". Otherwise, select\n"
"\"No\"."
msgstr ""
-"Ćgćr sistemć girćrkćn qrafik ara üzünün gćlmćsini istćyirsćnýz isć "
+"Ćgćr sistemć girćrkćn qrafik axtar üzünün gćlmćsini istćyirsćnýz isć "
"\"Bćli\",ćks halda \"Xeyr\" düymćsinć basýn."
-#: ../../help.pm_.c:726
+#: ../../help.pm_.c:839
msgid ""
-"You can now select some miscellaneous options for your system.\n"
-"\n"
-"* Use hard drive optimizations: this option can improve hard disk "
-"performance but is only for advanced users. Some buggy\n"
-" chipsets can ruin your data, so beware. Note that the kernel has a builtin "
-"blacklist of drives and chipsets, but if\n"
-" you want to avoid bad surprises, leave this option unset.\n"
-"\n"
-"\n"
-"* Choose security level: you can choose a security level for your system. "
-"Please refer to the manual for complete\n"
+"You can choose a security level for your system. Please refer to the manual "
+"for complete\n"
" information. Basically, if you don't know what to choose, keep the default "
"option.\n"
-"\n"
-"\n"
-"* Precise RAM if needed: unfortunately, there is no standard method to ask "
-"the BIOS about the amount of RAM present in\n"
-" your computer. As consequence, Linux may fail to detect your amount of RAM "
-"correctly. If this is the case, you can\n"
-" specify the correct amount or RAM here. Please note that a difference of 2 "
-"or 4 MB between detected memory and memory\n"
-" present in your system is normal.\n"
-"\n"
-"\n"
-"* Removable media automounting: if you would prefer not to manually mount "
-"removable media (CD-Rom, floppy, Zip, etc.) by\n"
-" typing \"mount\" and \"umount\", select this option.\n"
-"\n"
-"\n"
-"* Clean \"/tmp\" at each boot: if you want delete all files and directories "
-"stored in \"/tmp\" when you boot your system,\n"
-" select this option.\n"
-"\n"
-"\n"
-"* Enable num lock at startup: if you want NumLock key enabled after booting, "
-"select this option. Please note that you\n"
-" should not enable this option on laptops and that NumLock may or may not "
-"work under X."
msgstr ""
-"Ýndi sisteminiz üçün müftćlif qurđularý edćcćksiniz.\n"
-"\n"
-" - Sabit disk optimizasiyasý: Sabit diskin iţ qabiliyćtini artýrmaq \n"
-"üçün iţlćdilir, amma sadćcć olaraq tćcrübćli istifadćcilćrć tövsiyć edilir: "
-"\n"
-"bćzi xatalý yongalar(chip) datalarýnýzýn pozulmasýna sćbćb ola bilćr, buna \n"
-"görć dć diqqćtli olun. Diqqćt edilmalidir ki, çćkirdćklć birliktć\n"
-"sürücülćr va yonqalar üçün bir qara siyahý gćlćr. Ýstćyćrsiniz\n"
-"naxoţ sürprizlćrlć qarţýlaţmamaq üçün bu seçćnćyi boţ buraxýn.\n"
-"\n"
-" - Mühafizć saviyyasi: Sisteminiz üçün bir mühafizć sćviyyćsi seçć "
-"bilćrsiniz.\n"
-"Tam bir bilgi üçün lazými man sćhifćlćrinć baxýn. Ćsasćn:\n"
-"bilirsćniz \"orta\"'yý seçin; ćgć haqiqćtćn dć e'tibarlý bir sistemć malik \n"
-"olmaq istćyirsćniz isć, \"ţübhćci\"yi seçin. Fćqćt unutmayýn ki, BU "
-"SĆVÝYYĆDĆ \n"
-"SÝSTEMĆ KONSOLDAN ROOT OLARAQ GÝRMĆYÝNÝZE ÝCAZĆ YOXDUR: Sýravi bir "
-"istifadćçi \n"
-"olarak girib, sonra \"su\" ćmri ilć root ola bilćrsiniz. Ümumiyyćtlć \n"
-"siteminizi verici olaraq istifadć xaricindć baţqqa bir sahćdć istifadćyi \n"
-"düţünmćyin. Mćn sizi xćbćrdar etdim.\n"
-"\n"
-" - Ümumi hafizć miqdarý: Günümüz PC dünyasýnda BIOS'a bilgisayarýnýzdaký \n"
-"ümumi hafiza miqdarýný soruţacaq bir yol yoxdur. Nćticćdć \n"
-"Linux hćqiqi RAM miqdarýný tapmaqda yanýla bilćr. Belćliklć\n"
-"dođru RAM miqdarýný buraya girć bilćrsiniz. 2 ya da 4 MB'liq bir fark "
-"normal\n"
-"sayýla bilćr.\n"
-"\n"
-" - Taxýlýb sökülabilćn avadanlýqlarýn avtomatik bađlanmasý: \"mount\" vć "
-"\"umount\"\n"
-"ćmrlari kömćyilć ćlla disk, CD sürücü kimi avadanlýqlarý bađlamaq "
-"istamirsćniz \n"
-"bu seçanayi iţarćtlayin.\n"
-"\n"
-" - Açýlýţda Num Lock iţýđýný yandýr: Açýlýţda Num Lock iţýđýnýn yanmasýný \n"
-"istayirsiniz isć bu seçćnćyi iţarćtlayin (X altýnda iţlćmćyć bilćr.)"
-
-#: ../../help.pm_.c:755
+"Sisteminiz üçün tćhlükćsizlik sćviyyćsini seçć bilćrsiniz. Ćtraflý mć'lumat "
+"üçün lütfćn bćlćdçiyć\n"
+" baţ vurun. Ćsasćn , nć seçćcćyinizi bilmirsiniz isć buraya heç toxunmayýn.\n"
+
+#: ../../help.pm_.c:844
msgid ""
"Your system is going to reboot.\n"
"\n"
@@ -3193,109 +3787,145 @@ msgid ""
"If you want to boot into another existing operating system, please read\n"
"the additional instructions."
msgstr ""
-"Ýndi sistem tćzćdćn qapanýb açýlacaqdýr.\n"
+"Ýndi sistem yenidćn qapanýb açýlacaqdýr.\n"
"\n"
"Açýldýqdan sonra Linux Mandrake avtomatik olaraq yüklćnćcćkdir. Ćgćr baţqa \n"
-"bir iţlćtim sistemi dć iţlćdćcćksaniz ćlavć xćbćrdarlýqlarý oxuyun."
+"bir iţlćtim sistemi dć iţlćdćcćksćniz ćlavć xćbćrdarlýqlarý oxuyun."
-#: ../../install2.pm_.c:40
+#: ../../install2.pm_.c:39
msgid "Choose your language"
msgstr "Ýţlćtdiyiniz dili seçin"
-#: ../../install2.pm_.c:41
+#: ../../install2.pm_.c:40
msgid "Select installation class"
msgstr "Quruluţ sinifini seçin"
-#: ../../install2.pm_.c:42
+#: ../../install2.pm_.c:41
msgid "Hard drive detection"
-msgstr "Sabit disk seçimi"
+msgstr "Sabit disk seçkisi"
-#: ../../install2.pm_.c:43
+#: ../../install2.pm_.c:42
msgid "Configure mouse"
msgstr "Siçan qurđularý"
-#: ../../install2.pm_.c:44
+#: ../../install2.pm_.c:43
msgid "Choose your keyboard"
msgstr "Klaviaturanýzý seçin"
-#: ../../install2.pm_.c:45 ../../install_steps_interactive.pm_.c:497
-msgid "Miscellaneous"
-msgstr "Müxtćlif"
+#: ../../install2.pm_.c:44
+msgid "Security"
+msgstr "Tćhlükćsizlik"
-#: ../../install2.pm_.c:46
+#: ../../install2.pm_.c:45
msgid "Setup filesystems"
-msgstr "Dosye sistemlćri Quraţdýrýlmasý"
+msgstr "Fayl sistemi qurđularý"
-#: ../../install2.pm_.c:47
+#: ../../install2.pm_.c:46
msgid "Format partitions"
-msgstr "Bölümlćrin ţćkillćndirilmćsi"
+msgstr "Bölüm ţćkillćndirilmćsi"
-#: ../../install2.pm_.c:48
+#: ../../install2.pm_.c:47
msgid "Choose packages to install"
msgstr "Qurulacaq paketlćri seçin"
-#: ../../install2.pm_.c:49
+#: ../../install2.pm_.c:48
msgid "Install system"
msgstr "Sistemi qur"
+#: ../../install2.pm_.c:49 ../../install_steps_interactive.pm_.c:894
+#: ../../install_steps_interactive.pm_.c:895
+msgid "Set root password"
+msgstr "Root parolunu qur"
+
#: ../../install2.pm_.c:50
+msgid "Add a user"
+msgstr "Ýstifadćçi ćlavć et"
+
+#: ../../install2.pm_.c:51
msgid "Configure networking"
-msgstr "Networku qur"
+msgstr "Ţćbćkćni qur"
-#: ../../install2.pm_.c:52
-msgid "Configure timezone"
-msgstr "Zaman dilimini qur"
+#: ../../install2.pm_.c:53 ../../install_steps_interactive.pm_.c:818
+msgid "Summary"
+msgstr "Mündćricat"
-#: ../../install2.pm_.c:53
+#: ../../install2.pm_.c:54
msgid "Configure services"
msgstr "Xidmćtlćri qur"
-#: ../../install2.pm_.c:54
-msgid "Configure printer"
-msgstr "Yazýcýyý qur"
-
-#: ../../install2.pm_.c:55 ../../install_steps_interactive.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:763
-msgid "Set root password"
-msgstr "Root parolunu qur"
-
#: ../../install2.pm_.c:56
-msgid "Add a user"
-msgstr "Ýstifadćçi ćlavć et"
-
-#: ../../install2.pm_.c:58
msgid "Create a bootdisk"
msgstr "Açýlýţ disketi yarat"
-#: ../../install2.pm_.c:60
+#: ../../install2.pm_.c:58
msgid "Install bootloader"
msgstr "Sistem yüklćyiciyi qur"
-#: ../../install2.pm_.c:61
+#: ../../install2.pm_.c:59
msgid "Configure X"
msgstr "X'i qur"
-#: ../../install2.pm_.c:63
-msgid "Auto install floppy"
-msgstr "Floppy'yi avtomatik qur"
-
-#: ../../install2.pm_.c:65
+#: ../../install2.pm_.c:60
msgid "Exit install"
msgstr "Qurulumdan Çýx"
-#: ../../install_any.pm_.c:578
+#: ../../install_any.pm_.c:373
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They don't have any known security\n"
+"issues, but some new could be found. In that case, you must make sure to "
+"upgrade\n"
+"as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+
+#: ../../install_any.pm_.c:404
+msgid "Can't use broadcast with no NIS domain"
+msgstr ""
+
+#: ../../install_any.pm_.c:647
+#, c-format
+msgid "Insert a FAT formatted floppy in drive %s"
+msgstr "%s sürücüsünć FAT ţćkillćndirilmiţ bir disket taxýn"
+
+#: ../../install_any.pm_.c:651
+msgid "This floppy is not FAT formatted"
+msgstr "BU floppi FAT ţćklindć deyildir"
+
+#: ../../install_any.pm_.c:661
+msgid ""
+"To use this saved packages selection, boot installation with ``linux "
+"defcfg=floppy''"
+msgstr ""
+"Bu saxlanmýţ paketlćr seçkisini iţlćtmćk üçün qurulumu ``linux "
+"defcfg=floppy''ilć baţladýn."
+
+#: ../../install_any.pm_.c:683
msgid "Error reading file $f"
-msgstr "$f dosyesý oxunurkan xćta oldu"
+msgstr "$f faylý oxunurkćn xćta oldu"
+
+#: ../../install_gtk.pm_.c:84 ../../install_steps_gtk.pm_.c:310
+#: ../../interactive.pm_.c:95 ../../interactive.pm_.c:110
+#: ../../interactive.pm_.c:265 ../../interactive_newt.pm_.c:166
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:356
+#: ../../my_gtk.pm_.c:616 ../../my_gtk.pm_.c:639
+msgid "Ok"
+msgstr "Oldu"
-#: ../../install_gtk.pm_.c:426
+#: ../../install_gtk.pm_.c:423
msgid "Please test the mouse"
msgstr "Lütfćn siçanýnýzý seçin"
-#: ../../install_gtk.pm_.c:427
+#: ../../install_gtk.pm_.c:424
msgid "To activate the mouse,"
msgstr "Siçanýnýzý iţć salmaq üçün,"
-#: ../../install_gtk.pm_.c:428
+#: ../../install_gtk.pm_.c:425
msgid "MOVE YOUR WHEEL!"
msgstr "TĆKĆRÝ OYNADIN!"
@@ -3318,7 +3948,7 @@ msgstr ""
"Bir root disk bölümüna ehtiyacýnýz var.\n"
"Bunun üçün istćr mövcud bir disk bölümü üzćrina týqlayýn, \n"
"ya da yeni birini baţdan yaradýn. Sonra \"Bađlama \n"
-"Nöqtćsi\"nć galin va burayý '/' olaraq dćyiţdirin."
+"Nöqtćsi\"nć gćlin va burayý '/' olaraq dćyiţdirin."
#: ../../install_interactive.pm_.c:46 ../../install_steps_graphical.pm_.c:259
msgid "You must have a swap partition"
@@ -3331,7 +3961,7 @@ msgid ""
"Continue anyway?"
msgstr ""
"Bir swap sahćniz yoxdur\n"
-"Davam edim mi?"
+"Davam edimmi?"
#: ../../install_interactive.pm_.c:68
msgid "Use free space"
@@ -3339,11 +3969,11 @@ msgstr "Boţ sahćni istifadć et"
#: ../../install_interactive.pm_.c:70
msgid "Not enough free space to allocate new partitions"
-msgstr "Tćzć bölmalar üçün boţ sahć yoxdur"
+msgstr "Tćzć bölmćlćr üçün boţ sahć yoxdur"
#: ../../install_interactive.pm_.c:78
msgid "Use existing partition"
-msgstr "Var olan bölmćlćri iţladim mi"
+msgstr "Var olan bölmćlćri iţlćdimmi"
#: ../../install_interactive.pm_.c:80
msgid "There is no existing partition to use"
@@ -3359,7 +3989,7 @@ msgstr "Linux4Win'i qurmaq üçün hansý disk bölmćsini istifadć edćcćksiniz?"
#: ../../install_interactive.pm_.c:92
msgid "Choose the sizes"
-msgstr "Boylarýný seçin"
+msgstr "Böyüklüklćrini seçin"
#: ../../install_interactive.pm_.c:93
msgid "Root partition size in MB: "
@@ -3371,15 +4001,15 @@ msgstr "Swap sahćsi boyu (Mb): "
#: ../../install_interactive.pm_.c:102
msgid "Use the free space on the Windows partition"
-msgstr "Windows bölmćsindćki boţ sahani iţlćt"
+msgstr "Windows bölmćsindćki boţ sahćni iţlćt"
#: ../../install_interactive.pm_.c:105
msgid "Which partition do you want to resize?"
-msgstr "Hansý bölmćnin boyunu dćyiţdirćcćksiniz?"
+msgstr "Hansý bölmćnin böyüklüyünü dćyiţdirćcćksiniz?"
#: ../../install_interactive.pm_.c:107
msgid "Computing Windows filesystem bounds"
-msgstr "Fat dosyć sistemi uclarý hesaplanýr"
+msgstr "Fat fayl sistemi uclarý hesaplanýr"
#: ../../install_interactive.pm_.c:110
#, c-format
@@ -3387,7 +4017,7 @@ msgid ""
"The FAT resizer is unable to handle your partition, \n"
"the following error occured: %s"
msgstr ""
-"FAT analizcimiz sizin bölümlćri iţlćdć bilmir,\n"
+"FAT tćdqiqatçýmýz sizin bölümlćri iţlćdć bilmir,\n"
"bu xćta oldu: %s"
#: ../../install_interactive.pm_.c:113
@@ -3405,12 +4035,13 @@ msgid ""
"restart the installation. You should also backup your data.\n"
"When sure, press Ok."
msgstr ""
-"Diqqćt!\n"
-"DrakX Windows disk bölmćnizin boyunu dćyiţdirćcćk. Bu iţ \n"
-"tehlükćli ola bilćr. Aţina deyil isćniz qurulumdan çýxýn vć Windows \n"
-"altýnda Scandisk (lazým gćlćrsć defrag da) proqramýný çalýţdýrýn. Ardýndan "
-"quruluma \n"
-"davam edin. Verilarinizin yedćyini almađý da unutmayýn!"
+"DÝQQĆT!\n"
+"\n"
+"DrakX \"Windows\" disk bölmćnizin böyüklüyünü dćyiţdirćcćk. Bu iţ \n"
+"tehlükćli ola bilćr. Aţina deyil isćniz qurulumdan çýxýn vć \"Windows\" \n"
+"altýnda \"Scandisk\" (lazým gćlćrsć \"defrag\" da) proqramýný çalýţdýrýn. "
+"Ardýndan quruluma \n"
+"davam edin. Verilćrinizin yedćyini almađý da unutmayýn!"
#: ../../install_interactive.pm_.c:123
msgid "Which size do you want to keep for windows on"
@@ -3424,7 +4055,7 @@ msgstr "bölmć %s"
#: ../../install_interactive.pm_.c:130
#, c-format
msgid "FAT resizing failed: %s"
-msgstr "Boyunun dćyiţdirilmćsi iflas etdi %s"
+msgstr "FAT böyüklüyü dćyiţdirilmćsi bacarýlmadý: %s"
#: ../../install_interactive.pm_.c:145
msgid ""
@@ -3438,7 +4069,7 @@ msgstr "Bütün diski sil"
#: ../../install_interactive.pm_.c:151
msgid "Remove Windows(TM)"
-msgstr "Windowsu sil"
+msgstr "\"Windows\"u sil"
#: ../../install_interactive.pm_.c:154
msgid "You have more than one hard drive, which one do you install linux on?"
@@ -3450,20 +4081,16 @@ msgstr ""
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr ""
-"%s bölümćsinin boyu dćyiţdirildikdćn sonra bu bölćdćki bütün bilgilćr "
+"%s bölümćsinin boyu dćyiţdirildikdćn sonra bu bölćdćki bütün mć'lumatlar "
"silinćcćkdir"
#: ../../install_interactive.pm_.c:165
-msgid "Expert mode"
-msgstr "Usta modu"
-
-#: ../../install_interactive.pm_.c:165
-msgid "Use diskdrake"
-msgstr "Diskdrake istifadć et"
+msgid "Custom disk partitioning"
+msgstr "Hazýrký disk bölmćlćndirmćsi"
#: ../../install_interactive.pm_.c:169
msgid "Use fdisk"
-msgstr "Fdisk istifadć et"
+msgstr "\"Fdisk\" istifadć et"
#: ../../install_interactive.pm_.c:172
#, c-format
@@ -3472,34 +4099,34 @@ msgid ""
"When you are done, don't forget to save using `w'"
msgstr ""
"Ýndi %s sabit diskinizi bölmćlćndirć bilćrsiniz\n"
-"Ýţinizi bitirdiyinizda `w' ilć qeyd etmćyi unutmayýn"
+"Ýţinizi bitirdiyinizdć `w' ilć qeyd etmćyi unutmayýn"
-#: ../../install_interactive.pm_.c:196
+#: ../../install_interactive.pm_.c:201
msgid "You don't have enough free space on your Windows partition"
msgstr "Heç Windows disk bölmćniz yoxdur!"
-#: ../../install_interactive.pm_.c:211
+#: ../../install_interactive.pm_.c:217
msgid "I can't find any room for installing"
msgstr "Artýq bölmć ćlavć edilć bilmćz"
-#: ../../install_interactive.pm_.c:214
+#: ../../install_interactive.pm_.c:221
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX bölmć sehirbazý bu yolu tapdý:"
-#: ../../install_interactive.pm_.c:219
+#: ../../install_interactive.pm_.c:226
#, c-format
msgid "Partitioning failed: %s"
msgstr "Bölmć cćdvćli növü: %s"
-#: ../../install_interactive.pm_.c:234
+#: ../../install_interactive.pm_.c:232
msgid "Bringing up the network"
-msgstr "Network aktivlćţdirilir"
+msgstr "Ţćbćkć aktivlćţdirilir"
-#: ../../install_interactive.pm_.c:239
+#: ../../install_interactive.pm_.c:237
msgid "Bringing down the network"
-msgstr "Network dayandýrýlýr"
+msgstr "Ţćbćkć dayandýrýlýr"
-#: ../../install_steps.pm_.c:74
+#: ../../install_steps.pm_.c:73
msgid ""
"An error occurred, but I don't know how to handle it nicely.\n"
"Continue at your own risk."
@@ -3507,7 +4134,7 @@ msgstr ""
"Bir xćta oldu, fćqćt necć düzćldilacćyini bilmirćm.\n"
"Davam edin, riski sizć aitdir!"
-#: ../../install_steps.pm_.c:202
+#: ../../install_steps.pm_.c:203
#, c-format
msgid "Duplicate mount point %s"
msgstr "%s bađlama nöqtćsini çoxalt"
@@ -3524,16 +4151,16 @@ msgstr ""
"Ćvvćldćn Linux qurulu bir sistemdć \"rpm -qpl Mandrake/RPMS/*.rpm\"'yi\n"
"istifadć edćrćk Cd-Rom'u yoxlayýn.\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:451
#, c-format
msgid "Welcome to %s"
msgstr "%s'ć Xoţgćlmiţsiniz"
-#: ../../install_steps.pm_.c:670
+#: ../../install_steps.pm_.c:634
msgid "No floppy drive available"
msgstr "Disket sürücü yoxdur"
-#: ../../install_steps_auto_install.pm_.c:43
+#: ../../install_steps_auto_install.pm_.c:51
#: ../../install_steps_stdio.pm_.c:23
#, c-format
msgid "Entering step `%s'\n"
@@ -3545,75 +4172,73 @@ msgstr "Qurmaq istćdiyiniz paketlćri seçin"
#: ../../install_steps_graphical.pm_.c:334
msgid "Total size: "
-msgstr "Hamýsýnýn boyu: "
+msgstr "Hamýsý: "
-#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:353
-#: ../../standalone/rpmdrake_.c:136
+#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:437
#, c-format
msgid "Version: %s\n"
msgstr "Buraxýlýţ: %s\n"
-#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:354
-#: ../../standalone/rpmdrake_.c:137
+#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:438
#, c-format
msgid "Size: %d KB\n"
-msgstr "Boyu: %d KB\n"
+msgstr "Böyüklüyü: %d KB\n"
-#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:260
+#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:520
msgid "Choose the packages you want to install"
-msgstr "Qurmaq istadiyiniz paketlćri seçin"
+msgstr "Qurmaq istćdiyiniz paketlćri seçin"
-#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:263
+#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:340
msgid "Info"
msgstr "Mć'lumat"
-#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:268
-#: ../../install_steps_interactive.pm_.c:216 ../../standalone/rpmdrake_.c:161
+#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_interactive.pm_.c:226
msgid "Install"
msgstr "Qurulum"
-#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:466
-#: ../../install_steps_interactive.pm_.c:594
+#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:558
+#: ../../install_steps_interactive.pm_.c:675
msgid "Installing"
msgstr "Qurulur"
-#: ../../install_steps_graphical.pm_.c:499 ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_graphical.pm_.c:499
msgid "Please wait, "
msgstr "Lütfćn gözlćyin, "
-#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:474
+#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:570
msgid "Time remaining "
msgstr "Qalan müddćt"
-#: ../../install_steps_graphical.pm_.c:502 ../../install_steps_gtk.pm_.c:475
+#: ../../install_steps_graphical.pm_.c:502
msgid "Total time "
msgstr "Ümumi müddćt"
-#: ../../install_steps_graphical.pm_.c:507 ../../install_steps_gtk.pm_.c:484
-#: ../../install_steps_interactive.pm_.c:594
+#: ../../install_steps_graphical.pm_.c:507
+#: ../../install_steps_interactive.pm_.c:675
msgid "Preparing installation"
msgstr "Qurulum hazýrlanýr"
-#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:500
+#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:618
#, c-format
msgid "Installing package %s"
msgstr "%s paketi qurulur"
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:569
-#: ../../install_steps_gtk.pm_.c:573
+#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:695
+#: ../../install_steps_gtk.pm_.c:699
msgid "Go on anyway?"
-msgstr "Yenć dć davam edćlim mi?"
+msgstr "Yenć dć davam edćkmi?"
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:569
+#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:695
msgid "There was an error ordering packages:"
msgstr "Paketlćri istćrkćn bir xćta oldu:"
#: ../../install_steps_graphical.pm_.c:577
-#: ../../install_steps_interactive.pm_.c:1003
msgid "Use existing configuration for X11?"
-msgstr "X11 qurđularý üçün mövcud qurđulardan istifadć edćlim mi?"
+msgstr "X11 qurđularý üçün mövcud qurđulardan istifadć edćlimmi?"
-#: ../../install_steps_gtk.pm_.c:136
+#: ../../install_steps_gtk.pm_.c:142
msgid ""
"Your system is low on resource. You may have some problem installing\n"
"Linux-Mandrake. If that occurs, you can try a text install instead. For "
@@ -3626,17 +4251,17 @@ msgstr ""
"dćCDROMdan baţlatdýđýnýz zaman,\n"
" 'F1'ć basýn vć 'text' yazaraq enter'ć basýn."
-#: ../../install_steps_gtk.pm_.c:150
+#: ../../install_steps_gtk.pm_.c:156
msgid "Please, choose one of the following classes of installation:"
msgstr "Lütfćn aţađýdaký qurulum siniflćrindćn birisini seçiniz:"
-#: ../../install_steps_gtk.pm_.c:215
+#: ../../install_steps_gtk.pm_.c:222
#, c-format
msgid ""
"The total size for the groups you have selected is approximately %d MB.\n"
msgstr "Seçdiyiniz paket qruplarýnýn ümumi böyüklüyü tćximćn %d MBdýr.\n"
-#: ../../install_steps_gtk.pm_.c:217
+#: ../../install_steps_gtk.pm_.c:224
msgid ""
"If you wish to install less than this size,\n"
"select the percentage of packages that you want to install.\n"
@@ -3648,7 +4273,7 @@ msgstr ""
"qurmaq istćdiyiniz paket faizini seçin.\n"
"100%'i seçćrsćniz bütün paketlćr qurulacaqdýr."
-#: ../../install_steps_gtk.pm_.c:222
+#: ../../install_steps_gtk.pm_.c:229
msgid ""
"You have space on your disk for only %d%% of these packages.\n"
"\n"
@@ -3663,103 +4288,108 @@ msgstr ""
"daha az bir faiz sadćcć ćn vacib paketlćri ;\n"
"%d%% isć qurula bilćcćk bütün paketlćri quracaqdýr."
-#: ../../install_steps_gtk.pm_.c:228
+#: ../../install_steps_gtk.pm_.c:235
msgid "You will be able to choose them more specifically in the next step."
msgstr "Sonraký addýmda daha geniţ bir seçki qbađýnýza gćlćcćkdir."
-#: ../../install_steps_gtk.pm_.c:230
+#: ../../install_steps_gtk.pm_.c:237
msgid "Percentage of packages to install"
msgstr "Qurulacaq paketlćrin faizi"
-#: ../../install_steps_gtk.pm_.c:272
-msgid "Automatic dependencies"
-msgstr "Avtomatik ehtiyac yoxlamasý"
+#: ../../install_steps_gtk.pm_.c:285 ../../install_steps_interactive.pm_.c:599
+msgid "Package Group Selection"
+msgstr "Paket Qrup Seçkisi"
+
+#: ../../install_steps_gtk.pm_.c:305 ../../install_steps_interactive.pm_.c:614
+msgid "Individual package selection"
+msgstr "Tćk tćk paket seçkisi"
-#: ../../install_steps_gtk.pm_.c:332 ../../standalone/rpmdrake_.c:101
+#: ../../install_steps_gtk.pm_.c:349
+msgid "Show automatically selected packages"
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:416
msgid "Expand Tree"
msgstr "Ađacý Aç"
-#: ../../install_steps_gtk.pm_.c:333 ../../standalone/rpmdrake_.c:102
+#: ../../install_steps_gtk.pm_.c:417
msgid "Collapse Tree"
msgstr "Ađacý Qapat"
-#: ../../install_steps_gtk.pm_.c:334
+#: ../../install_steps_gtk.pm_.c:418
msgid "Toggle between flat and group sorted"
msgstr "Otaq vć grup sýralamasý arasýnda gćz"
-#: ../../install_steps_gtk.pm_.c:351
+#: ../../install_steps_gtk.pm_.c:435
msgid "Bad package"
msgstr "Xćtalý paket"
-#: ../../install_steps_gtk.pm_.c:352
+#: ../../install_steps_gtk.pm_.c:436
#, c-format
msgid "Name: %s\n"
msgstr "Ad: %s\n"
-#: ../../install_steps_gtk.pm_.c:355
+#: ../../install_steps_gtk.pm_.c:439
#, c-format
msgid "Importance: %s\n"
-msgstr "Vasiblik: %s\n"
+msgstr "Vaciblik: %s\n"
-#: ../../install_steps_gtk.pm_.c:363
+#: ../../install_steps_gtk.pm_.c:448 ../../install_steps_interactive.pm_.c:578
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Ümumi böyüklük: %d / %d Mb"
-#: ../../install_steps_gtk.pm_.c:382
+#: ../../install_steps_gtk.pm_.c:467
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "Bu paketi seçć bilmćzsiniz, çünki qurmaq üçün yer çatmýr."
-#: ../../install_steps_gtk.pm_.c:386
+#: ../../install_steps_gtk.pm_.c:471
msgid "The following packages are going to be installed"
msgstr "Aţađýdaký paketlćr qurulacaqdýr"
-#: ../../install_steps_gtk.pm_.c:387
+#: ../../install_steps_gtk.pm_.c:472
msgid "The following packages are going to be removed"
msgstr "Aţađýdaký paketlćr sistemdćn silinćcćklćr"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:482
msgid "You can't select/unselect this package"
msgstr "Bu paketi seçć bilmćzsiniz/sistemdćn çýxarda bilmćzsýnýz"
-#: ../../install_steps_gtk.pm_.c:416
+#: ../../install_steps_gtk.pm_.c:501
msgid "This is a mandatory package, it can't be unselected"
msgstr "Bu lazými bir paketdir, sistemdćn çýxardýla bilmćz"
-#: ../../install_steps_gtk.pm_.c:418
+#: ../../install_steps_gtk.pm_.c:503
msgid "You can't unselect this package. It is already installed"
msgstr "Bu paketi sistemdćn çýxarda bilmćzsýnýz. Artýq qurulmuţdur."
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:507
msgid ""
"This package must be upgraded\n"
"Are you sure you want to deselect it?"
msgstr ""
-"Bu paket tćzćlćnmćlidir\n"
+"Bu paket yenilćnmćlidir\n"
"Sistemdćn çýxarmaq mövzusunda ciddimiziniz?"
-#: ../../install_steps_gtk.pm_.c:425
+#: ../../install_steps_gtk.pm_.c:510
msgid "You can't unselect this package. It must be upgraded"
msgstr "Bu paketi sistemdćn çýxarda bilmćzsiniz. Tćzćlćnmćlidir"
-#: ../../install_steps_gtk.pm_.c:469
+#: ../../install_steps_gtk.pm_.c:563
msgid "Estimating"
-msgstr "Tćmini olaraq hesaplanýr"
+msgstr "Tćxmini olaraq hesaplanýr"
-#: ../../install_steps_gtk.pm_.c:481 ../../interactive.pm_.c:86
-#: ../../interactive.pm_.c:249 ../../interactive_newt.pm_.c:51
-#: ../../interactive_newt.pm_.c:99 ../../interactive_stdio.pm_.c:27
-#: ../../my_gtk.pm_.c:246 ../../my_gtk.pm_.c:486
-msgid "Cancel"
-msgstr "Lćđv et"
+#: ../../install_steps_gtk.pm_.c:582
+msgid "Please wait, preparing installation"
+msgstr "Lütfćn gözlćyin, qurulum hazýrlanýr"
-#: ../../install_steps_gtk.pm_.c:495
+#: ../../install_steps_gtk.pm_.c:613
#, c-format
msgid "%d packages"
msgstr "%d paket"
-#: ../../install_steps_gtk.pm_.c:531
+#: ../../install_steps_gtk.pm_.c:652
msgid ""
"\n"
"Warning\n"
@@ -3819,11 +4449,15 @@ msgstr ""
"respective authors and are protected by intellectual property and \n"
"copyright laws applicable to software programs.\n"
-#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+#: ../../install_steps_gtk.pm_.c:680 ../../install_steps_interactive.pm_.c:163
msgid "Accept"
-msgstr "Qćbul"
+msgstr "Qćbul Et"
+
+#: ../../install_steps_gtk.pm_.c:680 ../../install_steps_interactive.pm_.c:163
+msgid "Refuse"
+msgstr "Rćdd Et"
-#: ../../install_steps_gtk.pm_.c:559
+#: ../../install_steps_gtk.pm_.c:681
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -3837,27 +4471,32 @@ msgstr ""
"\"%s\" adlý Cd-Romu sürücünüzć taxýn vć OLDU'ya basýn.\n"
"Ćgćr Cd-Rom ćlinizdć deyilsć bu Cd-Rom'dan qurmamaq üçün ÝMTÝNA ET'ć basýn."
-#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
-msgid "Refuse"
-msgstr "Rćdd et"
-
-#: ../../install_steps_gtk.pm_.c:573
+#: ../../install_steps_gtk.pm_.c:699
msgid "There was an error installing packages:"
msgstr "Paketlćr qurulurkćn bir xćta oldu:"
-#: ../../install_steps_interactive.pm_.c:38
+#: ../../install_steps_interactive.pm_.c:37
msgid "An error occurred"
msgstr "Bir xćta oldu"
-#: ../../install_steps_interactive.pm_.c:54
+#: ../../install_steps_interactive.pm_.c:55
msgid "Please, choose a language to use."
msgstr "Lütfćn istifadć üçün bir dil seçin."
-#: ../../install_steps_interactive.pm_.c:70
+#: ../../install_steps_interactive.pm_.c:56
+msgid "You can choose other languages that will be available after install"
+msgstr "Qurulumdan sonra istifadć edć bilćcćyiniz baţqa dillćr seçć bilćrsiniz"
+
+#: ../../install_steps_interactive.pm_.c:68
+#: ../../install_steps_interactive.pm_.c:613
+msgid "All"
+msgstr "Hamýsý"
+
+#: ../../install_steps_interactive.pm_.c:86
msgid "License agreement"
msgstr "Lisenziya sözlćţmćsi"
-#: ../../install_steps_interactive.pm_.c:71
+#: ../../install_steps_interactive.pm_.c:87
msgid ""
"Introduction\n"
"\n"
@@ -4095,132 +4734,103 @@ msgstr ""
"Paris - France.\n"
"For any question on this document, please contact MandrakeSoft S.A. \n"
-#: ../../install_steps_interactive.pm_.c:154
-#: ../../standalone/keyboarddrake_.c:21
+#: ../../install_steps_interactive.pm_.c:182
+#: ../../install_steps_interactive.pm_.c:822
+#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Klaviatura"
-#: ../../install_steps_interactive.pm_.c:155
-#: ../../standalone/keyboarddrake_.c:22
+#: ../../install_steps_interactive.pm_.c:183
+#: ../../standalone/keyboarddrake_.c:29
msgid "Please, choose your keyboard layout."
msgstr "Klaviatura quruluţunu seçiniz."
-#: ../../install_steps_interactive.pm_.c:166
-msgid "You can choose other languages that will be available after install"
-msgstr "Qurulumdan sonra istifadć edć bilćcćyiniz baţqa dillćr seçć bilćrsiniz"
-
-#: ../../install_steps_interactive.pm_.c:173
-#: ../../install_steps_interactive.pm_.c:520
-msgid "All"
-msgstr "Hamýsýný"
+#: ../../install_steps_interactive.pm_.c:184
+msgid "Here is the full list of keyboards available"
+msgstr "Bütün mövcud klaviaturalarýn siyahýsý"
-#: ../../install_steps_interactive.pm_.c:181
-#: ../../install_steps_interactive.pm_.c:227
+#: ../../install_steps_interactive.pm_.c:201
msgid "Install Class"
msgstr "Qurulum Sinifi"
-#: ../../install_steps_interactive.pm_.c:181
+#: ../../install_steps_interactive.pm_.c:201
msgid "Which installation class do you want?"
-msgstr "Hansý qurulum siniifini istćyirsiniz?"
+msgstr "Hansý qurulum sinifini istćyirsiniz?"
-#: ../../install_steps_interactive.pm_.c:183
+#: ../../install_steps_interactive.pm_.c:203
msgid "Install/Update"
msgstr "Qurulum/Güncćllćmć"
-#: ../../install_steps_interactive.pm_.c:183
+#: ../../install_steps_interactive.pm_.c:203
msgid "Is this an install or an update?"
-msgstr "Bu bir qurulum mu, yoxsa güncćllćmć mi?"
+msgstr "Bu bir qurulum mu, yoxsa güncćllćmćmi?"
-#: ../../install_steps_interactive.pm_.c:192
+#: ../../install_steps_interactive.pm_.c:212
msgid "Recommended"
msgstr "Tövsiyć edilćn"
-#: ../../install_steps_interactive.pm_.c:195
-#: ../../install_steps_interactive.pm_.c:211
-msgid "Customized"
-msgstr "Xüsusi"
-
-#: ../../install_steps_interactive.pm_.c:196
-#: ../../install_steps_interactive.pm_.c:211
+#: ../../install_steps_interactive.pm_.c:215
+#: ../../install_steps_interactive.pm_.c:218
msgid "Expert"
msgstr "Usta"
-#: ../../install_steps_interactive.pm_.c:206
-msgid ""
-"Are you sure you are an expert? \n"
-"You will be allowed to make powerful but dangerous things here.\n"
-"\n"
-"You will be asked questions such as: ``Use shadow file for passwords?'',\n"
-"are you ready to answer that kind of questions?"
-msgstr ""
-"Bir usta olduđunuzu düsünürsünüz mü? \n"
-"Burada güclü fćqćt tćhlükćli ola bilacćk iţlćrć icazć verilćcćkdir.\n"
-"\n"
-"Mćsćlćn ''Kölgćli parol istifadć etmćk istćyirsiniz mi?!! deyć suallar "
-"aoruţulacaq,\n"
-"Buna hazýrsýnýz mý?"
-
-#: ../../install_steps_interactive.pm_.c:216
+#: ../../install_steps_interactive.pm_.c:226
msgid "Update"
-msgstr "Güncallćmć"
-
-#: ../../install_steps_interactive.pm_.c:222
-msgid "Workstation"
-msgstr "Masa üsti"
-
-#: ../../install_steps_interactive.pm_.c:223
-msgid "Development"
-msgstr "Tćcrübi"
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Server"
-msgstr "Verici"
-
-#: ../../install_steps_interactive.pm_.c:228
-msgid "What is your system used for?"
-msgstr "Sisteminiz hansý mćqsćdlć istifadć edilćcćk?"
+msgstr "Güncćllćmć"
-#: ../../install_steps_interactive.pm_.c:244 ../../standalone/mousedrake_.c:24
+#: ../../install_steps_interactive.pm_.c:238 ../../standalone/mousedrake_.c:31
msgid "Please, choose the type of your mouse."
msgstr "Lütfćn siçanýnýzýn növünü seçin."
-#: ../../install_steps_interactive.pm_.c:251 ../../standalone/mousedrake_.c:40
+#: ../../install_steps_interactive.pm_.c:244 ../../standalone/mousedrake_.c:46
msgid "Mouse Port"
msgstr "Siçan Qapýsý"
-#: ../../install_steps_interactive.pm_.c:252
+#: ../../install_steps_interactive.pm_.c:245 ../../standalone/mousedrake_.c:47
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Siçanýnýzýn bađlý olduđu serial Qapýyý seçin."
-#: ../../install_steps_interactive.pm_.c:271
+#: ../../install_steps_interactive.pm_.c:253
+msgid "Buttons emulation"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:255
+msgid "Button 2 Emulation"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:256
+msgid "Button 3 Emulation"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:275
msgid "Configuring PCMCIA cards..."
msgstr "PCMCIA kartlar qurulur..."
-#: ../../install_steps_interactive.pm_.c:271
+#: ../../install_steps_interactive.pm_.c:275
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:275
+#: ../../install_steps_interactive.pm_.c:280
msgid "Configuring IDE"
msgstr "IDE qapýlarý qurulur"
-#: ../../install_steps_interactive.pm_.c:275
+#: ../../install_steps_interactive.pm_.c:280
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:288
+#: ../../install_steps_interactive.pm_.c:295
msgid "no available partitions"
msgstr "uyđun disk tapýlmadý"
-#: ../../install_steps_interactive.pm_.c:291
+#: ../../install_steps_interactive.pm_.c:298
msgid "Scanning partitions to find mount points"
msgstr "Bađlama nöqtćlćri üçün bölmćlćr daranýr"
-#: ../../install_steps_interactive.pm_.c:299
+#: ../../install_steps_interactive.pm_.c:306
msgid "Choose the mount points"
msgstr "Bađlama nöqtćlćrini seçin"
-#: ../../install_steps_interactive.pm_.c:316
+#: ../../install_steps_interactive.pm_.c:323
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -4230,16 +4840,16 @@ msgid ""
"\n"
"Do you agree to loose all the partitions?\n"
msgstr ""
-"Bölmć cćvćlinizi oxuya bilmirćm, dćyćsćn biraz xarab olub:-(\n"
+"Bölmć cćdvćlinizi oxuya bilmirćm, dćyćsćn biraz xarab olub:-(\n"
"Xarab olmuţ bolmćlćri düzćltćyć çalýţacam.\n"
-"Amma bütün bilgilćr itvcćkdir.\n"
-"Baţqa bir tol isć DrakXin bölmć cćdvćllćrini yoxlamasýný "
+"Amma bütün mć'lumatlar itvcćkdir.\n"
+"Baţqa bir yol isć DrakXin bölmć cćdvćllćrini yoxlamasýný "
"passivlćţdirmćkdir.\n"
"(xćta %s)\n"
"\n"
"Bütün bölmćlćri itirmćk istćyirsinizmi?\n"
-#: ../../install_steps_interactive.pm_.c:329
+#: ../../install_steps_interactive.pm_.c:336
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4247,88 +4857,80 @@ msgstr ""
"DiskDrake bölmć cćdvćlini oxumađý bacara bilmći.\n"
"Özünüz davam edć bilćrsiniz."
-#: ../../install_steps_interactive.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:361
msgid "Root Partition"
msgstr "Kök (root) Bölmćsi"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:362
msgid "What is the root partition (/) of your system?"
msgstr "Sisteminizin kök (/) bölmćsi hansýdýr?"
-#: ../../install_steps_interactive.pm_.c:352
+#: ../../install_steps_interactive.pm_.c:376
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
-"Bölmć cćvćlindćki dćyiţikliklćrin daxil olmasý üçün bilgisayarýnýzý tćzćdćn "
+"Bölmć cćvćlindćki dćyiţikliklćrin daxil olmasý üçün kompüterinizi yenidćn "
"baţlatmalýsýnýz."
-#: ../../install_steps_interactive.pm_.c:376
+#: ../../install_steps_interactive.pm_.c:403
msgid "Choose the partitions you want to format"
msgstr "Ţćkillćndirilćcćk disk bölmćlćrini seçin"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:404
msgid "Check bad blocks?"
-msgstr "Xćtalý bloklar sýnansýn mý?"
+msgstr "Xćtalý bloklar sýnansýnmý?"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:427
msgid "Formatting partitions"
msgstr "Bölmćlćr ţćkillćndirilir"
-#: ../../install_steps_interactive.pm_.c:401
+#: ../../install_steps_interactive.pm_.c:429
#, c-format
msgid "Creating and formatting file %s"
-msgstr "%s dosyesi yaradýlýr vć ţćkillćndirilir"
+msgstr "%s faylý yaradýlýr vć ţćkillćndirilir"
-#: ../../install_steps_interactive.pm_.c:404
+#: ../../install_steps_interactive.pm_.c:432
msgid "Not enough swap to fulfill installation, please add some"
msgstr "Qurulumu bitirmćk üçün lazými sahć yoxdur, lütfćn ćlavć edin"
-#: ../../install_steps_interactive.pm_.c:410
+#: ../../install_steps_interactive.pm_.c:438
msgid "Looking for available packages"
msgstr "Mövcud olan paketlćr axtarýlýr."
-#: ../../install_steps_interactive.pm_.c:416
+#: ../../install_steps_interactive.pm_.c:444
msgid "Finding packages to upgrade"
-msgstr "Güncallćnćcćk paketlar tapýlýr"
+msgstr "Güncćllćnćcćk paketlar tapýlýr"
-#: ../../install_steps_interactive.pm_.c:433
+#: ../../install_steps_interactive.pm_.c:461
#, c-format
msgid ""
"Your system has not enough space left for installation or upgrade (%d > %d)"
msgstr ""
"Sisteminizdć qurulum ya da güncćllćmć üçün lazými boţ yer yoxdur(%d > %d)"
-#: ../../install_steps_interactive.pm_.c:449
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid "Complete (%dMB)"
msgstr "Hamýsý (%dMB)"
-#: ../../install_steps_interactive.pm_.c:449
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid "Minimum (%dMB)"
msgstr "Ćn az (%dMB)"
-#: ../../install_steps_interactive.pm_.c:449
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid "Recommended (%dMB)"
msgstr "Tövsiyć edilćn (%dMB)"
-#: ../../install_steps_interactive.pm_.c:455
+#: ../../install_steps_interactive.pm_.c:486
msgid "Custom"
msgstr "Xüsusi"
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Select the size you want to install"
-msgstr "Qurmaq istćdiyiniz paketlćrin böyüklüyünü seçin"
-
-#: ../../install_steps_interactive.pm_.c:508
-msgid "Package Group Selection"
-msgstr "Paket Qrup Seçkisi"
-
-#: ../../install_steps_interactive.pm_.c:521
-msgid "Individual package selection"
-msgstr "Tćk tćk paket seçkisi"
+#: ../../install_steps_interactive.pm_.c:585
+msgid "Selected size is larger than available space"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:570
+#: ../../install_steps_interactive.pm_.c:650
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4338,12 +4940,12 @@ msgstr ""
"CD'lćrin heç birinć sahib deyilsćniz ÝMTÝNA ET'ć basýn.\n"
"CD'lardćn bćzilći ćksik isć onlarý seçili vćziyyćtdćn çýxardýb OLDU'ya basýn."
-#: ../../install_steps_interactive.pm_.c:575
+#: ../../install_steps_interactive.pm_.c:655
#, c-format
msgid "Cd-Rom labeled \"%s\""
-msgstr "\"%s\" adlýCd-Rom"
+msgstr "\"%s\" adlý Cd-Rom"
-#: ../../install_steps_interactive.pm_.c:603
+#: ../../install_steps_interactive.pm_.c:684
msgid ""
"Installing package %s\n"
"%d%%"
@@ -4351,11 +4953,11 @@ msgstr ""
"%s paketi qurulur\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:612
+#: ../../install_steps_interactive.pm_.c:693
msgid "Post-install configuration"
msgstr "Qurulum sonrasý qurđular"
-#: ../../install_steps_interactive.pm_.c:637
+#: ../../install_steps_interactive.pm_.c:718
msgid ""
"You have now the possibility to download software aimed for encryption.\n"
"\n"
@@ -4393,10 +4995,10 @@ msgid ""
"Altadena California 91001\n"
"USA"
msgstr ""
-"Ýndi ţifrlamć üçün istifadć edilćcćk yazýlýmý endirć bilćrsiniz.\n"
+"Ýndi ţifrlćmć üçün istifadć edilćcćk yazýlýmý endirć bilćrsiniz.\n"
"DÝQQĆT:\n"
"\n"
-"Bu yazýlýma bćzi fćrqli ümumi ehtiuaclardan vć müftćlif\n"
+"Bu yazýlýma bćzi fćrqli ümumi ehtiyaclardan vć müxtćlif\n"
"mühakćmć haqlarýndan ötrü, bu yazýlýmýn son istifadćcisi, qanunlarýn ona bu\n"
"yazýlýmý internetdćn endirmć vć saxlama haqqýný verdiyindćn ćmin olmalýdýr.\n"
"\n"
@@ -4407,7 +5009,7 @@ msgstr ""
"mć'ruz qalacaqdýr.\n"
"\n"
"Xüsusi ya da dolaylý zćrćrlćrć (gćlir azalmasý, iţin pozulmasý, ticari "
-"bilgi\n"
+"mć'lumat\n"
"itkisi vć digćr maddi itkilćr) yol açan heç bir hadisćdć nć Mandrakesoft, nć "
"da \n"
"istehsalatcýlarý vć/va ya qaynaq verisilćri mćs'ul tutulmazlar. Bu yazýlýmý\n"
@@ -4422,145 +5024,93 @@ msgstr ""
"USA\n"
"ünvanýna yazýnýz."
-#: ../../install_steps_interactive.pm_.c:669
+#: ../../install_steps_interactive.pm_.c:750
msgid "Choose a mirror from which to get the packages"
-msgstr "Paketleri almaq üçün bir ayna ünvaný seçin"
+msgstr "Paketleri almaq üçün bir ćks ünvaný seçin"
-#: ../../install_steps_interactive.pm_.c:680
+#: ../../install_steps_interactive.pm_.c:761
msgid "Contacting the mirror to get the list of available packages"
-msgstr "Ayna ünvanýna bađlantý qurulur"
+msgstr "Ćks ünvanýna bađlantý qurulur"
-#: ../../install_steps_interactive.pm_.c:683
+#: ../../install_steps_interactive.pm_.c:764
msgid "Please choose the packages you want to install."
-msgstr "Lütfan qurmaq istćdiyiniz paketlćri seçin."
+msgstr "Lütfćn qurmaq istćdiyiniz paketlćri seçin."
-#: ../../install_steps_interactive.pm_.c:695
+#: ../../install_steps_interactive.pm_.c:776
msgid "Which is your timezone?"
msgstr "Sisteminiz hansý mćqsćdlć istifadć edilćcćk?"
-#: ../../install_steps_interactive.pm_.c:697
+#: ../../install_steps_interactive.pm_.c:778
msgid "Is your hardware clock set to GMT?"
msgstr "Avadanlýq saatýnýz GMT'yć göra quruludur mu?"
-#: ../../install_steps_interactive.pm_.c:735
-msgid "Which printing system do you want to use?"
-msgstr "Hansý yazýcý sistemini istifadć etmćk istćyirsiniz?"
+#: ../../install_steps_interactive.pm_.c:806 ../../printer.pm_.c:22
+#: ../../printerdrake.pm_.c:415
+msgid "Remote CUPS server"
+msgstr "Uzaq CUPS vericisi"
-#: ../../install_steps_interactive.pm_.c:762
-msgid "No password"
-msgstr "Parol yoxdur"
+#: ../../install_steps_interactive.pm_.c:807
+msgid "No printer"
+msgstr "Çap Edicisiz"
-#: ../../install_steps_interactive.pm_.c:767
-msgid "Use shadow file"
-msgstr "Kölga parol istifadć et"
+#: ../../install_steps_interactive.pm_.c:821
+msgid "Mouse"
+msgstr "Siçan"
-#: ../../install_steps_interactive.pm_.c:767
-msgid "shadow"
-msgstr "kölgć parol"
+#: ../../install_steps_interactive.pm_.c:823
+msgid "Timezone"
+msgstr "Vaxt Dilimi"
-#: ../../install_steps_interactive.pm_.c:768
-msgid "MD5"
-msgstr "MD5"
+#: ../../install_steps_interactive.pm_.c:824 ../../printerdrake.pm_.c:344
+msgid "Printer"
+msgstr "Çap Edici"
-#: ../../install_steps_interactive.pm_.c:768
-msgid "Use MD5 passwords"
-msgstr "MD5 ţifrlama istifadć et"
+#: ../../install_steps_interactive.pm_.c:826
+msgid "ISDN card"
+msgstr "ISDN kartý"
-#: ../../install_steps_interactive.pm_.c:770
-msgid "Use NIS"
-msgstr "NIS istifadć et"
+#: ../../install_steps_interactive.pm_.c:829
+msgid "Sound card"
+msgstr "Sćs kartý"
-#: ../../install_steps_interactive.pm_.c:770
-msgid "yellow pages"
-msgstr "sarý sćhifćlćr"
+#: ../../install_steps_interactive.pm_.c:832
+msgid "TV card"
+msgstr "TV kartý"
-#: ../../install_steps_interactive.pm_.c:776
+#: ../../install_steps_interactive.pm_.c:862
+msgid "Which printing system do you want to use?"
+msgstr "Hansý çap edici sistemini istifadć etmćk istćyirsiniz?"
+
+#: ../../install_steps_interactive.pm_.c:896
+msgid "No password"
+msgstr "Parolsuz"
+
+#: ../../install_steps_interactive.pm_.c:901
#, c-format
msgid "This password is too simple (must be at least %d characters long)"
msgstr "Bu parol çox sadćdir (en az %d xarakter boyunda olmalýdýr)"
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:907
+msgid "Use NIS"
+msgstr "NIS istifadć et"
+
+#: ../../install_steps_interactive.pm_.c:907
+msgid "yellow pages"
+msgstr "sarý sćhifćlćr"
+
+#: ../../install_steps_interactive.pm_.c:912
msgid "Authentification NIS"
msgstr "NIS"
-#: ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_interactive.pm_.c:913
msgid "NIS Domain"
msgstr "NIS sahćsi"
-#: ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_interactive.pm_.c:914
msgid "NIS Server"
msgstr "NIS Verici"
-#: ../../install_steps_interactive.pm_.c:809
-#: ../../standalone/adduserdrake_.c:36
-msgid "Accept user"
-msgstr "Ýstifadćciyi qćbul et"
-
-#: ../../install_steps_interactive.pm_.c:809
-#: ../../standalone/adduserdrake_.c:36
-msgid "Add user"
-msgstr "Ýstifadćciyi ćlavć et"
-
-#: ../../install_steps_interactive.pm_.c:810
-#: ../../standalone/adduserdrake_.c:37
-#, c-format
-msgid "(already added %s)"
-msgstr "(%s artýq ćlavć edilmiţdir)"
-
-#: ../../install_steps_interactive.pm_.c:810
-#: ../../standalone/adduserdrake_.c:37
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Bir istifadćci girin\n"
-"%s"
-
-#: ../../install_steps_interactive.pm_.c:812
-#: ../../standalone/adduserdrake_.c:39
-msgid "Real name"
-msgstr "Hćqiqi adý"
-
-#: ../../install_steps_interactive.pm_.c:813 ../../printerdrake.pm_.c:93
-#: ../../printerdrake.pm_.c:127 ../../standalone/adduserdrake_.c:40
-msgid "User name"
-msgstr "Ýstifadći adý"
-
-#: ../../install_steps_interactive.pm_.c:818
-#: ../../standalone/adduserdrake_.c:45
-msgid "Shell"
-msgstr "Qabýq"
-
-#: ../../install_steps_interactive.pm_.c:820
-#: ../../standalone/adduserdrake_.c:47
-msgid "Icon"
-msgstr "Tćmsil"
-
-#: ../../install_steps_interactive.pm_.c:830
-#: ../../standalone/adduserdrake_.c:57
-msgid "This password is too simple"
-msgstr "Zćif parol seçdiniz!"
-
-#: ../../install_steps_interactive.pm_.c:831
-#: ../../standalone/adduserdrake_.c:58
-msgid "Please give a user name"
-msgstr "Lütfćn bir istifadćci adý alýn"
-
-#: ../../install_steps_interactive.pm_.c:832
-#: ../../standalone/adduserdrake_.c:59
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr ""
-"Ýstifadći adýnda sadacć kiçik harflćr, rćqćmlćr, `-' vć `_' xarakterlćri ola "
-"bilćr"
-
-#: ../../install_steps_interactive.pm_.c:833
-#: ../../standalone/adduserdrake_.c:60
-msgid "This user name is already added"
-msgstr "Bu istifadćçi adý artýq vardýr"
-
-#: ../../install_steps_interactive.pm_.c:857
+#: ../../install_steps_interactive.pm_.c:948
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 "
@@ -4586,24 +5136,24 @@ msgstr ""
"bu disket sizć kömćkçi olacaqdýr. Sonradan Mandrake qurtarma disketi "
"rćsmini\n"
"istifadć edćrćk dć bu disket yaradýla bilćr.\n"
-"Açýlýţ disketi yaratmaq istćyirsiniz mi?\n"
-"Açýlýţ disketi yaratmaq istćyirsinizsć, birinci disket sürücüyćdisklet "
+"Açýlýţ disketi yaratmaq istćyirsinizmi?\n"
+"Açýlýţ disketi yaratmaq istćyirsinizsć, birinci disket sürücüyć disket "
"yerlćţdirin\n"
"vć \"OLDU\" basýn."
-#: ../../install_steps_interactive.pm_.c:873
+#: ../../install_steps_interactive.pm_.c:964
msgid "First floppy drive"
msgstr "Ýlk disket sürücü"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:965
msgid "Second floppy drive"
msgstr "Ýkinci disket sürücü"
-#: ../../install_steps_interactive.pm_.c:875
+#: ../../install_steps_interactive.pm_.c:966
msgid "Skip"
-msgstr "Keç"
+msgstr "Nćzćrć Alma"
-#: ../../install_steps_interactive.pm_.c:880
+#: ../../install_steps_interactive.pm_.c:971
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 "
@@ -4625,167 +5175,108 @@ msgstr ""
"bu disket sizć kömćkçi olacaqdýr. Sonradan Mandrake qurtarma disketi "
"rćsmini\n"
"istifadć edćrćk dć bu disket yaradýla bilćr.\n"
-"Açýlýţ disketi yaratmaq istćyirsiniz mi?\n"
+"Açýlýţ disketi yaratmaq istćyirsinizmi?\n"
"Açýlýţ disketi yaratmaq istćyirsinizsć, birinci disket sürücüyćdisklet "
"yerlćţdirin\n"
"vć \"OLDU\" basýn."
-#: ../../install_steps_interactive.pm_.c:889
+#: ../../install_steps_interactive.pm_.c:980
msgid "Sorry, no floppy drive available"
-msgstr "Disket sürücü yoxdur"
+msgstr "Bađýţlayýn, disket sürücü yoxdur"
-#: ../../install_steps_interactive.pm_.c:892
+#: ../../install_steps_interactive.pm_.c:984
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Açýlýţ disketi yaratmaq üçün istifadć edilćcćk disket sürücüyü seçin"
-#: ../../install_steps_interactive.pm_.c:898
+#: ../../install_steps_interactive.pm_.c:988
#, c-format
msgid "Insert a floppy in drive %s"
-msgstr "%s sürücüsüna bir disket taxýn"
+msgstr "%s sürücüsünć bir disket taxýn"
-#: ../../install_steps_interactive.pm_.c:901
+#: ../../install_steps_interactive.pm_.c:991
msgid "Creating bootdisk"
msgstr "Açýlýţ disketi yaradýlýr"
-#: ../../install_steps_interactive.pm_.c:908
+#: ../../install_steps_interactive.pm_.c:998
msgid "Preparing bootloader"
-msgstr "Açýlýţ yüklayici hazýrlanýr"
+msgstr "Açýlýţ yükla,yici hazýrlanýr"
-#: ../../install_steps_interactive.pm_.c:917
+#: ../../install_steps_interactive.pm_.c:1007
msgid "Do you want to use aboot?"
-msgstr "aboot istifadć etmćk istćyirsiniz mi?"
+msgstr "aboot istifadć etmćk istćyirsinizmi?"
-#: ../../install_steps_interactive.pm_.c:920
+#: ../../install_steps_interactive.pm_.c:1010
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
"aboot qurulumunda xata, \n"
-"ilk disk bölmasini yox etsa belć yenć dć qurulmasýný istćyirsiniz mi?"
+"ilk disk bölmćsini yox etsć belć yenć dć qurulmasýný istćyirsinizmi?"
-#: ../../install_steps_interactive.pm_.c:929
+#: ../../install_steps_interactive.pm_.c:1019
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Açýlýţ yüklćyicisi qurulumu iflas etdi. Xćta:"
-#: ../../install_steps_interactive.pm_.c:943 ../../standalone/draksec_.c:20
-msgid "Welcome To Crackers"
-msgstr "Crackerlćrć xoţgćlmiţsiniz"
-
-#: ../../install_steps_interactive.pm_.c:944 ../../standalone/draksec_.c:21
-msgid "Poor"
-msgstr "Zćif"
+#: ../../install_steps_interactive.pm_.c:1027
+msgid ""
+"You may need to change your Open Firmware boot-device to\n"
+" enable the bootloader. If you don't see the bootloader prompt at\n"
+" reboot, hold down Command-Option-O-F at reboot and enter:\n"
+" setenv boot-device $of_boot,\\\\tbxi\n"
+" Then type: shut-down\n"
+"At your next boot you should see the bootloader prompt."
+msgstr ""
+"Siz \"Open FÝrmware\" açýlýţ avadanlýđýnýzý açýlýţ yüklćyicisini\n"
+" fćallaţdýrmaq üçün dćyiţdirmćli ola bilćrsiniz. Ćmr-Seçćnćk-O-F "
+"düymćlćrini\n"
+" yenidćn baţlarkćn basýn vć bunlarý girin:\n"
+" setenv boot-device $of_boot,\\\\tbxi\n"
+" Sonra da bunlarý yazýn: shut-down\n"
+"Bir sonraký baţlanđýcda açýlýţ yüklćyicisi sćtirini görmćlisiniz."
-#: ../../install_steps_interactive.pm_.c:945 ../../standalone/draksec_.c:22
+#: ../../install_steps_interactive.pm_.c:1035 ../../standalone/draksec_.c:23
msgid "Low"
msgstr "Alçaq"
-#: ../../install_steps_interactive.pm_.c:946 ../../standalone/draksec_.c:23
+#: ../../install_steps_interactive.pm_.c:1036 ../../standalone/draksec_.c:24
msgid "Medium"
msgstr "Orta"
-#: ../../install_steps_interactive.pm_.c:947 ../../standalone/draksec_.c:24
+#: ../../install_steps_interactive.pm_.c:1037 ../../standalone/draksec_.c:25
msgid "High"
msgstr "Yüksćk"
-#: ../../install_steps_interactive.pm_.c:948 ../../standalone/draksec_.c:25
-msgid "Paranoid"
-msgstr "Sübhćci"
-
-#: ../../install_steps_interactive.pm_.c:962
-msgid "Miscellaneous questions"
-msgstr "Müxtćlif suallar"
-
-#: ../../install_steps_interactive.pm_.c:963
-msgid "(may cause data corruption)"
-msgstr "(veri itkisinć sćbćb ola bilćr)"
-
-#: ../../install_steps_interactive.pm_.c:963
-msgid "Use hard drive optimisations?"
-msgstr "Sabit disk optimizassyasý istifadć edilsin mi?"
-
-#: ../../install_steps_interactive.pm_.c:964 ../../standalone/draksec_.c:46
+#: ../../install_steps_interactive.pm_.c:1041 ../../standalone/draksec_.c:49
msgid "Choose security level"
-msgstr "Mühafizć sćviyyćsini seçin"
-
-#: ../../install_steps_interactive.pm_.c:965
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Ümumi hafizć miqdarý (%d MB tapýldý)"
-
-#: ../../install_steps_interactive.pm_.c:967
-msgid "Removable media automounting"
-msgstr "Taxýlýb sökülć bilćn avadanlýqţlarýn avtomatik bađlanmasý"
-
-#: ../../install_steps_interactive.pm_.c:969
-msgid "Clean /tmp at each boot"
-msgstr "/tmp'yi hćr açýlýţda tamizlć"
-
-#: ../../install_steps_interactive.pm_.c:972
-msgid "Enable multi profiles"
-msgstr "Birdćn artýq profilć icazć ver"
-
-#: ../../install_steps_interactive.pm_.c:974
-msgid "Enable num lock at startup"
-msgstr "Açýlýţda Num Lock iţýđýný yandýr"
-
-#: ../../install_steps_interactive.pm_.c:977
-msgid "Give the ram size in MB"
-msgstr "Hafizć miqdarýný Mb cinsindćn veriniz"
-
-#: ../../install_steps_interactive.pm_.c:979
-msgid "Can't use supermount in high security level"
-msgstr "Yüksak mühafizć sćviyyćsindć supermount istifadć edilć bilmćz"
-
-#: ../../install_steps_interactive.pm_.c:981
-msgid ""
-"beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
-"If you want to be root, you have to login as a user and then use \"su\".\n"
-"More generally, do not expect to use your machine for anything but as a "
-"server.\n"
-"You have been warned."
-msgstr ""
-"BU SĆVÝYYĆDĆ \n"
-"SÝSTEMĆ KONSOLDAN ROOT OLARAQ GÝRMĆYÝNÝZE ÝCAZĆ YOXDUR: Sýravi bir "
-"istifadćçi \n"
-"olarak girib, sonra \"su\" ćmri ilć root ola bilćrsiniz. Ümumiyyćtlć \n"
-"siteminizi verici olaraq istifadć xaricindć baţqqa bir sahćdć istifadćyi \n"
-"düţünmćyin. Mćn sizi xćbćrdar etdim."
-
-#: ../../install_steps_interactive.pm_.c:986
-msgid ""
-"Be carefull, having numlock enabled causes a lot of keystrokes to\n"
-"give digits instead of normal letters (eg: pressing `p' gives `6')"
-msgstr ""
-"Ehtiyatlý olun, numlock iţýđýnýn yanmasýný seçmćk bir çox düymćnin\n"
-"hćrf yerinć rćqćm yazmasýna sćbćb olar('p'yć basarsanýz '6' çýxa bilćr)"
+msgstr "Tćhlükćsizlik sćviyyćsini seçin"
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1074
msgid "Do you want to generate an auto install floppy for linux replication?"
msgstr ""
"Linux köçürülmćsi üçün bir dćnć avtomatik qurulum disketi yaratmaq "
"istćyćrmisiniz?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1076
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "%s sürücüsünć boţ bir disket yerlaţdirin"
-#: ../../install_steps_interactive.pm_.c:1049
-#: ../../install_steps_interactive.pm_.c:1079
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1122
msgid "Creating auto install floppy"
-msgstr "Avtomatik kurulum disketi hazýrlanýr"
+msgstr "Avtomatik qurulum disketi hazýrlanýr"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1150
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
-"Bćzi bölmćlćr bitdi.\n"
+"Bć'zi bölmćlćr bitdi.\n"
"\n"
-"Hćqiqćtćn dć çýxmaq istćyirsiniz mi?"
+"Hćqiqćtćn dć çýxmaq istćyirsinizmi?"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -4798,12 +5289,43 @@ msgid ""
"install chapter of the Official Linux-Mandrake User's Guide."
msgstr ""
"Tćbriklćr, quruluţ bitdi.\n"
-"Cdrom vć disketi çýxartdýqtan sonra Enter'ć basaraq bilgisayarýnýzý \n"
+"Cdrom vć disketi çýxartdýqtan sonra Enter'ć basaraq kompüterinizi \n"
"yenidćn baţladýn. Linux Mandrake'nin bu buraxýlýţýndaký yamaqlar haqqýnda \n"
-"bilgi almaq üçün http://www.linux-mandrake.com ünvanýndan Errata'ya baxýn.\n"
+"mć'lumat almaq üçün http://www.linux-mandrake.com ünvanýndan Errata'ya "
+"baxýn.\n"
"Sisteminizin qurđularý haqqýnda daha geniţ bilgiyi Linux Mandrake \n"
"Ýstifadćci Kitabcýđýnda tapa bilćrsiniz."
+#: ../../install_steps_interactive.pm_.c:1173
+msgid "Generate auto install floppy"
+msgstr "Avtomatik qurulum disketi hazýrlanýr"
+
+#: ../../install_steps_interactive.pm_.c:1175
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Avtomatik qurulum disketi hazýrlanmasý seçilćrsć,\n"
+"bütün sabit disk mć'lumatý daxil edilćcćkdir!!\n"
+"(yć'nibaţqa sistemi dć qura bilmćk üçün).\n"
+"\n"
+"Bu qurulumu takrar etmćk istćyć bilćrsiniz axý.\n"
+
+#: ../../install_steps_interactive.pm_.c:1180
+msgid "Automated"
+msgstr "Avtomatlaţdýrýlmýţ"
+
+#: ../../install_steps_interactive.pm_.c:1180
+msgid "Replay"
+msgstr "Tćkrarla"
+
+#: ../../install_steps_interactive.pm_.c:1183
+msgid "Save packages selection"
+msgstr "Paket seçkilćrini saxla"
+
#: ../../install_steps_newt.pm_.c:22
#, c-format
msgid "Linux-Mandrake Installation %s"
@@ -4813,11 +5335,19 @@ msgstr "Linux-Mandrake Qurulumu %s"
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
-" <Tab>/<Alt-Tab> irćli/geri | <Boţluq> iţaratla | <F12> sonraký ekran"
+" <Tab>/<Alt-Tab> irćli/geri | <Boţluq> iţarćtlć | <F12> sonraký ekran"
+
+#: ../../interactive.pm_.c:65
+msgid "kdesu missing"
+msgstr "kdesu ćksikdir"
+
+#: ../../interactive.pm_.c:263
+msgid "Advanced"
+msgstr "Ćtraflý"
-#: ../../interactive.pm_.c:273
+#: ../../interactive.pm_.c:286
msgid "Please wait"
-msgstr "Lütfan gözlćyin"
+msgstr "Lütfćn gözlćyin"
#: ../../interactive_stdio.pm_.c:35
#, c-format
@@ -4844,257 +5374,269 @@ msgstr "Seçkiniz? (ćsas %s) "
msgid "Your choice? (default %s enter `none' for none) "
msgstr "Seçkiniz (ćsas %s, yoxsa `none' yazýn) "
-#: ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:135
+#: ../../keyboard.pm_.c:124 ../../keyboard.pm_.c:154
msgid "Czech (QWERTZ)"
msgstr "Çex dili (QWERTZ)"
-#: ../../keyboard.pm_.c:106 ../../keyboard.pm_.c:119 ../../keyboard.pm_.c:138
+#: ../../keyboard.pm_.c:125 ../../keyboard.pm_.c:138 ../../keyboard.pm_.c:157
msgid "German"
msgstr "Almanca"
-#: ../../keyboard.pm_.c:107
+#: ../../keyboard.pm_.c:126
msgid "Dvorak"
-msgstr "Dvorak dili"
+msgstr "Dvorak"
-#: ../../keyboard.pm_.c:108 ../../keyboard.pm_.c:144
+#: ../../keyboard.pm_.c:127 ../../keyboard.pm_.c:163
msgid "Spanish"
msgstr "Ýspanca"
-#: ../../keyboard.pm_.c:109 ../../keyboard.pm_.c:145
+#: ../../keyboard.pm_.c:128 ../../keyboard.pm_.c:164
msgid "Finnish"
msgstr "Fincć"
-#: ../../keyboard.pm_.c:110 ../../keyboard.pm_.c:120 ../../keyboard.pm_.c:146
+#: ../../keyboard.pm_.c:129 ../../keyboard.pm_.c:139 ../../keyboard.pm_.c:165
msgid "French"
msgstr "Fransýzca"
-#: ../../keyboard.pm_.c:111 ../../keyboard.pm_.c:166
+#: ../../keyboard.pm_.c:130 ../../keyboard.pm_.c:186
msgid "Norwegian"
msgstr "Norveçcć"
-#: ../../keyboard.pm_.c:112
+#: ../../keyboard.pm_.c:131
msgid "Polish"
msgstr "Polyakca"
-#: ../../keyboard.pm_.c:113 ../../keyboard.pm_.c:171
+#: ../../keyboard.pm_.c:132 ../../keyboard.pm_.c:191
msgid "Russian"
msgstr "Rusca"
-#: ../../keyboard.pm_.c:114 ../../keyboard.pm_.c:182
+#: ../../keyboard.pm_.c:133 ../../keyboard.pm_.c:202
msgid "UK keyboard"
msgstr "Ýngiliz (UK) klaviaturasý"
-#: ../../keyboard.pm_.c:115 ../../keyboard.pm_.c:118 ../../keyboard.pm_.c:183
+#: ../../keyboard.pm_.c:134 ../../keyboard.pm_.c:137 ../../keyboard.pm_.c:203
msgid "US keyboard"
msgstr "Amerikan (US) klaviaturasý"
-#: ../../keyboard.pm_.c:122
+#: ../../keyboard.pm_.c:141
msgid "Armenian (old)"
msgstr "Ermenicć (köhnć) "
-#: ../../keyboard.pm_.c:123
+#: ../../keyboard.pm_.c:142
msgid "Armenian (typewriter)"
msgstr "Ermenicć (yazý maţýný)"
-#: ../../keyboard.pm_.c:124
+#: ../../keyboard.pm_.c:143
msgid "Armenian (phonetic)"
msgstr "Ermenicć (fonetik)"
-#: ../../keyboard.pm_.c:127
+#: ../../keyboard.pm_.c:146
msgid "Azerbaidjani (latin)"
msgstr "Azćrbaycanca (latýn)"
-#: ../../keyboard.pm_.c:128
+#: ../../keyboard.pm_.c:147
msgid "Azerbaidjani (cyrillic)"
msgstr "Azćrbaycanca (kiril)"
-#: ../../keyboard.pm_.c:129
+#: ../../keyboard.pm_.c:148
msgid "Belgian"
msgstr "Belçika dili"
-#: ../../keyboard.pm_.c:130
+#: ../../keyboard.pm_.c:149
msgid "Bulgarian"
msgstr "Bulqarca"
-#: ../../keyboard.pm_.c:131
+#: ../../keyboard.pm_.c:150
msgid "Brazilian (ABNT-2)"
msgstr "Brazilya dili (ABNT-2)"
-#: ../../keyboard.pm_.c:132
+#: ../../keyboard.pm_.c:151
msgid "Belarusian"
msgstr "Belarusca"
-#: ../../keyboard.pm_.c:133
+#: ../../keyboard.pm_.c:152
msgid "Swiss (German layout)"
msgstr "Ýsveçcć (Alman sýrasý)"
-#: ../../keyboard.pm_.c:134
+#: ../../keyboard.pm_.c:153
msgid "Swiss (French layout)"
msgstr "Ýsveçcć (Fransýz sýrasý)"
-#: ../../keyboard.pm_.c:136
+#: ../../keyboard.pm_.c:155
msgid "Czech (QWERTY)"
msgstr "Çex dili (QWERTY)"
-#: ../../keyboard.pm_.c:137
+#: ../../keyboard.pm_.c:156
msgid "Czech (Programmers)"
msgstr "Çex dili (Proqramcýlar)"
-#: ../../keyboard.pm_.c:139
+#: ../../keyboard.pm_.c:158
msgid "German (no dead keys)"
-msgstr "Almanca (ölü düymalćr olmasýn)"
+msgstr "Almanca (ölü düymćlćr olmasýn)"
-#: ../../keyboard.pm_.c:140
+#: ../../keyboard.pm_.c:159
msgid "Danish"
msgstr "Danimarka dili"
-#: ../../keyboard.pm_.c:141
+#: ../../keyboard.pm_.c:160
msgid "Dvorak (US)"
-msgstr "Dvorak dili (US)"
+msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:142
+#: ../../keyboard.pm_.c:161
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norveçcć)"
-#: ../../keyboard.pm_.c:143
+#: ../../keyboard.pm_.c:162
msgid "Estonian"
msgstr "Estoniya dili"
-#: ../../keyboard.pm_.c:147
+#: ../../keyboard.pm_.c:166
msgid "Georgian (\"Russian\" layout)"
msgstr "Gürcü dili (\"Rus\" sýrasý)"
-#: ../../keyboard.pm_.c:148
+#: ../../keyboard.pm_.c:167
msgid "Georgian (\"Latin\" layout)"
msgstr "Gürcü dili (\"Latýn\" sýrasý)"
-#: ../../keyboard.pm_.c:149
+#: ../../keyboard.pm_.c:168
msgid "Greek"
msgstr "Yunanca"
-#: ../../keyboard.pm_.c:150
+#: ../../keyboard.pm_.c:169
msgid "Hungarian"
msgstr "Macarca"
-#: ../../keyboard.pm_.c:151
+#: ../../keyboard.pm_.c:170
msgid "Croatian"
msgstr "Xýrvatca"
-#: ../../keyboard.pm_.c:152
+#: ../../keyboard.pm_.c:171
msgid "Israeli"
msgstr "Ýbranicć"
-#: ../../keyboard.pm_.c:153
+#: ../../keyboard.pm_.c:172
msgid "Israeli (Phonetic)"
msgstr "Ýbranicć (Fonetik)"
-#: ../../keyboard.pm_.c:154
+#: ../../keyboard.pm_.c:173
msgid "Iranian"
msgstr "Farsca"
-#: ../../keyboard.pm_.c:155
+#: ../../keyboard.pm_.c:174
msgid "Icelandic"
msgstr "Ýzlandiya dili"
-#: ../../keyboard.pm_.c:156
+#: ../../keyboard.pm_.c:175
msgid "Italian"
msgstr "Ýtalyanca"
-#: ../../keyboard.pm_.c:157
+#: ../../keyboard.pm_.c:176
msgid "Japanese 106 keys"
msgstr "Yaponca 106 düymćli"
-#: ../../keyboard.pm_.c:158
+#: ../../keyboard.pm_.c:177
+msgid "Korean keyboard"
+msgstr "Koreya klaviaturasý"
+
+#: ../../keyboard.pm_.c:178
msgid "Latin American"
msgstr "Latýn Amerika dili"
-#: ../../keyboard.pm_.c:160
+#: ../../keyboard.pm_.c:179
+msgid "Macedonian"
+msgstr "Makedoniya dili"
+
+#: ../../keyboard.pm_.c:180
msgid "Dutch"
-msgstr "Hollanda dili"
+msgstr "Hollandiya dili"
-#: ../../keyboard.pm_.c:161
+#: ../../keyboard.pm_.c:181
msgid "Lithuanian AZERTY (old)"
msgstr "Litvaniya dili AZERTY (köhnć)"
-#: ../../keyboard.pm_.c:163
+#: ../../keyboard.pm_.c:183
msgid "Lithuanian AZERTY (new)"
-msgstr "Litvanya dili AZERTY (tćzć)"
+msgstr "Litvanya dili AZERTY (yeni)"
-#: ../../keyboard.pm_.c:164
+#: ../../keyboard.pm_.c:184
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litvanya dili \"number row\" QWERTY"
-#: ../../keyboard.pm_.c:165
+#: ../../keyboard.pm_.c:185
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litvanya dili \"Fonetik\" QWERTY"
-#: ../../keyboard.pm_.c:167
+#: ../../keyboard.pm_.c:187
msgid "Polish (qwerty layout)"
msgstr "Polyakca (QWERTY sýrasý)"
-#: ../../keyboard.pm_.c:168
+#: ../../keyboard.pm_.c:188
msgid "Polish (qwertz layout)"
msgstr "Polyakca (QWERTZ sýrasý)"
-#: ../../keyboard.pm_.c:169
+#: ../../keyboard.pm_.c:189
msgid "Portuguese"
msgstr "Portuqalca"
-#: ../../keyboard.pm_.c:170
+#: ../../keyboard.pm_.c:190
msgid "Canadian (Quebec)"
msgstr "Fransýzca (Kanada/Quebec)"
-#: ../../keyboard.pm_.c:172
+#: ../../keyboard.pm_.c:192
msgid "Russian (Yawerty)"
msgstr "Rusca (Yawerty)"
-#: ../../keyboard.pm_.c:173
+#: ../../keyboard.pm_.c:193
msgid "Swedish"
msgstr "Ýsveçcć"
-#: ../../keyboard.pm_.c:174
+#: ../../keyboard.pm_.c:194
msgid "Slovenian"
msgstr "Slovencć"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:195
msgid "Slovakian (QWERTZ)"
msgstr "Slovakca (QWERTZ)"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:196
msgid "Slovakian (QWERTY)"
msgstr "Slovakca (QWERTY)"
-#: ../../keyboard.pm_.c:177
+#: ../../keyboard.pm_.c:197
msgid "Slovakian (Programmers)"
msgstr "Slovakca (Proqramcýlar)"
-#: ../../keyboard.pm_.c:178
+#: ../../keyboard.pm_.c:198
msgid "Thai keyboard"
msgstr "Thai klaviatura"
-#: ../../keyboard.pm_.c:179
+#: ../../keyboard.pm_.c:199
msgid "Turkish (traditional \"F\" model)"
msgstr "Türkcć (ćnćnćvi \"F\" klaviatura)"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:200
msgid "Turkish (modern \"Q\" model)"
-msgstr "Türkçć (müasir \"Q\" klaviatura)"
+msgstr "Türkcć (müasir \"Q\" klaviatura)"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:201
msgid "Ukrainian"
msgstr "Ukrayna dili"
-#: ../../keyboard.pm_.c:184
+#: ../../keyboard.pm_.c:204
msgid "US keyboard (international)"
msgstr "Amerikan (US) klaviaturasý (beynćlmilćl)"
-#: ../../keyboard.pm_.c:185
+#: ../../keyboard.pm_.c:205
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vyetnam dili \"numeric row\" QWERTY"
-#: ../../keyboard.pm_.c:186
-msgid "Yugoslavian (latin layout)"
-msgstr "Yugoslavca (latýn sýrasý)"
+#: ../../keyboard.pm_.c:206
+msgid "Yugoslavian (latin/cyrillic)"
+msgstr "Yugoslavca (latýn/kiril)"
+
+#: ../../lvm.pm_.c:70
+msgid "Remove the logical volumes first\n"
+msgstr "Mćntiqi ciltlćri birinci olaraq sil\n"
#: ../../mouse.pm_.c:25
msgid "Sun - Mouse"
@@ -5116,11 +5658,11 @@ msgstr "Sýravi PS2 Çćrxli Siçan"
msgid "GlidePoint"
msgstr "GlidePoint"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:62
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:58
msgid "Genius NetMouse"
msgstr "Genius NetMouse"
@@ -5128,119 +5670,138 @@ msgstr "Genius NetMouse"
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:43
+#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:67
+msgid "1 button"
+msgstr "1 düymć"
+
+#: ../../mouse.pm_.c:44
msgid "Generic"
msgstr "Ümumi"
-#: ../../mouse.pm_.c:44
+#: ../../mouse.pm_.c:45
msgid "Wheel"
msgstr "Çćrx"
-#: ../../mouse.pm_.c:47
+#: ../../mouse.pm_.c:48
msgid "serial"
msgstr "serial"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:50
msgid "Generic 2 Button Mouse"
msgstr "Sýravi 2 Düymćli Siçan"
-#: ../../mouse.pm_.c:50
+#: ../../mouse.pm_.c:51
msgid "Generic 3 Button Mouse"
msgstr "Sýravi 3 Düymćli Siçan"
-#: ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:52
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:53
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:54
msgid "Mouse Systems"
msgstr "Mouse Systems"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:56
msgid "Logitech CC Series"
msgstr "Logitech CC Series"
-#: ../../mouse.pm_.c:56
+#: ../../mouse.pm_.c:57
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:59
msgid "MM Series"
msgstr "MM Series"
-#: ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:60
msgid "MM HitTablet"
msgstr "MM HitTablet"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:61
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Logitech mouse (serial ya da köhnć C7 növü)"
-#: ../../mouse.pm_.c:64
+#: ../../mouse.pm_.c:65
msgid "busmouse"
msgstr "busmouse"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
msgid "2 buttons"
msgstr "2 düymćli"
-#: ../../mouse.pm_.c:67
+#: ../../mouse.pm_.c:69
msgid "3 buttons"
msgstr "3 düymćli"
-#: ../../mouse.pm_.c:70
+#: ../../mouse.pm_.c:72
msgid "none"
msgstr "heç biri"
-#: ../../mouse.pm_.c:72
+#: ../../mouse.pm_.c:74
msgid "No mouse"
-msgstr "Siçan yoxdur"
+msgstr "Siçansýzs"
+
+#: ../../my_gtk.pm_.c:356
+msgid "Finish"
+msgstr "Qurtar"
-#: ../../my_gtk.pm_.c:243
+#: ../../my_gtk.pm_.c:356
msgid "Next ->"
msgstr "Sonraký ->"
-#: ../../my_gtk.pm_.c:486
+#: ../../my_gtk.pm_.c:357
+msgid "<- Previous"
+msgstr "<- Ćvvćlki"
+
+#: ../../my_gtk.pm_.c:616
msgid "Is this correct?"
-msgstr "Dođrudur mu?"
+msgstr "Dođrudur?"
-#: ../../netconnect.pm_.c:93 ../../netconnect_new.pm_.c:151
+#: ../../netconnect.pm_.c:141
msgid "Internet configuration"
msgstr "Ýnternet qurđularý"
-#: ../../netconnect.pm_.c:94 ../../netconnect_new.pm_.c:152
+#: ../../netconnect.pm_.c:142
msgid "Do you want to try to connect to the Internet now?"
-msgstr "Ýnternete giriţi indi sýnamaq istćyirsiniz mi?"
+msgstr "Ýnternete giriţi indi sýnamaq istćyirsinizmi?"
-#: ../../netconnect.pm_.c:101 ../../netconnect_new.pm_.c:159
+#: ../../netconnect.pm_.c:146
msgid "Testing your connection..."
msgstr "Bađlantýnýz sýnanýr..."
-#: ../../netconnect.pm_.c:106 ../../netconnect_new.pm_.c:164
+#: ../../netconnect.pm_.c:152 ../../standalone/draknet_.c:196
msgid "The system is now connected to Internet."
msgstr "Ýnternetć artýq bađlýsýnýz"
-#: ../../netconnect.pm_.c:107 ../../netconnect_new.pm_.c:165
+#: ../../netconnect.pm_.c:153
+msgid "For Security reason, it will be disconnected now."
+msgstr "Tćhlükćsizlik sćbći ilć indi bađlantý qopacaqdýr."
+
+#: ../../netconnect.pm_.c:154 ../../standalone/draknet_.c:196
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
msgstr ""
-"ÝSisteminiz Ýnternetć bađlý deyil.\n"
-"Bađlantýyý tćzćdćn quraţdýrýn"
+"Sisteminiz Ýnternetć bađlý deyil.\n"
+"Bađlantýyý yenidćn quraţdýrýn"
-#: ../../netconnect.pm_.c:141 ../../netconnect.pm_.c:213
-#: ../../netconnect.pm_.c:232 ../../netconnect.pm_.c:244
-#: ../../netconnect.pm_.c:256 ../../netconnect_new.pm_.c:226
-#: ../../netconnect_new.pm_.c:300 ../../netconnect_new.pm_.c:319
-#: ../../netconnect_new.pm_.c:331 ../../netconnect_new.pm_.c:343
+#: ../../netconnect.pm_.c:159 ../../netconnect.pm_.c:901
+#: ../../netconnect.pm_.c:930 ../../netconnect.pm_.c:1008
+msgid "Network Configuration"
+msgstr "Ţćbćkć quraţdýrýlmasý"
+
+#: ../../netconnect.pm_.c:220 ../../netconnect.pm_.c:264
+#: ../../netconnect.pm_.c:274 ../../netconnect.pm_.c:281
+#: ../../netconnect.pm_.c:291
msgid "ISDN Configuration"
msgstr "ISDN quraţdýrýlmasý"
-#: ../../netconnect.pm_.c:141 ../../netconnect_new.pm_.c:226
+#: ../../netconnect.pm_.c:220
msgid ""
"Select your provider.\n"
" If it's not in the list, choose Unlisted"
@@ -5248,115 +5809,107 @@ msgstr ""
"Ýnternet xidmćt vercinizi seçin.\n"
"Siyahýda deyilsć Siyahýda deyil'i seçin."
-#: ../../netconnect.pm_.c:158 ../../netconnect_new.pm_.c:245
+#: ../../netconnect.pm_.c:234
msgid "Connection Configuration"
msgstr "Bađlantý quraţdýrýlmasý"
-#: ../../netconnect.pm_.c:159 ../../netconnect_new.pm_.c:246
+#: ../../netconnect.pm_.c:235
msgid "Please fill or check the field below"
msgstr "Lütfćn aţađýdakýlarý doldurun ya da seçin"
-#: ../../netconnect.pm_.c:161 ../../netconnect_new.pm_.c:248
+#: ../../netconnect.pm_.c:237 ../../standalone/draknet_.c:550
msgid "Card IRQ"
msgstr "Kart IRQ"
-#: ../../netconnect.pm_.c:162 ../../netconnect_new.pm_.c:249
+#: ../../netconnect.pm_.c:238 ../../standalone/draknet_.c:551
msgid "Card mem (DMA)"
msgstr "Kart mem (DMA)"
-#: ../../netconnect.pm_.c:163 ../../netconnect_new.pm_.c:250
+#: ../../netconnect.pm_.c:239 ../../standalone/draknet_.c:552
msgid "Card IO"
msgstr "Kart IO"
-#: ../../netconnect.pm_.c:164 ../../netconnect_new.pm_.c:251
+#: ../../netconnect.pm_.c:240 ../../standalone/draknet_.c:553
msgid "Card IO_0"
msgstr "Kart IO_0"
-#: ../../netconnect.pm_.c:165 ../../netconnect_new.pm_.c:252
+#: ../../netconnect.pm_.c:241 ../../standalone/draknet_.c:554
msgid "Card IO_1"
msgstr "Kart IO_1"
-#: ../../netconnect.pm_.c:166 ../../netconnect_new.pm_.c:253
+#: ../../netconnect.pm_.c:242 ../../standalone/draknet_.c:555
msgid "Your personal phone number"
msgstr "Sizin ţćxsi telefon nömrćniz"
-#: ../../netconnect.pm_.c:168 ../../netconnect_new.pm_.c:255
+#: ../../netconnect.pm_.c:243 ../../standalone/draknet_.c:556
msgid "Provider name (ex provider.net)"
-msgstr "Ýnternet xidmć vercinizin adý (mćsćlćn artel.net)"
+msgstr "Ýnternet xidmćt vericinizin adý (mćsćlćn azeronline.com)"
-#: ../../netconnect.pm_.c:169 ../../netconnect_new.pm_.c:256
+#: ../../netconnect.pm_.c:244 ../../standalone/draknet_.c:557
msgid "Provider phone number"
msgstr "ÝXM telefon nömrćsi"
-#: ../../netconnect.pm_.c:170 ../../netconnect_new.pm_.c:257
+#: ../../netconnect.pm_.c:245
msgid "Provider dns 1"
msgstr "ÝXM dns 1"
-#: ../../netconnect.pm_.c:171 ../../netconnect_new.pm_.c:258
+#: ../../netconnect.pm_.c:246
msgid "Provider dns 2"
msgstr "ÝXM dns 2"
-#: ../../netconnect.pm_.c:172 ../../netconnect_new.pm_.c:259
+#: ../../netconnect.pm_.c:247 ../../standalone/draknet_.c:562
msgid "Dialing mode"
msgstr "Yýđma modu"
-#: ../../netconnect.pm_.c:174 ../../netconnect_new.pm_.c:261
+#: ../../netconnect.pm_.c:248 ../../standalone/draknet_.c:560
msgid "Account Login (user name)"
msgstr "Hesab Giriţi (istifadćci adý)"
-#: ../../netconnect.pm_.c:175 ../../netconnect_new.pm_.c:262
+#: ../../netconnect.pm_.c:249 ../../standalone/draknet_.c:561
msgid "Account Password"
msgstr "Hesap Parolu"
-#: ../../netconnect.pm_.c:176 ../../netconnect_new.pm_.c:263
-msgid "Confirm Password"
-msgstr "Parolu dođrula"
-
-#: ../../netconnect.pm_.c:208 ../../netconnect_new.pm_.c:295
+#: ../../netconnect.pm_.c:259
msgid "Europe"
msgstr "Avropa"
-#: ../../netconnect.pm_.c:208 ../../netconnect_new.pm_.c:295
+#: ../../netconnect.pm_.c:259
msgid "Europe (EDSS1)"
msgstr "Avropa (EDSS1)"
-#: ../../netconnect.pm_.c:210 ../../netconnect_new.pm_.c:297
+#: ../../netconnect.pm_.c:261
msgid "Rest of the world"
msgstr "Bütün dünya"
-#: ../../netconnect.pm_.c:210 ../../netconnect_new.pm_.c:297
-msgid "Rest of the world - no D-Channel (leased lines)"
-msgstr "Bütün dünya - D-Channel'lć xaric (kiralýq xćtlćr)"
+#: ../../netconnect.pm_.c:261
+msgid ""
+"Rest of the world \n"
+" no D-Channel (leased lines)"
+msgstr ""
+"Bütün dünya \n"
+" D-Channel'lć xaric (kiralýq xćtlćr)"
-#: ../../netconnect.pm_.c:214 ../../netconnect_new.pm_.c:301
+#: ../../netconnect.pm_.c:265
msgid "Which protocol do you want to use ?"
msgstr "Hansý prtokolu istifadć etmćk istćyirsiniz?"
-#: ../../netconnect.pm_.c:224 ../../netconnect_new.pm_.c:311
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../netconnect.pm_.c:226 ../../netconnect_new.pm_.c:313
-msgid "PCI"
-msgstr "PCI"
+#: ../../netconnect.pm_.c:275
+msgid "What kind of card do you have?"
+msgstr "Hansý növ kartýnýz var?"
-#: ../../netconnect.pm_.c:228 ../../netconnect_new.pm_.c:315
+#: ../../netconnect.pm_.c:276
msgid "I don't know"
msgstr "Bilmirćm"
-#: ../../netconnect.pm_.c:233 ../../netconnect_new.pm_.c:320
-msgid "What kind of card do you have?"
-msgstr "Hansý növ kartýnýz var?"
-
-#: ../../netconnect.pm_.c:239 ../../netconnect_new.pm_.c:326
-msgid "Continue"
-msgstr "Davam et"
+#: ../../netconnect.pm_.c:276
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
-#: ../../netconnect.pm_.c:241 ../../netconnect_new.pm_.c:328
-msgid "Abort"
-msgstr "Dayandýr"
+#: ../../netconnect.pm_.c:276
+msgid "PCI"
+msgstr "PCI"
-#: ../../netconnect.pm_.c:245 ../../netconnect_new.pm_.c:332
+#: ../../netconnect.pm_.c:282
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -5368,15 +5921,19 @@ msgstr ""
"\n"
"PCMCIA kartýnýz var isć kartýnýzýn irq vć ya io'sunu bilmćlisiniz.\n"
-#: ../../netconnect.pm_.c:257 ../../netconnect_new.pm_.c:344
+#: ../../netconnect.pm_.c:286
+msgid "Abort"
+msgstr "Dayandýr"
+
+#: ../../netconnect.pm_.c:286
+msgid "Continue"
+msgstr "Davam et"
+
+#: ../../netconnect.pm_.c:292
msgid "Which is your ISDN card ?"
msgstr "Hansýsý sizin ISDN kartýnýzdýr?"
-#: ../../netconnect.pm_.c:282
-msgid "I have found an ISDN Card:\n"
-msgstr "Bu ISDN kartýný tapdým:\n"
-
-#: ../../netconnect.pm_.c:288 ../../netconnect_new.pm_.c:367
+#: ../../netconnect.pm_.c:312
msgid ""
"I have detected an ISDN PCI Card, but I don't know the type. Please select "
"one PCI card on the next screen."
@@ -5384,331 +5941,350 @@ msgstr ""
"ISDN PCI kart tapdým, amma növünü bilmirćm. Lütfćn sonraký ekrandaký "
"kartlardan birini seçin."
-#: ../../netconnect.pm_.c:300 ../../netconnect_new.pm_.c:379
+#: ../../netconnect.pm_.c:321
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr "Heç bir ISDN PCI kart tapýlmaý. Sonraký ekrandakýlardam seçin."
-#: ../../netconnect.pm_.c:336 ../../netconnect_new.pm_.c:412
+#: ../../netconnect.pm_.c:369
msgid ""
"No ethernet network adapter has been detected on your system.\n"
"I cannot set up this connection type."
msgstr ""
-"Sisteminizdć heç bir ethernet network adapteri tapýla bilmćdi.\n"
+"Sisteminizdć heç bir ethernet ţćbćkć adapteri tapýla bilmćdi.\n"
"Bu bađlantý ţćklini qura bilmćrćm."
-#: ../../netconnect.pm_.c:340 ../../netconnect_new.pm_.c:417
-#: ../../standalone/drakgw_.c:222
+#: ../../netconnect.pm_.c:373 ../../standalone/drakgw_.c:232
msgid "Choose the network interface"
-msgstr "Network ara üzünü seçin"
+msgstr "Ţćbćkć axtar üzünü seçin"
-#: ../../netconnect.pm_.c:341 ../../netconnect_new.pm_.c:418
+#: ../../netconnect.pm_.c:374
msgid ""
"Please choose which network adapter you want to use to connect to Internet"
-msgstr "Ýnternete bađlanmaq üçün network adapteri seçin."
+msgstr "Ýnternete bađlanmaq üçün ţćbćkć adapteri seçin."
-#: ../../netconnect.pm_.c:356 ../../netconnect.pm_.c:635
-#: ../../netconnect.pm_.c:766 ../../netconnect_new.pm_.c:425
-#: ../../netconnect_new.pm_.c:777 ../../netconnect_new.pm_.c:908
-#: ../../standalone/drakgw_.c:217
+#: ../../netconnect.pm_.c:383 ../../netconnect.pm_.c:697
+#: ../../netconnect.pm_.c:842 ../../standalone/drakgw_.c:223
msgid "Network interface"
-msgstr "Network ara üzü"
+msgstr "Ţćbćkć axtar üzü"
-#: ../../netconnect.pm_.c:357 ../../netconnect_new.pm_.c:426
+#: ../../netconnect.pm_.c:384
msgid ""
"\n"
"Do you agree?"
msgstr ""
"\n"
-"Razýsýnýz mý?"
+"Razýsýnýzmý?"
-#: ../../netconnect.pm_.c:357 ../../netconnect_new.pm_.c:426
+#: ../../netconnect.pm_.c:384
msgid "I'm about to restart the network device:\n"
-msgstr "Network avadanlýđýný tćzćdćn baţlatmalýyam:\n"
+msgstr "Ţćbćkć avadanlýđýný yenidćn baţlatmalýyam:\n"
-#: ../../netconnect.pm_.c:473 ../../netconnect_new.pm_.c:512
+#: ../../netconnect.pm_.c:482
msgid "ADSL configuration"
msgstr "ADSL quraţdýrýlmasý"
-#: ../../netconnect.pm_.c:474 ../../netconnect_new.pm_.c:513
+#: ../../netconnect.pm_.c:483
msgid "Do you want to start your connection at boot?"
-msgstr "Bađlantýnýzý açýlýţda baţlatmaq istćyirsiniz mi?"
+msgstr "Bađlantýnýzý açýlýţda baţlatmaq istćyirsinizmi?"
-#: ../../netconnect.pm_.c:541 ../../netconnect_new.pm_.c:672
-msgid "Try to find a modem?"
-msgstr "Bir modem axtarým mý?"
-
-#: ../../netconnect.pm_.c:551 ../../netconnect_new.pm_.c:677
+#: ../../netconnect.pm_.c:618
msgid "Please choose which serial port your modem is connected to."
msgstr "Modeminizin hansý serial qapýya bađlý olduđunu seçiniz"
-#: ../../netconnect.pm_.c:556 ../../netconnect_new.pm_.c:682
+#: ../../netconnect.pm_.c:623
msgid "Dialup options"
-msgstr "Çevirmćli network seçćnćklari"
+msgstr "Çevirmćli ţćbćkć seçćnćklćri"
-#: ../../netconnect.pm_.c:557 ../../netconnect_new.pm_.c:683
+#: ../../netconnect.pm_.c:624 ../../standalone/draknet_.c:564
msgid "Connection name"
msgstr "Bađlantý adý"
-#: ../../netconnect.pm_.c:558 ../../netconnect_new.pm_.c:684
+#: ../../netconnect.pm_.c:625 ../../standalone/draknet_.c:565
msgid "Phone number"
msgstr "Telefon nömrćsi"
-#: ../../netconnect.pm_.c:559 ../../netconnect_new.pm_.c:685
+#: ../../netconnect.pm_.c:626 ../../standalone/draknet_.c:566
msgid "Login ID"
msgstr "Giriţ adý"
-#: ../../netconnect.pm_.c:561 ../../netconnect_new.pm_.c:687
+#: ../../netconnect.pm_.c:628 ../../standalone/draknet_.c:568
msgid "Authentication"
msgstr "Tanýtma"
-#: ../../netconnect.pm_.c:561 ../../netconnect_new.pm_.c:687
+#: ../../netconnect.pm_.c:628 ../../standalone/draknet_.c:568
msgid "PAP"
msgstr "PAP"
-#: ../../netconnect.pm_.c:561 ../../netconnect_new.pm_.c:687
+#: ../../netconnect.pm_.c:628 ../../standalone/draknet_.c:568
msgid "Script-based"
-msgstr "Betik tabćnli"
+msgstr "Skript ćsaslý"
-#: ../../netconnect.pm_.c:561 ../../netconnect_new.pm_.c:687
+#: ../../netconnect.pm_.c:628 ../../standalone/draknet_.c:568
msgid "Terminal-based"
-msgstr "Terminal tćbćnli"
+msgstr "Terminal ćsaslý"
-#: ../../netconnect.pm_.c:562 ../../netconnect_new.pm_.c:688
+#: ../../netconnect.pm_.c:629 ../../standalone/draknet_.c:569
msgid "Domain name"
msgstr "Sahć(domain) adý"
-#: ../../netconnect.pm_.c:564 ../../netconnect_new.pm_.c:690
-msgid "First DNS Server"
-msgstr "Birinci DNS Vericisi"
+#: ../../netconnect.pm_.c:630 ../../standalone/draknet_.c:570
+msgid "First DNS Server (optional)"
+msgstr "Birinci DNS Vericisi (arzuya görć)"
+
+#: ../../netconnect.pm_.c:631 ../../standalone/draknet_.c:571
+msgid "Second DNS Server (optional)"
+msgstr "Ýkinci DNS Vericisi (arzuya görć)"
-#: ../../netconnect.pm_.c:565 ../../netconnect_new.pm_.c:691
-msgid "Second DNS Server"
-msgstr "Ýkinci DNS Vericisi"
+#: ../../netconnect.pm_.c:698
+msgid ""
+"I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"
+msgstr "$netc->{NET_DEVICE} avadanlýđýný yenidćn baţladacam. Razýsýnýzmý?"
-#: ../../netconnect.pm_.c:594 ../../netconnect_new.pm_.c:736
+#: ../../netconnect.pm_.c:742
msgid ""
"\n"
-"You can connect to Internet or reconfigure your connection."
+"You can disconnect or reconfigure your connection."
msgstr ""
"\n"
-"Ýstćsćniz Ýnternetć bađlana bilćrsiniz ya da yeniden quraţdýra bilćrsiniz."
+"Bađlantýnýzý kćsć bilćrsiniz. Ya da bađlantýyý yenidćn dć quraţdýra "
+"bilćrsiniz."
-#: ../../netconnect.pm_.c:594 ../../netconnect.pm_.c:598
-#: ../../netconnect_new.pm_.c:736 ../../netconnect_new.pm_.c:740
+#: ../../netconnect.pm_.c:742 ../../netconnect.pm_.c:745
msgid ""
"\n"
"You can reconfigure your connection."
msgstr ""
"\n"
-"Bađlantýnýzý tćzćdćn quraţdýra bilćrsiniz."
+"Bađlantýnýzý yenidćn quraţdýra bilćrsiniz."
-#: ../../netconnect.pm_.c:594 ../../netconnect_new.pm_.c:736
-msgid "You are not currently connected to Internet."
-msgstr "Hćlć Ýnternetć bađlý deyilsiniz."
+#: ../../netconnect.pm_.c:742
+msgid "You are currently connected to internet."
+msgstr "Artýq Ýnternetć bađlýsýnýz."
-#: ../../netconnect.pm_.c:598 ../../netconnect_new.pm_.c:740
+#: ../../netconnect.pm_.c:745
msgid ""
"\n"
-"You can disconnect or reconfigure your connection."
+"You can connect to Internet or reconfigure your connection."
msgstr ""
"\n"
-"Bađlantýnýzý kćsć bilćrsiniz. Ya da bađlantýyý tćzćdćn dć quraţdýra "
-"bilćrsiniz."
+"Ýstćsćniz Ýnternetć bađlana bilćrsiniz ya da yeniden quraţdýra bilćrsiniz."
-#: ../../netconnect.pm_.c:598 ../../netconnect_new.pm_.c:740
-msgid "You are currently connected to internet."
-msgstr "Artýq Ýnternetć bađlýsýnýz."
+#: ../../netconnect.pm_.c:745
+msgid "You are not currently connected to Internet."
+msgstr "Hćlć Ýnternetć bađlý deyilsiniz."
-#: ../../netconnect.pm_.c:602 ../../netconnect_new.pm_.c:744
+#: ../../netconnect.pm_.c:749 ../../standalone/net_monitor_.c:81
msgid "Connect to Internet"
msgstr "Ýnternetć bađlantý"
-#: ../../netconnect.pm_.c:604 ../../netconnect_new.pm_.c:746
+#: ../../netconnect.pm_.c:751
msgid "Disconnect from Internet"
msgstr "Ýnternetć bađlantýyý kćs"
-#: ../../netconnect.pm_.c:606 ../../netconnect_new.pm_.c:748
+#: ../../netconnect.pm_.c:753
msgid "Configure network connection (LAN or Internet)"
-msgstr "Network (Ýnternet/LAN) bađlantýnýzý quraţdýrýn"
+msgstr "Ţćbćkć (Ýnternet/LAN) bađlantýnýzý quraţdýrýn"
-#: ../../netconnect.pm_.c:609 ../../netconnect_new.pm_.c:751
+#: ../../netconnect.pm_.c:756
msgid "Internet connection & configuration"
msgstr "Ýnternet bađlantýsý & quraţdýrýlmasý"
-#: ../../netconnect.pm_.c:636 ../../netconnect.pm_.c:767
-#: ../../netconnect_new.pm_.c:778 ../../netconnect_new.pm_.c:909
-msgid ""
-"I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"
-msgstr "$netc->{NET_DEVICE} avadanlýđýný tćzćdćn baţladacam. Razýsýnýz mý?"
+#: ../../netconnect.pm_.c:808 ../../netconnect.pm_.c:957
+#: ../../netconnect.pm_.c:967 ../../netconnect.pm_.c:982
+msgid "Network Configuration Wizard"
+msgstr "Ţćbćkć Quraţdýrýlmasý Sehirbazý"
-#: ../../netconnect.pm_.c:653 ../../netconnect_new.pm_.c:795
-msgid "Configure a normal modem connection"
-msgstr "Ýnternetć normal modemlć bađlan"
-
-#: ../../netconnect.pm_.c:673 ../../netconnect_new.pm_.c:815
-msgid "Configure an ISDN connection"
-msgstr "Ýnternetć ISDN ilć bađlan"
+#: ../../netconnect.pm_.c:809
+msgid "External ISDN modem"
+msgstr "Xarici ISDN kart"
-#: ../../netconnect.pm_.c:678 ../../netconnect_new.pm_.c:820
+#: ../../netconnect.pm_.c:809
msgid "Internal ISDN card"
msgstr "Daxili ISDN kart"
-#: ../../netconnect.pm_.c:680 ../../netconnect_new.pm_.c:822
-msgid "External ISDN modem"
-msgstr "Xarici ISDN kart"
+#: ../../netconnect.pm_.c:809
+msgid "What kind is your ISDN connection?"
+msgstr "ISDN bađlantýnýzýn növü nćdir?"
-#: ../../netconnect.pm_.c:683 ../../netconnect.pm_.c:717
-#: ../../netconnect.pm_.c:729 ../../netconnect.pm_.c:753
-#: ../../netconnect.pm_.c:798 ../../netconnect_new.pm_.c:825
-#: ../../netconnect_new.pm_.c:859 ../../netconnect_new.pm_.c:871
-#: ../../netconnect_new.pm_.c:895 ../../netconnect_new.pm_.c:940
+#: ../../netconnect.pm_.c:830 ../../netconnect.pm_.c:879
msgid "Connect to the Internet"
msgstr "Ýnternete bađlan"
-#: ../../netconnect.pm_.c:684 ../../netconnect_new.pm_.c:826
-msgid "What kind is your ISDN connection?"
-msgstr "ISDN bađlantýnýzýn növü nćdir?"
-
-#: ../../netconnect.pm_.c:703 ../../netconnect_new.pm_.c:845
-msgid "Configure a DSL (or ADSL) connection"
-msgstr "Ýnternetć DSL (vć ya ADSL) ilć bađlan"
+#: ../../netconnect.pm_.c:831
+msgid ""
+"The most common way to connect with adsl is pppoe.\n"
+"Some connections use pptp, a few ones use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
+msgstr ""
+"ADSL ilć internetć bađlanmanýn ćn yaxţý yolu pppoe'dur.\n"
+"Bćzi bađlantýlar pptp istifadć edir, çox azý isć dhcp iţlćdir.\n"
+"Bilmirsiniz isć 'pppop istifadć et'i seçin"
-#: ../../netconnect.pm_.c:712 ../../netconnect_new.pm_.c:854
-msgid "France"
-msgstr "Fransa"
+#: ../../netconnect.pm_.c:833
+msgid "use dhcp"
+msgstr "dhcp istifadć et"
-#: ../../netconnect.pm_.c:714 ../../netconnect_new.pm_.c:856
-msgid "Other countries"
-msgstr "Baţqa ölkćlćr"
+#: ../../netconnect.pm_.c:833
+msgid "use pppoe"
+msgstr "pppoe istifadć et"
-#: ../../netconnect.pm_.c:718 ../../netconnect_new.pm_.c:860
-msgid "In which country are you located ?"
-msgstr "Hansý ölkćdć yerlćţirsiniz?"
+#: ../../netconnect.pm_.c:833
+msgid "use pptp"
+msgstr "pptpe istifadć et"
-#: ../../netconnect.pm_.c:724 ../../netconnect_new.pm_.c:866
-msgid "Alcatel modem"
-msgstr "Alcatel modem"
+#: ../../netconnect.pm_.c:843
+#, c-format
+msgid "I'm about to restart the network device %s. Do you agree?"
+msgstr "%s avadanlýđýný yenidćn baţladacam. Razýsýnýzmý?"
-#: ../../netconnect.pm_.c:726 ../../netconnect_new.pm_.c:868
-msgid "ECI modem"
-msgstr "ECI modem"
+#: ../../netconnect.pm_.c:880
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcpcd"
+msgstr ""
+"Hansý dhcp alýcýsýný istifadć edćcćksiniz?\n"
+"Ćsasý dhcpcd dir"
-#: ../../netconnect.pm_.c:730 ../../netconnect_new.pm_.c:872
-msgid "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
-msgstr "ADSL modeminiz Alcatelin isć Alcateli seçin. Yoxsa ECI seçin."
+#: ../../netconnect.pm_.c:897
+msgid "Network configuration"
+msgstr "Ţćbćkć quraţdýrýlmasý"
-#: ../../netconnect.pm_.c:748 ../../netconnect_new.pm_.c:890
-msgid "use pppoe"
-msgstr "pppoe istifadć et"
+#: ../../netconnect.pm_.c:898
+msgid "Do you want to restart the network"
+msgstr "Ţćbćkćni yenidćn baţlatmaq istćyirsinizmi?"
-#: ../../netconnect.pm_.c:750 ../../netconnect_new.pm_.c:892
-msgid "don't use pppoe"
-msgstr "pppoe istifadć etmć"
+#: ../../netconnect.pm_.c:901
+#, fuzzy, c-format
+msgid ""
+"A problem occured while restarting the network: \n"
+"\n"
+"%s"
+msgstr "Ţćbćkćni yenidćn baţlatmaq istćyirsinizmi?"
-#: ../../netconnect.pm_.c:754 ../../netconnect_new.pm_.c:896
+#: ../../netconnect.pm_.c:931
msgid ""
-"The most common way to connect with adsl is dhcp + pppoe.\n"
-"However, some connections only use dhcp.\n"
-"If you don't know, choose 'use pppoe'"
+"Because you are doing a network installation, your network is already "
+"configured.\n"
+"Click on Ok to keep your configuration, or cancel to reconfigure your "
+"Internet & Network connection.\n"
msgstr ""
-"ADSL ilć internetć bađlanmanýn ćn yaxţý yolu dhcp + pppoe dir.\n"
-"Bćzi bađlantýlar isć sadćcć olaraq dhcp istifadć edir.\n"
-"Bilmirsiniz isć pppop istifadć edin"
-
-#: ../../netconnect.pm_.c:777 ../../netconnect_new.pm_.c:919
-msgid "Configure a cable connection"
-msgstr "Ýnternetć kabel ilć bađlanýn"
+"Ţćbćkćdćn quraţdýrmasý apardýđýnýz üçün ţabćkćniz artýq qurulmuţ olmalýdýr.\n"
+"Ţabćkć/Ýnternet bađlantýnýzý yenidćn quraţdýrmaq üçün Oldu'ya yoxsa Lćđv "
+"et'ć basýn.\n"
-#: ../../netconnect.pm_.c:799 ../../netconnect_new.pm_.c:941
+#: ../../netconnect.pm_.c:958
msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcpd"
+"Welcome to The Network Configuration Wizard\n"
+"\n"
+"We are about to configure your internet/network connection.\n"
+"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
-"Hansý dhcp alýcýsýný istifadć edćcćksiniz?\n"
-"Ćsasý dhcpd dir"
+"Ţćbćkć Quraţdýrma Sehirbazýna Xoç Gćldiniz\n"
+"\n"
+"Ýnternet/Ţćbćkć qurđularýnýzý edćcćyik.\n"
+"Avtomatik tćsbit istćmirsiniz isć iţarćti qaldýrýn.\n"
-#: ../../netconnect.pm_.c:812 ../../netconnect_new.pm_.c:954
-msgid "Disable Internet Connection"
-msgstr "Ýnternet bađlantýsýný lćđv et"
+#: ../../netconnect.pm_.c:960
+msgid "Choose the profile to configure"
+msgstr "Qurulacaq profili seçin"
-#: ../../netconnect.pm_.c:823 ../../netconnect_new.pm_.c:965
-msgid "Configure local network"
-msgstr "Yerli Networku quraţdýr"
+#: ../../netconnect.pm_.c:961
+msgid "Use auto detection"
+msgstr "Avtomatik tćsbit iţlćt"
-#: ../../netconnect.pm_.c:827 ../../netconnect_new.pm_.c:969
-msgid "Network configuration"
-msgstr "Network quraţdýrýlmasý"
+#: ../../netconnect.pm_.c:967 ../../printerdrake.pm_.c:19
+msgid "Detecting devices..."
+msgstr "Avadanlýqlar tanýnýr..."
-#: ../../netconnect.pm_.c:828 ../../netconnect_new.pm_.c:970
-msgid "Do you want to restart the network"
-msgstr "Networku tćzćdćn baţlatmaq istćyirsinizmi?"
+#: ../../netconnect.pm_.c:974
+msgid "Normal modem connection"
+msgstr "Normal modem tćsbiti"
+
+#: ../../netconnect.pm_.c:974
+#, c-format
+msgid "detected on port %s"
+msgstr "%s qapýsýnda tapýldý"
-#: ../../netconnect.pm_.c:836 ../../netconnect_new.pm_.c:978
-msgid "Disable networking"
-msgstr "Networku lćđv et"
+#: ../../netconnect.pm_.c:975
+msgid "ISDN connection"
+msgstr "ISDN Bađlantýsý"
-#: ../../netconnect.pm_.c:846 ../../netconnect_new.pm_.c:988
-msgid "Configure the Internet connection / Configure local Network"
-msgstr "Ýnternet bađlantýsýný quraţdýr / Yerli Networku quraţdýr"
+#: ../../netconnect.pm_.c:975
+#, c-format
+msgid "detected %s"
+msgstr "%s tapýldý"
-#: ../../netconnect.pm_.c:847 ../../netconnect_new.pm_.c:989
-msgid ""
-"Local networking has already been configured.\n"
-"Do you want to:"
-msgstr "LAN qurđularý artýq olmuţdur. Nć etmćk istćyirsiniz:?"
+#: ../../netconnect.pm_.c:976
+msgid "DSL (or ADSL) connection"
+msgstr "DSL (vć ya ADSL) bađlantýsý"
+
+#: ../../netconnect.pm_.c:976
+#, c-format
+msgid "detected on interface %s"
+msgstr "%s axtar üzündć tapýldý"
+
+#: ../../netconnect.pm_.c:977
+msgid "Cable connection"
+msgstr "Kabel bađlantýsý"
+
+#: ../../netconnect.pm_.c:978
+msgid "LAN connection"
+msgstr "Yerli Ţćbćkć quraţdýrýlmasý"
+
+#: ../../netconnect.pm_.c:978
+msgid "ethernet card(s) detected"
+msgstr "eternet kart tapýldý"
-#: ../../netconnect.pm_.c:848 ../../netconnect_new.pm_.c:990
+#: ../../netconnect.pm_.c:983
msgid "How do you want to connect to the Internet?"
msgstr "Ýnternetć necć bađlanmaq istćyirsiniz?"
-#: ../../netconnect.pm_.c:870 ../../netconnect_new.pm_.c:1012
-msgid "Network Configuration"
-msgstr "Network quraţdýrýlmasý"
-
-#: ../../netconnect.pm_.c:871 ../../netconnect_new.pm_.c:1013
+#: ../../netconnect.pm_.c:1000
msgid ""
-"Now that your Internet connection is configured,\n"
-"your computer can be configured to share its Internet connection.\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN).\n"
+"Congratulation, The network and internet configuration is finished.\n"
"\n"
-"Would you like to setup the Internet Connection Sharing?\n"
+"The configuration will now be applied to your system."
msgstr ""
-"Artýq bilgisayarýnýz Ýnternetć giriţ üçün qurulmuţdur\n"
-"vć siz bu imkaný bölüţdürć bilćrsiniz.\n"
-"Xćbćdarlýq: Yerli Network (LAN) qurmaq üçün uyđun Network Adapterinć "
-"ehtiyacýnýz var.\n"
+"Tabrik edirik, internet vć ţabćkć quraţdýrýlmasý qurtardý.\n"
"\n"
-"Ýnternet Bađlantýsý Bölüţdürülmćsini qurmaq istayirsiniz mi?\n"
+"Qurđular indi sisteminizć ćlavć edilćcćk."
+
+#: ../../netconnect.pm_.c:1003
+msgid ""
+"After that is done, we recommend you to restart your X\n"
+"environnement to avoid hostname changing problem."
+msgstr ""
+"Bu edildikdćn sonra X'dćn çýxmađýnýzý tövsiyyć edirik, yoxsa\n"
+"verici adý xćsarćtlćri meydana gćlć bilćr."
#: ../../network.pm_.c:253
msgid "no network card found"
-msgstr "network kartý tapýlmadý"
+msgstr "ţćbćkć kartý tapýlmadý"
-#: ../../network.pm_.c:273 ../../network.pm_.c:340
+#: ../../network.pm_.c:277 ../../network.pm_.c:387
msgid "Configuring network"
-msgstr "Network Qurđularý"
+msgstr "Ţćbćkć Qurđularý"
-#: ../../network.pm_.c:274
+#: ../../network.pm_.c:278
msgid ""
"Please enter your host name if you know it.\n"
"Some DHCP servers require the hostname to work.\n"
"Your host name should be a fully-qualified host name,\n"
"such as ``mybox.mylab.myco.com''."
msgstr ""
-"Lütfćn bilgisayarýnýzýn adýný girin.\n"
-"Mćsćlćn``bilgisayaradý.sahćadý.com''.\n"
-"Ćgć network keçidi istifadć edirsinizsć bunun da IP nömrćsini girmćlisiniz."
+"Lütfćn kompüterinizýn adýný girin.\n"
+"Mćsćlćn``kompüteradý.sahćadý.com''.\n"
+"Ćgć ţćbćkć keçidi istifadć edirsinizsć bunun da IP nömrćsini girmćlisiniz."
-#: ../../network.pm_.c:278 ../../network.pm_.c:345
+#: ../../network.pm_.c:282 ../../network.pm_.c:392
msgid "Host name"
msgstr "Ev sahibi adý"
-#: ../../network.pm_.c:297
+#: ../../network.pm_.c:319
msgid ""
"WARNING: This device has been previously configured to connect to the "
"Internet.\n"
-"Simply press OK to keep this device configured.\n"
+"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
msgstr ""
"DÝQQĆT: Bu avadanlýq daha ćvvćl Ýntenetć bađlanmaq üçün qurulmuţdur.\n"
@@ -5716,87 +6292,92 @@ msgstr ""
"OLDU ya basýn.\n"
"Aţađýdaký giriţlćri düzćltmćniz özünü ćvvalki qurđularýn üstünć yazacaqdýr."
-#: ../../network.pm_.c:302
+#: ../../network.pm_.c:324
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
"notation (for example, 1.2.3.4)."
-msgstr "Lütfćn bu bilgisayar üçün IP qurđularýný girin"
+msgstr "Lütfćn bu kompüter üçün IP qurđularýný girin"
-#: ../../network.pm_.c:311 ../../network.pm_.c:312
+#: ../../network.pm_.c:333 ../../network.pm_.c:334
#, c-format
msgid "Configuring network device %s"
-msgstr "%s network avadanlýđý qurulur"
+msgstr "%s ţćbćkć avadanlýđý qurulur"
-#: ../../network.pm_.c:314
-msgid "Automatic IP"
-msgstr "Avtomatik IP"
+#: ../../network.pm_.c:334
+msgid " (driver $module)"
+msgstr " (sürücü $module)"
-#: ../../network.pm_.c:314
+#: ../../network.pm_.c:336 ../../standalone/draknet_.c:231
+#: ../../standalone/draknet_.c:425
msgid "IP address"
msgstr "IP ünvaný"
-#: ../../network.pm_.c:314
+#: ../../network.pm_.c:337 ../../standalone/draknet_.c:426
msgid "Netmask"
msgstr "Netmask"
-#: ../../network.pm_.c:315
+#: ../../network.pm_.c:338
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network.pm_.c:321 ../../printerdrake.pm_.c:98
-#: ../../printerdrake.pm_.c:420
+#: ../../network.pm_.c:338
+msgid "Automatic IP"
+msgstr "Avtomatlaţdýrýlmýţ IP"
+
+#: ../../network.pm_.c:359 ../../printerdrake.pm_.c:102
+#: ../../printerdrake.pm_.c:425
msgid "IP address should be in format 1.2.3.4"
msgstr "IP ünvaný 1.2.3.4 ţćklindć olmalýdýr"
-#: ../../network.pm_.c:341
+#: ../../network.pm_.c:388
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
"such as ``mybox.mylab.myco.com''.\n"
"You may also enter the IP address of the gateway if you have one"
msgstr ""
-"Lütfćn bilgisayarýnýzn adýný girin.\n"
-"Mćsćlćn``bilgisayaradý.sahćadý.com''.\n"
-"Ćgć network keçidi istifadć edirsinizsć bunun da IP nömrćsini girmćlisiniz."
+"Lütfćn kompüterinizn adýný girin.\n"
+"Mćsćlćn``kompüteradý.sahćadý.com''.\n"
+"Ćgćr ţćbćkć keçidi istifadć edirsinizsć bunun da IP nömrćsini girmćlisiniz."
-#: ../../network.pm_.c:346
+#: ../../network.pm_.c:393
msgid "DNS server"
msgstr "DNS verici"
-#: ../../network.pm_.c:347
+#: ../../network.pm_.c:394 ../../standalone/draknet_.c:563
msgid "Gateway"
msgstr "Keçit"
-#: ../../network.pm_.c:348
+#: ../../network.pm_.c:396
msgid "Gateway device"
msgstr "Keçit avadanlýđý"
-#: ../../network.pm_.c:358
+#: ../../network.pm_.c:407
msgid "Proxies configuration"
msgstr "Vćkil vericilćr quraţdýrýlmasý"
-#: ../../network.pm_.c:359
+#: ../../network.pm_.c:408
msgid "HTTP proxy"
msgstr "HTTP vćkil verici"
-#: ../../network.pm_.c:360
+#: ../../network.pm_.c:409
msgid "FTP proxy"
msgstr "FTP vćkil verici"
-#: ../../network.pm_.c:366
+#: ../../network.pm_.c:412
msgid "Proxy should be http://..."
msgstr "Vćkil verici http://... ţćklindć olmalýdýr."
-#: ../../network.pm_.c:367
+#: ../../network.pm_.c:413
msgid "Proxy should be ftp://..."
msgstr "Vćkil verici ftp://... olmalýdýr."
-#: ../../partition_table.pm_.c:540
+#: ../../partition_table.pm_.c:560
msgid "Extended partition not supported on this platform"
msgstr "Bu platformda geniţlćdilmiţ bölmćlćr dćstćklćnmir"
-#: ../../partition_table.pm_.c:558
+#: ../../partition_table.pm_.c:578
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -5807,117 +6388,98 @@ msgstr ""
"daţýyaraq\n"
"mćsćlćni hćll edć bilćrsiniz."
-#: ../../partition_table.pm_.c:651
+#: ../../partition_table.pm_.c:672
#, c-format
msgid "Error reading file %s"
-msgstr "%s dosyesý oxunurkan xćta oldu"
+msgstr "%s faylý oxunurkan xćta oldu"
-#: ../../partition_table.pm_.c:658
+#: ../../partition_table.pm_.c:679
#, c-format
msgid "Restoring from file %s failed: %s"
-msgstr "%s dosyesindćn qurtarýlýţda xćta: %s"
+msgstr "%s faylýndan qurtarýlýţda xćta: %s"
-#: ../../partition_table.pm_.c:660
+#: ../../partition_table.pm_.c:681
msgid "Bad backup file"
-msgstr "Xćtalý yedćklćmć dosyesi"
+msgstr "Xćtalý yedćklćmć faylý"
-#: ../../partition_table.pm_.c:681
+#: ../../partition_table.pm_.c:703
#, c-format
msgid "Error writing to file %s"
-msgstr "%s dosyesinć yazarkćn xćta oldu"
+msgstr "%s faylýna yazarkćn xćta oldu"
-#: ../../pkgs.pm_.c:20
-msgid "mandatory"
-msgstr "mćcburi"
+#: ../../partition_table_raw.pm_.c:161
+msgid ""
+"Something bad is happening on your 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 trash"
+msgstr ""
+"Bćzćn sürücünüzdć pis ţeylćr ola bilćr.\n"
+"Datanýn bütövlüyü yoxlamasý bacarýlmadý. \n"
+"Bu o demekdir ki diskć yazýlan hćr ţey tćsadüfi olacaqdýr"
-#: ../../pkgs.pm_.c:21
+#: ../../pkgs.pm_.c:24
msgid "must have"
msgstr "alýnmalý"
-#: ../../pkgs.pm_.c:22
+#: ../../pkgs.pm_.c:25
msgid "important"
msgstr "vacib"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "very nice"
msgstr "ćla"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "nice"
msgstr "gözćl"
-#: ../../pkgs.pm_.c:26 ../../pkgs.pm_.c:27
-msgid "interesting"
-msgstr "maraqlý"
-
-#: ../../pkgs.pm_.c:28 ../../pkgs.pm_.c:29 ../../pkgs.pm_.c:30
-#: ../../pkgs.pm_.c:31
+#: ../../pkgs.pm_.c:28
msgid "maybe"
msgstr "bćlkć"
-#: ../../pkgs.pm_.c:34
-msgid "i18n (important)"
-msgstr "i18n (vacib)"
-
-#: ../../pkgs.pm_.c:35
-msgid "i18n (very nice)"
-msgstr "i18n (ćla)"
-
-#: ../../pkgs.pm_.c:36
-msgid "i18n (nice)"
-msgstr "i18n (gözćl)"
-
-#: ../../printer.pm_.c:19
+#: ../../printer.pm_.c:20
msgid "Local printer"
-msgstr "Yerli Yazýcý"
+msgstr "Yerli Çap Edici"
-#: ../../printer.pm_.c:20
+#: ../../printer.pm_.c:21
msgid "Remote printer"
-msgstr "Uzaq Yazýcý"
-
-#: ../../printer.pm_.c:21 ../../printerdrake.pm_.c:410
-msgid "Remote CUPS server"
-msgstr "Uzaq CUPS vericisi"
+msgstr "Uzaq Çap Edici"
-#: ../../printer.pm_.c:22
+#: ../../printer.pm_.c:23
msgid "Remote lpd server"
-msgstr "Uzaq yazýcý vericisi(lpd)"
+msgstr "Uzaq çap edici vericisi(lpd)"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:24
msgid "Network printer (socket)"
-msgstr "Network Yazýcý (soket) "
+msgstr "Ţćbćkć Çap Edicisi (soket) "
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:25
msgid "SMB/Windows 95/98/NT"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:26
msgid "NetWare"
msgstr "NetWare"
-#: ../../printer.pm_.c:26 ../../printerdrake.pm_.c:154
-#: ../../printerdrake.pm_.c:156
+#: ../../printer.pm_.c:27 ../../printerdrake.pm_.c:158
+#: ../../printerdrake.pm_.c:160
msgid "Printer Device URI"
-msgstr "Yazýcý avadanlýđý URI"
-
-#: ../../printerdrake.pm_.c:19
-msgid "Detecting devices..."
-msgstr "Avadanlýqlar tanýnýr..."
+msgstr "Çap Edici avadanlýđý URI"
#: ../../printerdrake.pm_.c:19
msgid "Test ports"
msgstr "Qapýlarý sýna"
-#: ../../printerdrake.pm_.c:35
+#: ../../printerdrake.pm_.c:40
#, c-format
msgid "A printer, model \"%s\", has been detected on "
-msgstr "\"%s\" modelindć bir yazýcý tapýldý:"
+msgstr "\"%s\" modelindć bir çap edici tapýldý:"
-#: ../../printerdrake.pm_.c:48
+#: ../../printerdrake.pm_.c:52
msgid "Local Printer Device"
-msgstr "Yerli Yazýcý Avadanlýđý"
+msgstr "Yerli Çap Edici Avadanlýđý"
-#: ../../printerdrake.pm_.c:49
+#: ../../printerdrake.pm_.c:53
msgid ""
"What device is your printer connected to \n"
"(note that /dev/lp0 is equivalent to LPT1:)?\n"
@@ -5925,37 +6487,37 @@ msgstr ""
"Yazýcýnýz hansý avadanlýđa bađlýdýr? \n"
"(/dev/lp0, LPT1'nin qarţýlýđýdýr)\n"
-#: ../../printerdrake.pm_.c:51
+#: ../../printerdrake.pm_.c:55
msgid "Printer Device"
-msgstr "Yazýcý Avadanlýđý"
+msgstr "Çap Edici Avadanlýđý"
-#: ../../printerdrake.pm_.c:70
+#: ../../printerdrake.pm_.c:74
msgid "Remote lpd Printer Options"
-msgstr "Uzaq Yazýcý (lpd) Seçćnćklćri"
+msgstr "Uzaq Çap Edici (lpd) Seçćnćklćri"
-#: ../../printerdrake.pm_.c:71
+#: ../../printerdrake.pm_.c:75
msgid ""
"To use a remote lpd print queue, you need to supply\n"
"the hostname of the printer server and the queue name\n"
"on that server which jobs should be placed in."
msgstr ""
-"Uzaqdaký bir lpd yazýcý növbćsini istifadć etmćk üçün, \n"
-"yazýcýnýn bađlý olduđu yazýcý vericisinin adýný vć növbć \n"
+"Uzaqdaký bir lpd çap edici növbćsini istifadć etmćk üçün, \n"
+"çap edicinin bađlý olduđu çap edici vericisinin adýný vć növbć \n"
"adýnýný vermćlisiniz."
-#: ../../printerdrake.pm_.c:74
+#: ../../printerdrake.pm_.c:78
msgid "Remote hostname"
msgstr "Uzaqdaký ev sahibi adý"
-#: ../../printerdrake.pm_.c:75
+#: ../../printerdrake.pm_.c:79
msgid "Remote queue"
msgstr "Uzaqdaký növbć adý"
-#: ../../printerdrake.pm_.c:84
+#: ../../printerdrake.pm_.c:88
msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "SMB (Windows 9x/NT) Yazýcý Seçćnćklćri"
+msgstr "SMB (Windows 9x/NT) Çap Edici Seçćnćklćri"
-#: ../../printerdrake.pm_.c:85
+#: ../../printerdrake.pm_.c:89
msgid ""
"To print to a SMB printer, you need to provide the\n"
"SMB host name (Note! It may be different from its\n"
@@ -5963,85 +6525,87 @@ msgid ""
"well as the share name for the printer you wish to access and any\n"
"applicable user name, password, and workgroup information."
msgstr ""
-"Bir SMB yazýcýdan çixiţ almaq üçün, SMB bilgisayar adý, yazýcý vericisinin\n"
-"IP ünvaný, yazýcýnýn paylaţdýrma adý, çalýţma grupu, istifadćçi adý vć \n"
+"Bir SMB çap edicidćn çixiţ almaq üçün, SMB kompüter adý, çap edici "
+"vericisinin\n"
+"IP ünvaný, çap edicinin paylaţdýrma adý, iţlćmć grupu, istifadćçi adý vć \n"
"parol verilmćlidir."
-#: ../../printerdrake.pm_.c:90
+#: ../../printerdrake.pm_.c:94
msgid "SMB server host"
msgstr "SMB verici adý"
-#: ../../printerdrake.pm_.c:91
+#: ../../printerdrake.pm_.c:95
msgid "SMB server IP"
msgstr "SMB verici IP"
-#: ../../printerdrake.pm_.c:92
+#: ../../printerdrake.pm_.c:96
msgid "Share name"
msgstr "Paylaţdýrma adý"
-#: ../../printerdrake.pm_.c:95
+#: ../../printerdrake.pm_.c:99
msgid "Workgroup"
msgstr "Çalýţma grupu"
-#: ../../printerdrake.pm_.c:120
+#: ../../printerdrake.pm_.c:124
msgid "NetWare Printer Options"
-msgstr "NetWare Yazýcý Qurđularý"
+msgstr "NetWare Çap Edici Qurđularý"
-#: ../../printerdrake.pm_.c:121
+#: ../../printerdrake.pm_.c:125
msgid ""
"To print to a NetWare printer, you need to provide the\n"
"NetWare print server name (Note! it may be different from its\n"
"TCP/IP hostname!) as well as the print queue name for the printer you\n"
"wish to access and any applicable user name and password."
msgstr ""
-"NetWare yazýcýdan çixiţ almaq üçün, NetWare vericisinin adý vć yazýcý \n"
+"NetWare çap edicidćn çixiţ almaq üçün, NetWare vericisinin adý vć çap edici "
+"\n"
"növbćsi adý ilć istifadćçi adý va parolau verilmćlidir."
-#: ../../printerdrake.pm_.c:125
+#: ../../printerdrake.pm_.c:129
msgid "Printer Server"
-msgstr "Yazýcý Vericisi"
+msgstr "Çap Edici Vericisi"
-#: ../../printerdrake.pm_.c:126
+#: ../../printerdrake.pm_.c:130
msgid "Print Queue Name"
-msgstr "Yazýcý Növbć Adý"
+msgstr "Çap Edici Növbć Adý"
-#: ../../printerdrake.pm_.c:138
+#: ../../printerdrake.pm_.c:142
msgid "Socket Printer Options"
-msgstr "Soket Yazýcý Qurđularý"
+msgstr "Soket Çap Edici Qurđularý"
-#: ../../printerdrake.pm_.c:139
+#: ../../printerdrake.pm_.c:143
msgid ""
"To print to a socket printer, you need to provide the\n"
"hostname of the printer and optionally the port number."
msgstr ""
-"Soket yazýcýdan çixiţ almaq üçün, yazýçýnýn ev sahibinadýný ve mümkündürsć "
-"qapýsýnýn nömrćsini vermćlisiniz."
+"Soket çap edicidćn çixiţ almaq üçün, çap edicinin ev sahibi adýný ve "
+"mümkündürsć qapýsýnýn nömrćsini vermćlisiniz."
-#: ../../printerdrake.pm_.c:141
+#: ../../printerdrake.pm_.c:145
msgid "Printer Hostname"
-msgstr "Yazýçi Ev sahibi"
+msgstr "Çap Edici Ev sahibi"
-#: ../../printerdrake.pm_.c:142 ../../printerdrake.pm_.c:417
+#: ../../printerdrake.pm_.c:146 ../../printerdrake.pm_.c:422
msgid "Port"
msgstr "Qapý"
-#: ../../printerdrake.pm_.c:155
+#: ../../printerdrake.pm_.c:159
msgid "You can specify directly the URI to access the printer with CUPS."
-msgstr "CUPS ilć yazýçýya yetiţmćk üçün URIni vermćlisiniz"
+msgstr "CUPS ilć çap ediciyć yetiţmćk üçün URIni vermćlisiniz"
-#: ../../printerdrake.pm_.c:188 ../../printerdrake.pm_.c:240
+#: ../../printerdrake.pm_.c:192 ../../printerdrake.pm_.c:244
msgid "What type of printer do you have?"
-msgstr "Nć cür bir yazýçýnýz var?"
+msgstr "Nć cür bir çap ediciniz var?"
-#: ../../printerdrake.pm_.c:200 ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:204 ../../printerdrake.pm_.c:305
msgid "Do you want to test printing?"
-msgstr "Yazýçýyý sýnamaq istćyirsiniz mi?"
+msgstr "Çap Edicini sýnamaq istćyirsinizmi?"
-#: ../../printerdrake.pm_.c:203 ../../printerdrake.pm_.c:318
+#: ../../printerdrake.pm_.c:207 ../../printerdrake.pm_.c:316
msgid "Printing test page(s)..."
msgstr "Sýnaq sćhifćsi çap edilir..."
-#: ../../printerdrake.pm_.c:210 ../../printerdrake.pm_.c:326
+#: ../../printerdrake.pm_.c:214 ../../printerdrake.pm_.c:324
#, c-format
msgid ""
"Test page(s) have been sent to the printer daemon.\n"
@@ -6051,100 +6615,96 @@ msgid ""
"\n"
"Does it work properly?"
msgstr ""
-"Sýnaq sćhifćsi yazýçý aracýsýna göndćrildi.\n"
-"Yazýçýnýn iţlćmćsi üçün bir az vaxt keçćr.\n"
-"Yazdýrmanýn vćziyyćti:\n"
+"Sýnaq sćhifćsi çap edici aracýsýna göndćrildi.\n"
+"Çap Edicinin iţlćmćsi üçün bir az vaxt keçćr.\n"
+"Çap vćziyyćti:\n"
"%s\n"
"\n"
-"Düz mü iţlćyir?"
+"Düzmü iţlćyir?"
-#: ../../printerdrake.pm_.c:214 ../../printerdrake.pm_.c:330
+#: ../../printerdrake.pm_.c:218 ../../printerdrake.pm_.c:328
msgid ""
"Test page(s) have been sent to the printer daemon.\n"
"This may take a little time before printer start.\n"
"Does it work properly?"
msgstr ""
-"Sýnaq sćhifćsi yazýçý aracýsýna göndćrildi.\n"
-"Yazýçýnýn iţlćmćsi üçün bir az vaxt keçćr.\n"
-"Düz mü iţlćyir?"
+"Sýnaq sćhifćsi çap edici aracýsýna göndćrildi.\n"
+"Çap Edicinin iţlćmćsi üçün bir az vaxt keçćr.\n"
+"Düzmü iţlćyir?"
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:234
msgid "Yes, print ASCII test page"
msgstr "Bćli, ASCII sýnaq sćhifćsi çap et"
-#: ../../printerdrake.pm_.c:231
+#: ../../printerdrake.pm_.c:235
msgid "Yes, print PostScript test page"
msgstr "Bćli, PostScript sýnaq sćhifćsi çap et"
-#: ../../printerdrake.pm_.c:232
+#: ../../printerdrake.pm_.c:236
msgid "Yes, print both test pages"
msgstr "Bćli, hćr iki sýnaq sćhifćsini dć çap et"
-#: ../../printerdrake.pm_.c:239
+#: ../../printerdrake.pm_.c:243
msgid "Configure Printer"
-msgstr "Yazýçiný qur"
+msgstr "Çap Edicini qur"
-#: ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:273
msgid "Printer options"
-msgstr "Yazýçý seçćnćklćri"
+msgstr "Çap Edici seçćnćklćri"
-#: ../../printerdrake.pm_.c:273
+#: ../../printerdrake.pm_.c:274
msgid "Paper Size"
-msgstr "Kađýz boyu"
+msgstr "Kađýz Böyüklüyü"
-#: ../../printerdrake.pm_.c:274
+#: ../../printerdrake.pm_.c:275
msgid "Eject page after job?"
-msgstr "Ýţ bittikdćn sonra sćhifć atýlsýn mý?"
+msgstr "Ýţ bittikdćn sonra sćhifć atýlsýnmý?"
-#: ../../printerdrake.pm_.c:279
+#: ../../printerdrake.pm_.c:280
msgid "Uniprint driver options"
msgstr "Uniprint sürücü seçćnćklćri"
-#: ../../printerdrake.pm_.c:280
+#: ../../printerdrake.pm_.c:281
msgid "Color depth options"
msgstr "Rćng dćrinlik seçćnćklćri"
-#: ../../printerdrake.pm_.c:282
-msgid "Print text as PostScript?"
-msgstr "Mćtni PostScript olaraq yazdýrsýn mý?"
-
#: ../../printerdrake.pm_.c:283
-msgid "Reverse page order"
-msgstr "Tćrs sćhifć sýralamasý"
+msgid "Print text as PostScript?"
+msgstr "Mćtni PostScript olaraq yazdýrsýnmý?"
#: ../../printerdrake.pm_.c:285
msgid "Fix stair-stepping text?"
-msgstr "Mćtn pillćli olaraq düzćldilsin mi?"
+msgstr "Mćtn pillćli olaraq düzćldilsinmi?"
-#: ../../printerdrake.pm_.c:288
+#: ../../printerdrake.pm_.c:287
msgid "Number of pages per output pages"
msgstr "Hćr çýxýţ sćhifćsinin nömrćsi"
-#: ../../printerdrake.pm_.c:289
+#: ../../printerdrake.pm_.c:288
msgid "Right/Left margins in points (1/72 of inch)"
msgstr "Sađ/Sol boţluqlar nöqtćvi(inch'in 1/72'si"
-#: ../../printerdrake.pm_.c:290
+#: ../../printerdrake.pm_.c:289
msgid "Top/Bottom margins in points (1/72 of inch)"
msgstr "Üst/Alt boţluqlar nöqtćvi (inch'in 1/72'si"
-#: ../../printerdrake.pm_.c:293
+#: ../../printerdrake.pm_.c:291
msgid "Extra GhostScript options"
msgstr "Ćlavć GhostScript seçćnćklćri"
-#: ../../printerdrake.pm_.c:296
+#: ../../printerdrake.pm_.c:293
msgid "Extra Text options"
msgstr "Ćlavć mćtn seçćnćklćri"
-#: ../../printerdrake.pm_.c:346
-msgid "Printer"
-msgstr "Yazýçý"
+#: ../../printerdrake.pm_.c:295
+msgid "Reverse page order"
+msgstr "Tćrs sćhifć sýralamasý"
-#: ../../printerdrake.pm_.c:347
+#: ../../printerdrake.pm_.c:345
msgid "Would you like to configure a printer?"
-msgstr "Bir yazýçý qurmaq istćyirsiniz mi?"
+msgstr "Bir çap edici qurmaq istćyirsinizmi?"
-#: ../../printerdrake.pm_.c:350
+#: ../../printerdrake.pm_.c:351
msgid ""
"Here are the following print queues.\n"
"You can add some more or change the existing ones."
@@ -6152,39 +6712,38 @@ msgstr ""
"Aţađýda yazýçýdaký növbćlćr verilmiţdir.\n"
"Tćzćlćrini ćlavć edć bilćr, vć ya mövcud olanlarý dćyiţdirć bilćrsiniz."
-#: ../../printerdrake.pm_.c:365
+#: ../../printerdrake.pm_.c:370
msgid "CUPS starting"
msgstr "CUPS baţlayýr"
-#: ../../printerdrake.pm_.c:365
+#: ../../printerdrake.pm_.c:370
msgid "Reading CUPS drivers database..."
msgstr "CUPS sürücü datasý oxunur..."
-#: ../../printerdrake.pm_.c:379 ../../printerdrake.pm_.c:444
-#: ../../printerdrake.pm_.c:457 ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:384 ../../printerdrake.pm_.c:450
+#: ../../printerdrake.pm_.c:471 ../../printerdrake.pm_.c:479
msgid "Select Printer Connection"
-msgstr "Yazýçý Bađlantýsý Seçin"
+msgstr "Çap Edici Bađlantýsý Seçin"
-#: ../../printerdrake.pm_.c:380 ../../printerdrake.pm_.c:458
+#: ../../printerdrake.pm_.c:385 ../../printerdrake.pm_.c:472
msgid "How is the printer connected?"
-msgstr "Yazýçýnýz nć ţćkildć bađlýdýr?"
+msgstr "Çap ediciniz nć ţćkildć bađlýdýr?"
-#: ../../printerdrake.pm_.c:387
+#: ../../printerdrake.pm_.c:392
msgid "Select Remote Printer Connection"
-msgstr "Yazýçý Bađlantýsý Seçin"
+msgstr "Çap Edici Bađlantýsý Seçin"
-#: ../../printerdrake.pm_.c:388
+#: ../../printerdrake.pm_.c:393
msgid ""
"With a remote CUPS server, you do not have to configure\n"
"any printer here; printers will be automatically detected.\n"
"In case of doubt, select \"Remote CUPS server\"."
msgstr ""
"Uzaq CUPS vericilćri üçün heç bir quraţdýrmaya lüzüm yoxdur\n"
-"Buradaký hćr yazýçý avtomatik tapýlacaqdýr.\n"
+"Buradaký hćr çap edici avtomatik tapýlacaqdýr.\n"
"Olmazsa \"Uzaq CUPS vericisi\" ni seçin."
-#: ../../printerdrake.pm_.c:411
-#, fuzzy
+#: ../../printerdrake.pm_.c:416
msgid ""
"With a remote CUPS server, you do not have to configure\n"
"any printer here; printers will be automatically detected\n"
@@ -6192,96 +6751,106 @@ msgid ""
"latter case, you have to give the CUPS server IP address\n"
"and optionally the port number."
msgstr ""
-"Uzaq CUPS vericilćri üçün heç bir quraţdýrmaya lüzüm yoxdur\n"
-"Buradaký hćr yazýçý avtomatik tapýlacaqdýr.\n"
-"Olmazsa \"Uzaq CUPS vericisi\" ni seçin."
+"Uzaq CUPS vericilćri üçün heç bir quraţdýrmaya lüzüm yoxdur \n"
+"Buradaký hćr çap edici avtomatik tapýlacaqdýr. \n"
+"Ćgćr uzaq çap edici vericiniz var ise CUPS vercisinin \n"
+"IP ünvanýný vermćlisiniz. Qapý nömrćsi vacib \n"
+"deyil."
-#: ../../printerdrake.pm_.c:416
-#, fuzzy
+#: ../../printerdrake.pm_.c:421
msgid "CUPS server IP"
-msgstr "SMB verici IP"
+msgstr "CUPS verici IP"
-#: ../../printerdrake.pm_.c:424
+#: ../../printerdrake.pm_.c:429
msgid "Port number should be numeric"
-msgstr ""
+msgstr "Qapý nömrćsi rćqćmlć yazýlmalýdýr"
-#: ../../printerdrake.pm_.c:445 ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:451 ../../printerdrake.pm_.c:480
msgid "Remove queue"
msgstr "Növbćyi sil"
-#: ../../printerdrake.pm_.c:446
+#: ../../printerdrake.pm_.c:454
+msgid ""
+"Name of printer should contains only letters, numbers and the underscore"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:461
msgid ""
"Every printer need a name (for example lp).\n"
"Other parameters such as the description of the printer or its location\n"
"can be defined. What name should be used for this printer and\n"
"how is the printer connected?"
msgstr ""
-"Hćr yazýçýnýn bir adý olmalýdýr (mćsćlćn lp).\n"
-"Yazýçýnýn tćsviri vć yeri dć göstćrilmćlidir.\n"
-"Bu yazýçýnýn adý nćdir vć yeri haradadýr?"
+"Hćr çap edicinin bir adý olmalýdýr (mćsćlćn lp).\n"
+"Çap Edicinin tćsviri vć yeri dć göstćrilmćlidir.\n"
+"Bu çap edicinin adý nćdir vć yeri haradadýr?"
-#: ../../printerdrake.pm_.c:450
+#: ../../printerdrake.pm_.c:465
msgid "Name of printer"
-msgstr "Yazýçý adý"
+msgstr "Çap Edici adý"
-#: ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:466
msgid "Description"
-msgstr "Tćsviri"
+msgstr "Ýzah"
-#: ../../printerdrake.pm_.c:452
+#: ../../printerdrake.pm_.c:467
msgid "Location"
msgstr "Yeri"
-#: ../../printerdrake.pm_.c:465
+#: ../../printerdrake.pm_.c:482
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"
"name and directory should be used for this queue and how is the printer "
"connected?"
msgstr ""
-"Hćr yazýçý növbćsinin (yazýçý iţlćrinin yollandýđý yer) bir adý olar \n"
+"Hćr çap edici növbćsinin (çap edici iţlćrinin yollandýđý yer) bir adý olar \n"
"(çoxunda lp) vć gözlćmć qovluđuna ehtiyac duyar. Bu növbć üçün\n"
"hansý ad vć qovluq istifadć edilsin?"
-#: ../../printerdrake.pm_.c:468
+#: ../../printerdrake.pm_.c:489
msgid "Name of queue"
msgstr "Növbćnin adý"
-#: ../../printerdrake.pm_.c:469
+#: ../../printerdrake.pm_.c:490
msgid "Spool directory"
-msgstr "Gözlćma qovluđu"
+msgstr "Gözlćmć qovluđu"
-#: ../../printerdrake.pm_.c:470
+#: ../../printerdrake.pm_.c:491
msgid "Printer Connection"
-msgstr "Yazýçý Bađlantýsý"
+msgstr "Çap Edici Bađlantýsý"
-#: ../../raid.pm_.c:32
+#: ../../raid.pm_.c:33
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Ţćkillćndirilmiţ RAID md%d'yć disk bölmćsi ćlavć edilć bilinmćdi"
-#: ../../raid.pm_.c:102
+#: ../../raid.pm_.c:103
msgid "Can't write file $file"
-msgstr "$file dosyesinć yazýla bilinmćdi"
+msgstr "$file faylýna yazýla bilinmćdi"
-#: ../../raid.pm_.c:127
+#: ../../raid.pm_.c:128
msgid "mkraid failed"
msgstr "mkraid iflas etdi"
-#: ../../raid.pm_.c:127
+#: ../../raid.pm_.c:128
msgid "mkraid failed (maybe raidtools are missing?)"
-msgstr "mkraid iflas etdi (raidtools ćksik ola bilćr mi?"
+msgstr "mkraid iflas etdi (raidtools ćksik ola bilćrmi?"
-#: ../../raid.pm_.c:143
+#: ../../raid.pm_.c:144
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "%d sćviyyć RAID üçün çatmayan sayda disk bölmćsi\n"
-#: ../../services.pm_.c:15
+#: ../../services.pm_.c:16
+msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
+msgstr ""
+
+#: ../../services.pm_.c:17
msgid "Anacron a periodic command scheduler."
msgstr "Anacron, periodik ćmr zamanlayýcýsý"
-#: ../../services.pm_.c:16
+#: ../../services.pm_.c:18
msgid ""
"apmd is used for monitoring batery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
@@ -6290,7 +6859,7 @@ msgstr ""
"tutmaq üçün istifadć edilir.\n"
"Ayrýca batareya azaldýđýnda sistemi qapatmaq üçün dć istifadć edilir."
-#: ../../services.pm_.c:18
+#: ../../services.pm_.c:20
msgid ""
"Runs commands scheduled by the at command at the time specified when\n"
"at was run, and runs batch commands when the load average is low enough."
@@ -6298,7 +6867,7 @@ msgstr ""
"at ćmri, zamanlanan ćmrlćri iţlćmalćri lazým gćlćn vaxtda iţlćdir.\n"
"Sistem yükü lazými qćdćr alçaq olduđunda yýđma ćmrlćri iţlćdilir."
-#: ../../services.pm_.c:20
+#: ../../services.pm_.c:22
msgid ""
"cron is a standard UNIX program that runs user-specified programs\n"
"at periodic scheduled times. vixie cron adds a number of features to the "
@@ -6308,29 +6877,35 @@ msgstr ""
"cron, istifadćçilćrć xüsusi ćmrlćri periodik olaraq iţć sala bilćn\n"
"standart bir UNIX proqramýdýr. vixie cron, standart cron'a ćlavć edilmiţ bir "
"çox\n"
-"tćzć xüsusiyyćt daxildir."
+"yeni xüsusiyyćt daxildir."
-#: ../../services.pm_.c:23
+#: ../../services.pm_.c:25
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
"operations,\n"
"and includes support for pop-up menus on the console."
msgstr ""
-"GPM, Midnight Commander kimi mćtn tćmćlli uyđulamalara siçan dćstćyi ćlavć "
+"GPM, Midnight Commander kimi mćtn ćsaslý uyđulamalara siçan dćstćyi ćlavć "
"edćr.\n"
"Ayrýca konsolda siçanla kćsmć vć yapýţdýrma ćmaliyyatlarýna da imkan verćr.\n"
-"Konsolda pop-up menü dćstćyi verćr."
+"Konsolda pop-up menyu dćstćyi verćr."
-#: ../../services.pm_.c:26
+#: ../../services.pm_.c:28
+msgid ""
+"HardDrake runs a hardware probe, and optionally configures\n"
+"new/changed hardware."
+msgstr ""
+
+#: ../../services.pm_.c:30
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files\n"
"and CGI."
msgstr ""
-"Apache bir World Wide Web vericisidir. HTML dosyelćri vć CGI "
-"verilmćsiüçünistifadć edilir."
+"Apache bir World Wide Web vericisidir. HTML fayllarý vć CGI verilmćsi üçün "
+"istifadć edilir."
-#: ../../services.pm_.c:28
+#: ../../services.pm_.c:32
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
@@ -6345,7 +6920,13 @@ msgstr ""
"inetd'yi sistemden çýxarmaq, onun mćs'ul olduđu bütün xidmćtlćri\n"
"rćdd etmćk mćnasýný daţýyýr."
-#: ../../services.pm_.c:32
+#: ../../services.pm_.c:36
+msgid ""
+"Launch packet filtering for Linux kernel 2.2 series, to set\n"
+"up a firewall to protect your machine from network attacks."
+msgstr ""
+
+#: ../../services.pm_.c:38
msgid ""
"This package loads the selected keyboard map as set in\n"
"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
@@ -6353,18 +6934,40 @@ msgid ""
msgstr ""
"Bu paket /etc/sysconfig/keyboard'daký seçili klaviatura düzülüţünü yüklćr.\n"
"Hansý klaviatura düzülüţü istifadć edilćcćyi kbdconfig ilć seçilir.\n"
-"Bu, mandrake qurulan bir çox bilgisayarda aktiv buraxýlmalýdýr."
+"Bu, mandrake qurulan bir çox kompüterdć fćal buraxýlmalýdýr."
-#: ../../services.pm_.c:35
+#: ../../services.pm_.c:41
+msgid ""
+"Automatic regeneration of kernel header in /boot for\n"
+"/usr/include/linux/{autoconf,version}.h"
+msgstr ""
+
+#: ../../services.pm_.c:43
+msgid "Automatic detection and configuration of hardware at boot."
+msgstr ""
+
+#: ../../services.pm_.c:44
+msgid ""
+"Linuxconf will sometimes arrange to perform various tasks\n"
+"at boot-time to maintain the system configuration."
+msgstr ""
+
+#: ../../services.pm_.c:46
msgid ""
"lpd is the print daemon required for lpr to work properly. It is\n"
"basically a server that arbitrates print jobs to printer(s)."
msgstr ""
-"lpd, lpr'nin düzgün olaraq iţlćmćsi üçün lazými yazýçý aracýsýdýr.\n"
-"lpd ćsasćn, yazdýrma vćzifćlćrini idarć edćn vć onlarý yazýçýya göndćrćn "
+"lpd, lpr'nin düzgün olaraq iţlćmćsi üçün lazými çap edici vasitćsidir.\n"
+"lpd ćsasćn, yazdýrma vćzifćlćrini idarć edćn vć onlarý çap ediciyć göndćrćn "
"vericidir."
-#: ../../services.pm_.c:37
+#: ../../services.pm_.c:48
+msgid ""
+"Linux Virtual Server, used to build a high-performance and highly\n"
+"available server."
+msgstr ""
+
+#: ../../services.pm_.c:50
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
"host names to IP addresses."
@@ -6372,43 +6975,52 @@ msgstr ""
"named (BIND) verici adlarono IP ünvanlarýna çevirćn\n"
"Sahć Adý Vericisidir(DNS)."
-#: ../../services.pm_.c:39
+#: ../../services.pm_.c:52
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
msgstr ""
-"Bütün Network Dosye Sistemlćrini (NFS), SMB (Lan Manager/Windows), vć \n"
+"Bütün Ţćbćkć Fayl Sistemlćrini (NFS), SMB (Lan Manager/Windows), vć \n"
"NCP (NetWare) bađlama nöqtćlćrini bađlar vć ayýrýr."
-#: ../../services.pm_.c:41
+#: ../../services.pm_.c:54
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
msgstr ""
-"Açýlýţ sýrasýnda baţlamaq üçün qurulmuţ bütün network ara üzlćrini "
-"aktivlćţdirir ya da qapatýr."
+"Açýlýţ sýrasýnda baţlamaq üçün qurulmuţ bütün ţćbćkć axtar üzlćrini "
+"fćallaţdýrýr ya da qapatýr."
-#: ../../services.pm_.c:43
+#: ../../services.pm_.c:56
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
"This service provides NFS server functionality, which is configured via the\n"
"/etc/exports file."
msgstr ""
-"NFS TCP/IP networklarýnda dosye bölüţülmćsi üçün istifadć edilćn mćţhur bir "
+"NFS TCP/IP ţćbćkćlćrindć fayl bölüţülmćsi üçün istifadć edilćn mćţhur bir "
"protokoldur.\n"
-"Bu xidmćt, /etc/exports dosyesindć qurđularý olan NFS vericisinin\n"
+"Bu xidmćt, /etc/exports faylýnda qurđularý olan NFS vericisinin\n"
"istifadćsinć imkan verćr."
-#: ../../services.pm_.c:46
+#: ../../services.pm_.c:59
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP\n"
"networks. This service provides NFS file locking functionality."
msgstr ""
-"NFS TCP/IP networklarýnda dosye bölüţülmasi üçün istifadć edilćn mćţhur bir "
-"\n"
-"protokoldur. Bu xidmćt NFS dosye qýfýlý istifadćsinć imkan verćr."
+"NFS TCP/IP ţćbćkćlćrindć fayl bölüţülmasi üçün istifadć edilćn mćţhur bir \n"
+"protokoldur. Bu xidmćt NFS fayl qýfýlý istifadćsinć imkan verćr."
-#: ../../services.pm_.c:48
+#: ../../services.pm_.c:61
+msgid ""
+"Automatically switch on numlock key locker under console\n"
+"and XFree at boot."
+msgstr ""
+
+#: ../../services.pm_.c:63
+msgid "Support the OKI 4w and compatible winprinters."
+msgstr ""
+
+#: ../../services.pm_.c:64
msgid ""
"PCMCIA support is usually to support things like ethernet and\n"
"modems in laptops. It won't get started unless configured so it is safe to "
@@ -6417,10 +7029,10 @@ msgid ""
msgstr ""
"PCMCIA dćstćyi, laptoplarda ethernet vć modem kimi "
"avadanlýqlarýndćstćklanmasinć imkan verćr.\n"
-"Qurulmadýđý vaxtda açýlýţda iţlamćz, iţlamćsinć ehtiyacolmayan\n"
-"bilgisayarlarda qurulu olmasý problem yaratmaz."
+"Qurulmadýđý vaxtda açýlýţda iţlamćz, iţlćmćsinć ehtiyac olmayan\n"
+"kompüterlćrdć qurulu olmasý problem yaratmaz."
-#: ../../services.pm_.c:51
+#: ../../services.pm_.c:67
msgid ""
"The portmapper manages RPC connections, which are used by\n"
"protocols such as NFS and NIS. The portmap server must be running on "
@@ -6429,17 +7041,17 @@ msgid ""
msgstr ""
"portmapper, NFS ve NIS kimi protokollar tćrćfindćn istifadć edilćn RPC \n"
"bađlantýlarýný tćţkilatlandýrý. Portmap vericisi RPC mexanizmini iţlćdćn\n"
-"protokollarla xidmćt edćn bilgisayarlarda qurulmalýdýr vć iţladilmćlidir."
+"protokollarla xidmćt edćn kompüterlćrdć qurulmalýdýr vć iţlćdilmćlidir."
-#: ../../services.pm_.c:54
+#: ../../services.pm_.c:70
msgid ""
"Postfix is a Mail Transport Agent, which is the program that\n"
"moves mail from one machine to another."
msgstr ""
-"Posfix, elektronik mćktublarýn bir bilgisayardan digćrinć yollayan \n"
-"Elektronik Mćktub Yollama Aracýsýdr."
+"Posfix, elektronik mćktublarýn bir kompüterdćn digćrinć yollayan \n"
+"Elektronik Mćktub Yollama Vasitćsidir."
-#: ../../services.pm_.c:56
+#: ../../services.pm_.c:72
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
@@ -6447,100 +7059,118 @@ msgstr ""
"Yüksćk keyfiyyćt tćsadüfi rćqćm istehsal edćn sistem entropi hovuzunun \n"
"saxlanmasý vć yenidćn köhnć halýna gćtirilmćsinć imkan verćr."
-#: ../../services.pm_.c:58
+#: ../../services.pm_.c:74
+msgid ""
+"Assign raw devices to block devices (such as hard drive\n"
+"partitions), for the use of applications such as Oracle"
+msgstr ""
+
+#: ../../services.pm_.c:76
msgid ""
"The routed daemon allows for automatic IP router table updated via\n"
"the RIP protocol. While RIP is widely used on small networks, more complex\n"
"routing protocols are needed for complex networks."
msgstr ""
-"routed aracýsý avtomatik IP router cćdvćlinin RIP protokolu tćrćfindćn\n"
-"tćzćlćnmćsinć imkan verćr. RIP ćsasćn kiçik networklarda istifadć edilir, "
+"routed vasitćsi avtomatik IP router cćdvćlinin RIP protokolu tćrćfindćn\n"
+"yenilćnmćsinć imkan verćr. RIP ćsasćn kiçik ţćbćkćlćrdć istifadć edilir, "
"daha böyük\n"
-"networklarda daha qarýţýq routing protokollarýna ehtiyacý vardýr."
+"ţćbćkćlćrdć daha qarýţýq routing protokollarýna ehtiyacý vardýr."
-#: ../../services.pm_.c:61
+#: ../../services.pm_.c:79
msgid ""
"The rstat protocol allows users on a network to retrieve\n"
"performance metrics for any machine on that network."
msgstr ""
"rstat protokolu bir networkdaký istifadćçilćrin o networkdaký hćr hansý bir\n"
-"bilgisayar haqqýndaký qabiliyyćt ölçülari ala bilmalćrina imkan verćr."
+"kompüter haqqýndaký qabiliyyćt ölçülćri ala bilmalćrinć imkan verćr."
-#: ../../services.pm_.c:63
+#: ../../services.pm_.c:81
msgid ""
"The rusers protocol allows users on a network to identify who is\n"
"logged in on other responding machines."
msgstr ""
"rusers protokolu bir networkdaký istifadćçilćrin o networkdaký "
-"bilgisayarlarda\n"
-"iţlayćn istifadćçilćri görmayinizć imkan verćr."
+"kompüterlćrdć\n"
+"iţlayćn istifadćçilćri görmćyinizć imkan verćr."
-#: ../../services.pm_.c:65
+#: ../../services.pm_.c:83
msgid ""
"The rwho protocol lets remote users get a list of all of the users\n"
"logged into a machine running the rwho daemon (similiar to finger)."
msgstr ""
-"rwho protokolu, uzaq istifadćçilćrin, rwho aracýsý iţlćdćn bir bilgisayarda\n"
+"rwho protokolu, uzaq istifadćçilćrin, rwho vasitćsi iţlćdćn bir kompüterdć\n"
"olan bütün istifadaçilari görmalarina imkan verćr."
-#: ../../services.pm_.c:67
+#: ../../services.pm_.c:85
+#, fuzzy
+msgid "Launch the sound system on your machine"
+msgstr "Açýlýţda X-Window sistemini baţlat"
+
+#: ../../services.pm_.c:86
msgid ""
"Syslog is the facility by which many daemons use to log messages\n"
"to various system log files. It is a good idea to always run syslog."
msgstr ""
-"Syslog, bir çox aracýnýn mesajlarýný müxtćlif sistem qeydlćrindć\n"
+"Syslog, bir çox vasitćnin ismarýclarýný müxtćlif sistem qeydlćrindć\n"
"tutmalarýna imkan verćr. Syslog'un hćr zaman iţlćmćsi\n"
"yaxţý fikirdir."
-#: ../../services.pm_.c:69
-msgid "This startup script try to load your modules for your usb mouse."
+#: ../../services.pm_.c:88
+msgid "Load the drivers for your usb devices."
msgstr ""
-"Bu açýlýţ scripti usb siçanýnýz üçün lazými modullarýn yüklanmćsinć imkan "
-"verćr."
-#: ../../services.pm_.c:70
-msgid "Starts and stops the X Font Server at boot time and shutdown."
+#: ../../services.pm_.c:89
+#, fuzzy
+msgid "Starts the X Font Server (this is mandatory for XFree to run)."
msgstr ""
-"X Font Vericisini açýlýţda iţć salar vć bilgisayar qapatýlduđýnda da "
+"X Font Vericisini açýlýţda iţć salar vć kompüter qapatýlduđýnda da "
"dayandýrýr."
-#: ../../services.pm_.c:99
+#: ../../services.pm_.c:118
msgid "Choose which services should be automatically started at boot time"
msgstr "Açýlýţda avtomatik olaraq baţlayacaq xidmćtlćri seçin"
-#: ../../standalone/diskdrake_.c:61
+#: ../../services.pm_.c:137
+msgid "running"
+msgstr "iţlćmir"
+
+#: ../../services.pm_.c:137
+msgid "stopped"
+msgstr "iţlćmirćlavć et"
+
+#: ../../services.pm_.c:151
+msgid "Services and deamons"
+msgstr "Xidmćtlćr vć vasitćlćr"
+
+#: ../../services.pm_.c:156
+msgid ""
+"No additionnal information\n"
+"about this service, sorry."
+msgstr ""
+"Bu xidmćt haqqýnda tććsüf ki,\n"
+"ćlavć mć'lumat yoxdur."
+
+#: ../../services.pm_.c:163
+msgid "On boot"
+msgstr "Açýlýţda"
+
+#: ../../standalone/diskdrake_.c:67
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
msgstr ""
"Bölmć cćdvćlini oxuya bilmirćm, dćyćsćn biraz xarab olub:-(\n"
-"Xarab olmuţ hissćlćri düzćltmćyć cćhd edćcćm"
-
-#: ../../standalone/drakboot_.c:25
-msgid "Configure LILO/GRUB"
-msgstr "LILO/GRUB'u Quraţdýr"
-
-#: ../../standalone/drakboot_.c:26
-msgid "Create a boot floppy"
-msgstr "Açýlýţ disketi yarat"
-
-#: ../../standalone/drakboot_.c:28
-msgid "Format floppy"
-msgstr "Disketi ţćkillćndir"
-
-#: ../../standalone/drakboot_.c:40
-msgid "Choice"
-msgstr "Seçki"
+"Xćsćrli hissćlćri düzćltmćyć cćhd edćcćm"
-#: ../../standalone/drakboot_.c:59
-msgid "Installation of LILO failed. The following error occured:"
-msgstr "LILO qurulumu iflas etdi. Olan xćta:"
+#: ../../standalone/drakgw_.c:37 ../../standalone/drakgw_.c:180
+msgid "Internet Connection Sharing"
+msgstr "Ýnternet Bađlantýsý Bölüţdürülmćsi"
-#: ../../standalone/drakgw_.c:103
+#: ../../standalone/drakgw_.c:118
msgid "Internet Connection Sharing currently enabled"
-msgstr "Ýnternet Bađlantýsý Bölüţdürülmćsi aktivlćţdirildi"
+msgstr "Ýnternet Bađlantýsý Bölüţdürülmćsi fćallaţdýrýldý"
-#: ../../standalone/drakgw_.c:104
+#: ../../standalone/drakgw_.c:119
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -6552,24 +7182,31 @@ msgstr ""
"\n"
"Nć etmćk istćyirsiniz?"
-#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:108
+#: ../../standalone/drakgw_.c:123
msgid "disable"
msgstr "passivlćţdir"
-#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:118
-#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:137
+#: ../../standalone/drakgw_.c:123 ../../standalone/drakgw_.c:148
msgid "dismiss"
msgstr "keç"
-#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:126
+#: ../../standalone/drakgw_.c:123 ../../standalone/drakgw_.c:148
msgid "reconfigure"
-msgstr "tćzćdćn quraţdýr"
+msgstr "yenidćn quraţdýr"
+
+#: ../../standalone/drakgw_.c:126
+msgid "Disabling servers..."
+msgstr "Vericilćr bađlanýr..."
-#: ../../standalone/drakgw_.c:122
+#: ../../standalone/drakgw_.c:134
+msgid "Internet connection sharing is now disabled."
+msgstr "Ýnternet Bađlantýsý Bölüţdürülmćsi indi bađlandý"
+
+#: ../../standalone/drakgw_.c:143
msgid "Internet Connection Sharing currently disabled"
msgstr "Ýnternet Bađlantýsý Bölüţdürülmćsi passivlćţdirildi"
-#: ../../standalone/drakgw_.c:123
+#: ../../standalone/drakgw_.c:144
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -6581,111 +7218,121 @@ msgstr ""
"\n"
"Nć etmćk istćyirsiniz?"
-#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:127
+#: ../../standalone/drakgw_.c:148
msgid "enable"
-msgstr "aktivlćţdir"
+msgstr "fćallaţdýr"
+
+#: ../../standalone/drakgw_.c:155
+msgid "Enabling servers..."
+msgstr "Xidmćtlćr fćallaţdýrýlýr..."
-#: ../../standalone/drakgw_.c:141
+#: ../../standalone/drakgw_.c:160
+msgid "Internet connection sharing is now enabled."
+msgstr "Ýnternet Bađlantýsý Bölüţdürülmćsi indi açýldý"
+
+#: ../../standalone/drakgw_.c:168
msgid "Config file content could not be interpreted."
-msgstr "Quraţdýrma dosyesinin içindćkilćrlć oynanýlmaz"
+msgstr "Quraţdýrma faylýnýn içindćkilćrlć oynanýlmaz"
-#: ../../standalone/drakgw_.c:151
-msgid "Internet Connection Sharing"
-msgstr "Ýnternet Bađlantýsý Bölüţdürülmćsi"
+#: ../../standalone/drakgw_.c:168
+msgid "Unrecognized config file"
+msgstr "Tanýnmaz quraţdýrma faylý"
-#: ../../standalone/drakgw_.c:152
+#: ../../standalone/drakgw_.c:181
+#, fuzzy
msgid ""
-"Your computer can be configured to share its Internet connection.\n"
+"You are about to configure your computer to share its Internet connection.\n"
+"With that feature, other computers on your local network will be able to use "
+"this computer's Internet connection.\n"
"\n"
"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN).\n"
-"\n"
-"Would you like to setup the Internet Connection Sharing?"
+"(LAN)."
msgstr ""
-"Bilgisayarýnýz Ýnternet bađlantýsýný bölüţdürmćk üçün qurula bilćr\n"
+"Kompüterýnýzi Ýnternet bađlantýsýný bölüţdürmćk üçün quraţdýrýrsýnýz.\n"
"\n"
-"Xćbćdarlýq: Yerli Network (LAN) qurmaq üçün uyđun Network Adapterinć "
-"ehtiyacýnýz var.\n"
-"\n"
-"Ýnternet Bađlantýsý Bölüţdürülmćsini qurmaq istayirsiniz mi?"
+"Xćbćdarlýq: Yerli Ţćbćkć (LAN) qurmaq üçün uyđun Ţćbćkć Adapterinć "
+"ehtiyacýnýz var."
-#: ../../standalone/drakgw_.c:177
-msgid "using module"
-msgstr "modul istifadć edilir"
+#: ../../standalone/drakgw_.c:207
+#, c-format
+msgid "Interface %s (using module %s)"
+msgstr "Ara Üz %s (%s modulu iţlćdilir)"
-#: ../../standalone/drakgw_.c:210
+#: ../../standalone/drakgw_.c:208
+#, c-format
+msgid "Interface %s"
+msgstr "Ara üz %s"
+
+#: ../../standalone/drakgw_.c:216
msgid "No network adapter on your system!"
-msgstr "Siseminizdć network adapteri yoxdur!"
+msgstr "Siseminizdć ţćbćkć adapteri yoxdur!"
-#: ../../standalone/drakgw_.c:211
+#: ../../standalone/drakgw_.c:217
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
-"Sistgeminizdć network kartý tapýla bilmćyib.Avadanlýđý quran aracýyýiţć "
-"salýn."
+"Sisteminizdć ţćbćkć kartý tapýla bilmćyib.Avadanlýđý quran aracýyý iţć salýn."
-#: ../../standalone/drakgw_.c:218
+#: ../../standalone/drakgw_.c:224
+#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
"\n"
-"$interface\n"
+"%s\n"
"\n"
-"Would you like to setup your Local Area Network with that adapter?"
+"I am about to setup your Local Area Network with that adapter."
msgstr ""
-"Sistemnizdć bir dćnć qurulmuţ network adapteri var:\n"
+"Sistemnizdć bir dćnć qurulmuţ ţćbćkć adapteri var:\n"
"\n"
-"$interface\n"
+"%s\n"
"\n"
-"Yerli Network adapterinizi qurmaq istćyirsiniz mi?"
+"Yerli Ţćbćkć adapterinizi qurmaq üzćrćyćm?"
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:233
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
-msgstr "Sizi Yerli Networka bađlayacaq adapteri seçin"
+msgstr "Sizi Yerli Ţćbćkćyć bađlayacaq adapteri seçin"
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:242
msgid ""
-"Warning, the network adapter is already configured.\n"
-"Would you like to reconfigure?"
-msgstr ""
-"DÝqqćt, network adapteriniz onsuz da qurulub.\n"
-"Tćzćdćn mi qurmaq istćyirsiniz?"
+"Warning, the network adapter is already configured. I will reconfigure it."
+msgstr "DÝqqćt, ţćbćkć adapteriniz onsuz da qurulub. Yenidćn quracam."
-#: ../../standalone/drakgw_.c:258
+#: ../../standalone/drakgw_.c:253
msgid "Potential LAN address conflict found in current config of $_!\n"
-msgstr "$_ dć mühtamćl bir LAN ünvan çaxýţmasý tapýldý!\n"
+msgstr "$_ dć mühtćmćl bir LAN ünvan çaxýţmasý tapýldý!\n"
-#: ../../standalone/drakgw_.c:268
+#: ../../standalone/drakgw_.c:261 ../../standalone/drakgw_.c:267
msgid "Firewalling configuration detected!"
msgstr "Oddan divar (Firewall) quruluţu tapýldý!"
-#: ../../standalone/drakgw_.c:269
+#: ../../standalone/drakgw_.c:262 ../../standalone/drakgw_.c:268
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation. Proceed?"
+"need some manual fix after installation."
msgstr ""
-"Diqqćt! Var olan Firewall qurđusu tapýldý. Yüklćmćdćn sonra bir az ćl "
-"gćzdirć bilćrsiniz.Davam edim mi?"
-
-#: ../../standalone/drakgw_.c:282
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr "Scriptlć qurulur, yazýlým yüklćnir, xidmćtlćr baţladýlýr..."
+"Diqqćt! Var olan \"Firewall\" qurđusu tapýldý. Yüklćmćdćn sonra bir az ćl "
+"gćzdirć bilćrsiniz."
-#: ../../standalone/drakgw_.c:282
+#: ../../standalone/drakgw_.c:276
msgid "Configuring..."
msgstr "Quraţdýrýlýr..."
-#: ../../standalone/drakgw_.c:313
-msgid "Problems installing package $bin2rpm{$_}"
-msgstr "$bin2rpm{$_} yüklćnirkćn xćta oldu"
+#: ../../standalone/drakgw_.c:277
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr "Scriptlć qurulur, proqram tć'minatý yüklćnir, xidmćtlćr baţladýlýr..."
+
+#: ../../standalone/drakgw_.c:307
+msgid "Problems installing package $_"
+msgstr "$_ yüklćnirkćn xćta oldu"
-#: ../../standalone/drakgw_.c:504
+#: ../../standalone/drakgw_.c:590
msgid "Congratulations!"
msgstr "Tćbriklćr!"
-#: ../../standalone/drakgw_.c:505
+#: ../../standalone/drakgw_.c:591
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -6693,10 +7340,259 @@ msgid ""
msgstr ""
"Hćr ţey quruldu.\n"
"Ýndi isć Ýnternet bađlantýnýzý yerli networkdaký baţqa ilgisayarlar ilć "
-"bölüţdürć bilćrsiniz, bunun üçün isć avtomatik network quraţdýrýlmasý (DHCP) "
+"bölüţdürć bilćrsiniz, bunun üçün isć avtomatik ţćbćkć quraţdýrýlmasý (DHCP) "
"iţlćdilir."
-#: ../../standalone/draksec_.c:28
+#: ../../standalone/drakgw_.c:608
+msgid "The setup has already been done, but it's currently disabled."
+msgstr "Quraţdýrma artýq qurtarýbdýr, amma fćaliyyćti dayandýrýlýb."
+
+#: ../../standalone/drakgw_.c:609
+msgid "The setup has already been done, and it's currently enabled."
+msgstr "Quraţdýrma artýq qurtarýbdýr vć fćaliyyćtdćdir."
+
+#: ../../standalone/drakgw_.c:610
+msgid "No Internet Connection Sharing has ever been configured."
+msgstr "Ýnternet Bađlantýsý Bölüţdürmć Quraţdýrmasý aparýlmayýb."
+
+#: ../../standalone/drakgw_.c:615
+#, fuzzy
+msgid "Internet connection sharing configuration"
+msgstr "Ýnternet bađlantýsý & quraţdýrýlmasý"
+
+#: ../../standalone/drakgw_.c:622
+#, fuzzy, c-format
+msgid ""
+"Welcome to the Internet Connection Sharing utility!\n"
+"\n"
+"%s\n"
+"\n"
+"Click on Configure to launch the setup wizard."
+msgstr ""
+"Ýnternet Bađlantýsý Bölüţdürmć vasitćsinć Xoţ Gćldiniz!\n"
+"\n"
+"%s\n"
+"\n"
+"Quraţdýrma sehirbazýný açmaq üçün ``OLDU''ya týqlayýn."
+
+#: ../../standalone/draknet_.c:59
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Ţćbćkć quraţdýrýlmasý (%d adapter)"
+
+#: ../../standalone/draknet_.c:66 ../../standalone/draknet_.c:537
+msgid "Profile: "
+msgstr "Profil: "
+
+#: ../../standalone/draknet_.c:74
+msgid "Del profile..."
+msgstr "Profili sil..."
+
+#: ../../standalone/draknet_.c:80
+msgid "Profile to delete:"
+msgstr "Silinćcćk profil:"
+
+#: ../../standalone/draknet_.c:108
+msgid "New profile..."
+msgstr "Yeni profil..."
+
+#: ../../standalone/draknet_.c:114
+msgid "Name of the profile to create:"
+msgstr "Yaradýlacaq profil adý:"
+
+#: ../../standalone/draknet_.c:140
+msgid "Hostname: "
+msgstr "Ev sahibi adý:"
+
+#: ../../standalone/draknet_.c:147
+msgid "Internet access"
+msgstr "Ýnternet imkaný"
+
+#: ../../standalone/draknet_.c:160
+msgid "Type:"
+msgstr "Növ: "
+
+#: ../../standalone/draknet_.c:163 ../../standalone/draknet_.c:354
+msgid "Gateway:"
+msgstr "Keçit:"
+
+#: ../../standalone/draknet_.c:163 ../../standalone/draknet_.c:354
+msgid "Interface:"
+msgstr "Ara üz"
+
+#: ../../standalone/draknet_.c:168
+msgid "Status:"
+msgstr "Hal:"
+
+#: ../../standalone/draknet_.c:170 ../../standalone/draknet_.c:357
+#: ../../standalone/net_monitor_.c:122 ../../standalone/net_monitor_.c:224
+msgid "Connected"
+msgstr "Bađlandý"
+
+#: ../../standalone/draknet_.c:170 ../../standalone/draknet_.c:357
+#: ../../standalone/net_monitor_.c:83 ../../standalone/net_monitor_.c:122
+#: ../../standalone/net_monitor_.c:224
+msgid "Not connected"
+msgstr "Bađlý deyil"
+
+#: ../../standalone/draknet_.c:173 ../../standalone/draknet_.c:358
+msgid "Connect..."
+msgstr "Bađlan..."
+
+#: ../../standalone/draknet_.c:173 ../../standalone/draknet_.c:358
+msgid "Disconnect..."
+msgstr "Bađlantýný Kćs..."
+
+#: ../../standalone/draknet_.c:191
+#, fuzzy
+msgid "Starting your connection..."
+msgstr "Bađlantýnýz sýnanýr..."
+
+#: ../../standalone/draknet_.c:199
+msgid "Closing your connection..."
+msgstr "Bađlantýnýz kćsilir..."
+
+#: ../../standalone/draknet_.c:204
+msgid ""
+"The connection is not closed.\n"
+"Try to do it manually by running\n"
+"/etc/sysconfig/network-scripts/net_cnx_down\n"
+"in root."
+msgstr ""
+"Bađlantý kćsildi. Buna ćllć kökdć\n"
+"/etc/sysconfig/network-scripts/net_cnx_down\n"
+"ćmrini icra edćrćk nail ola bilćrsiniz."
+
+#: ../../standalone/draknet_.c:207
+msgid "The system is now disconnected."
+msgstr "Sistem indi bađlantýsýný kćsib."
+
+#: ../../standalone/draknet_.c:219
+msgid "Configure Internet Access..."
+msgstr "Ýnternet keçiţini Qur..."
+
+#: ../../standalone/draknet_.c:226 ../../standalone/draknet_.c:409
+msgid "LAN configuration"
+msgstr "Yerli Ţćbćkć quraţdýrýlmasý"
+
+#: ../../standalone/draknet_.c:231
+msgid "Adapter"
+msgstr "Adapter"
+
+#: ../../standalone/draknet_.c:231
+msgid "Driver"
+msgstr "Sürücü"
+
+#: ../../standalone/draknet_.c:231
+msgid "Interface"
+msgstr "Ara üz"
+
+#: ../../standalone/draknet_.c:231
+msgid "Protocol"
+msgstr "Protokol"
+
+#: ../../standalone/draknet_.c:250
+msgid "Configure Local Area Network..."
+msgstr "Yerli Ţćbćkćni Quraţdýr..."
+
+#: ../../standalone/draknet_.c:283
+msgid "Normal Mode"
+msgstr "Normal Mod"
+
+#: ../../standalone/draknet_.c:288
+msgid "Apply"
+msgstr "Ćlavć Et"
+
+#: ../../standalone/draknet_.c:307
+msgid "Please Wait... Applying the configuration"
+msgstr "Lütdćn Gözlćyin... Qurđular ćlavć edilir"
+
+#: ../../standalone/draknet_.c:389
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/draknet_.c:413
+msgid "LAN Configuration"
+msgstr "Yerli Ţćbćkć Quraţdýrýlmasý"
+
+#: ../../standalone/draknet_.c:421
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "%s Adapteri: %s"
+
+#: ../../standalone/draknet_.c:427
+msgid "Boot Protocol"
+msgstr "Açýlýţ Protokolu"
+
+#: ../../standalone/draknet_.c:428
+msgid "Started on boot"
+msgstr "Açýlýţda baţladýlýr"
+
+#: ../../standalone/draknet_.c:429
+msgid "DHCP client"
+msgstr "DHCP alýcýsý"
+
+#: ../../standalone/draknet_.c:464 ../../standalone/draknet_.c:468
+msgid "Disable"
+msgstr "Bađla"
+
+#: ../../standalone/draknet_.c:464 ../../standalone/draknet_.c:468
+msgid "Enable"
+msgstr "Aç"
+
+#: ../../standalone/draknet_.c:502
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/draknet_.c:526
+msgid "Internet connection configuration"
+msgstr "Ýnternet bađlantýsý quraţdýrýlmasý"
+
+#: ../../standalone/draknet_.c:530
+msgid "Internet Connection Configuration"
+msgstr "Ýnternet Bađlantýsý Quraţdýrýlmasý"
+
+#: ../../standalone/draknet_.c:539
+msgid "Connection type: "
+msgstr "Bađlantý növü:"
+
+#: ../../standalone/draknet_.c:545
+msgid "Parameters"
+msgstr "Parametrlćr"
+
+#: ../../standalone/draknet_.c:558
+msgid "Provider dns 1 (optional)"
+msgstr "Dns xidmćtcisi 1 (arzuya görć)"
+
+#: ../../standalone/draknet_.c:559
+msgid "Provider dns 2 (optional)"
+msgstr "Dnsxidmćtcisi 2 (arzuya görć)"
+
+#: ../../standalone/draknet_.c:572
+msgid "Ethernet Card"
+msgstr "Eternet Kartý"
+
+#: ../../standalone/draknet_.c:573
+msgid "DHCP Client"
+msgstr "DHCP Alýcýsý"
+
+#: ../../standalone/draksec_.c:21
+msgid "Welcome To Crackers"
+msgstr "Krakerlćrć xoţgćlmiţsiniz"
+
+#: ../../standalone/draksec_.c:22
+msgid "Poor"
+msgstr "Zćif"
+
+#: ../../standalone/draksec_.c:26
+msgid "Paranoid"
+msgstr "Ţübhćci"
+
+#: ../../standalone/draksec_.c:29
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -6704,64 +7600,72 @@ msgid ""
msgstr ""
"Bu sćviyyć RAID'i diqqćtli istifadćizi tövsiyć edirik. Sisteminiz daha "
"asand\n"
-"iţladilćcćk, ancaq xćtalara qarţý da hćssaiyyćti dć artacaqdýr. Ýnternetć \n"
+"iţlćdilćcćk, ancaq xćtalara qarţý da hćssaiyyćti dć artacaqdýr. Ýnternetć \n"
"bađlý isćniz bunu tövsiyć etmirik. Parol ilć girilir."
-#: ../../standalone/draksec_.c:31
+#: ../../standalone/draksec_.c:32
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
-"Parollar aktivlćţdirildi, yenć dć bir network üstündć istifadć edilmćmćsi "
-"tövsiyćedilir."
+"Parollar fćallaţdýrýldý, yenć dć bir network üstündć istifadć edilmćmćsi "
+"tövsiyć edilir."
-#: ../../standalone/draksec_.c:32
+#: ../../standalone/draksec_.c:33
msgid ""
"Few improvements for this security level, the main one is that there are\n"
"more security warnings and checks."
msgstr ""
-"Bu mühafizć sćviyyćsi üçün ćlavć olaraq artýrýlmýţ mühafizć xćbćrdarlýđý vć "
-"\n"
+"Bu tćhlükćsizlik sćviyyćsi üçün ćlavć olaraq artýrýlmýţ tćhlükćsizlik "
+"xćbćrdarlýđý vć \n"
"yoxlama var."
-#: ../../standalone/draksec_.c:34
+#: ../../standalone/draksec_.c:35
msgid ""
"This is the standard security recommended for a computer that will be used\n"
"to connect to the Internet as a client. There are now security checks. "
msgstr ""
-"Ýnternet'e bađlý bir bilgisayar üçün standart vć tövsiyć edilćn bir "
-"mühafizćsćviyyćsidir."
+"Ýnternet'e bađlý bir kompüter üçün standart vć tövsiyć edilćn bir "
+"tćhlükćsizlik sćviyyćsidir."
-#: ../../standalone/draksec_.c:36
+#: ../../standalone/draksec_.c:37
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
"The security is now high enough to use the system as a server which accept\n"
"connections from many clients. "
msgstr ""
-"Bu mühafizć sćviyyasiylć sistemin bir verici olaraq istifadćsi mümkündür. \n"
-"Mühafizć, birdćn çox alýcýnýn bađlanmasýna icazć verćcćk ţćkildć "
+"Bu tćhlükćsizlik sćviyyasiylć sistemin bir verici olaraq istifadćsi "
+"mümkündür. \n"
+"Tćhlükćsizlik, birdćn çox alýcýnýn bađlanmasýna icazć verćcćk ţćkildć "
"artýrýlmýţdýr. "
-#: ../../standalone/draksec_.c:39
+#: ../../standalone/draksec_.c:40
msgid ""
"We take level 4 features, but now the system is entirely closed.\n"
"Security features are at their maximum."
-msgstr "Sistem xarici bađlantýlara qarţý tamamilć qapalýdýr."
+msgstr ""
+" Biz dördüncü sćviyyć haqqlarýný verdik vć sistem xarici bađlantýlara qarţý "
+"tamamilć qapalýdýr.\n"
+"Tćhlükćsizlik sćviyyćsi indi ćn üstdćdir."
-#: ../../standalone/draksec_.c:49
+#: ../../standalone/draksec_.c:52
msgid "Setting security level"
-msgstr "Mühafizć sćviyyćsinin quraţdýrýlmasý"
+msgstr "Tćhlükćsizlik sćviyyćsinin quraţdýrýlmasý"
-#: ../../standalone/drakxconf_.c:21
+#: ../../standalone/drakxconf_.c:44
+msgid "Control Center"
+msgstr "Ýdarć Mćrkćzi"
+
+#: ../../standalone/drakxconf_.c:45
msgid "Choose the tool you want to use"
msgstr "Ýstifadć edćcćyiniz aracýyý seçin"
-#: ../../standalone/keyboarddrake_.c:14
-msgid "usage: keyboarddrake [--expert]\n"
-msgstr "istifadć qaydasý: keyboarddrake [--expert]\n"
+#: ../../standalone/keyboarddrake_.c:16
+msgid "usage: keyboarddrake [--expert] [keyboard]\n"
+msgstr "istifadć qaydasý: keyboarddrake [--expert] [klavatura]\n"
-#: ../../standalone/keyboarddrake_.c:27
+#: ../../standalone/keyboarddrake_.c:36
msgid "Do you want the BackSpace to return Delete in console?"
msgstr "Konsolda BackSpace'in Silmć funksyasýný görmćyini istćyirmisiniz?"
@@ -6781,406 +7685,469 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "Tćkmillćţdirmć iţi baţlaya bilmir !!!\n"
-#: ../../standalone/mousedrake_.c:32
+#: ../../standalone/mousedrake_.c:39
msgid "no serial_usb found\n"
msgstr "serial USB avadanlýđý tapýlmadý\n"
-#: ../../standalone/mousedrake_.c:37
+#: ../../standalone/mousedrake_.c:43
msgid "Emulate third button?"
msgstr "3 düymć emulasiyasý"
-#: ../../standalone/mousedrake_.c:41
-msgid "Which serial port is your mouse connected to?"
-msgstr "Siçanýnýz hansý serial qapýya bađlýdýr?"
-
-#: ../../standalone/rpmdrake_.c:25
-msgid "reading configuration"
-msgstr "qurđular oxunur"
-
-#: ../../standalone/rpmdrake_.c:45 ../../standalone/rpmdrake_.c:50
-#: ../../standalone/rpmdrake_.c:253
-msgid "File"
-msgstr "Dosye"
-
-#: ../../standalone/rpmdrake_.c:48 ../../standalone/rpmdrake_.c:229
-#: ../../standalone/rpmdrake_.c:253 ../../standalone/rpmdrake_.c:269
-msgid "Search"
-msgstr "Axtar"
-
-#: ../../standalone/rpmdrake_.c:49 ../../standalone/rpmdrake_.c:56
-msgid "Package"
-msgstr "Paket"
-
-#: ../../standalone/rpmdrake_.c:51
-msgid "Text"
-msgstr "Mćtn"
-
-#: ../../standalone/rpmdrake_.c:53
-msgid "Tree"
-msgstr "Ađac"
-
-#: ../../standalone/rpmdrake_.c:54
-msgid "Sort by"
-msgstr "Düz"
-
-#: ../../standalone/rpmdrake_.c:55
-msgid "Category"
-msgstr "Kateqoriya"
-
-#: ../../standalone/rpmdrake_.c:58
-msgid "See"
-msgstr "Bax"
-
-#: ../../standalone/rpmdrake_.c:59 ../../standalone/rpmdrake_.c:163
-msgid "Installed packages"
-msgstr "Qurulan paketlćr"
-
-#: ../../standalone/rpmdrake_.c:60
-msgid "Available packages"
-msgstr "Mövcud paketlćr"
-
-#: ../../standalone/rpmdrake_.c:62
-msgid "Show only leaves"
-msgstr "Sadćcć olraq uçlarý göstćr"
-
-#: ../../standalone/rpmdrake_.c:67
-msgid "Expand all"
-msgstr "Hamýsýný aç"
-
-#: ../../standalone/rpmdrake_.c:68
-msgid "Collapse all"
-msgstr "Hamýsýný qapat"
-
-#: ../../standalone/rpmdrake_.c:70
-msgid "Configuration"
-msgstr "Quraţdýrma"
-
-#: ../../standalone/rpmdrake_.c:71
-msgid "Add location of packages"
-msgstr "Paketlćrin yerini ćlavć et"
+#: ../../standalone/net_monitor_.c:40 ../../standalone/net_monitor_.c:52
+#, fuzzy
+msgid "Network Monitoring"
+msgstr "Ţćbćkć quraţdýrýlmasý"
-#: ../../standalone/rpmdrake_.c:75
-msgid "Update location"
-msgstr "Yerlćri güncćllć"
+#: ../../standalone/net_monitor_.c:56
+msgid "Statistics"
+msgstr ""
-#: ../../standalone/rpmdrake_.c:79 ../../standalone/rpmdrake_.c:328
-msgid "Remove"
-msgstr "Ayýr"
+#: ../../standalone/net_monitor_.c:59
+msgid "Sending Speed: "
+msgstr ""
-#: ../../standalone/rpmdrake_.c:100
-msgid "Configuration: Add Location"
-msgstr "Quraţdýrma: Yer Ćlavć Et"
+#: ../../standalone/net_monitor_.c:61
+msgid "Receiving Speed: "
+msgstr ""
-#: ../../standalone/rpmdrake_.c:103
-msgid "Find Package"
-msgstr "Paketi Axtar"
+#: ../../standalone/net_monitor_.c:66
+#, fuzzy
+msgid "Close"
+msgstr "Siçan"
-#: ../../standalone/rpmdrake_.c:104
-msgid "Find Package containing file"
-msgstr "Dosyenin içinndć olduđu paketlćri axtar"
+#: ../../standalone/net_monitor_.c:100 ../../standalone/net_monitor_.c:104
+#, fuzzy
+msgid "Connecting to Internet "
+msgstr "Ýnternetć bađlantý"
-#: ../../standalone/rpmdrake_.c:105
-msgid "Toggle between Installed and Available"
-msgstr "Qurulmuţ vć Mövcud paketlćr arasýnda seç"
+#: ../../standalone/net_monitor_.c:100 ../../standalone/net_monitor_.c:104
+#, fuzzy
+msgid "Disconnecting from Internet "
+msgstr "Ýnternetć bađlantýyý kćs"
-#: ../../standalone/rpmdrake_.c:139
-msgid "Files:\n"
-msgstr "Dosyelćr:\n"
+#: ../../standalone/net_monitor_.c:114
+#, fuzzy
+msgid "Disconnection from Internet failed."
+msgstr "Ýnternetć bađlantýyý kćs"
-#: ../../standalone/rpmdrake_.c:161 ../../standalone/rpmdrake_.c:209
-msgid "Uninstall"
-msgstr "Sil"
+#: ../../standalone/net_monitor_.c:115
+#, fuzzy
+msgid "Disconnection from Internet complete."
+msgstr "Ýnternetć bađlantýyý kćs"
-#: ../../standalone/rpmdrake_.c:163
-msgid "Choose package to install"
-msgstr "Qurulacaq paketi seçin"
+#: ../../standalone/net_monitor_.c:117
+#, fuzzy
+msgid "Connection complete."
+msgstr "Bađlantý adý"
-#: ../../standalone/rpmdrake_.c:190
-msgid "Checking dependencies"
-msgstr "Ehtiyaclar yoxlanýr"
+#: ../../standalone/net_monitor_.c:118
+msgid ""
+"Connection failed.\n"
+"Verify your configuration in the Mandrake Control Center."
+msgstr ""
-#: ../../standalone/rpmdrake_.c:190 ../../standalone/rpmdrake_.c:409
-msgid "Wait"
-msgstr "Gözlćyin"
+#: ../../standalone/net_monitor_.c:188
+msgid "sent: "
+msgstr ""
-#: ../../standalone/rpmdrake_.c:209
-msgid "The following packages are going to be uninstalled"
-msgstr "Aţađýdaký paketlćr sistemdćn silinćcćklćr"
+#: ../../standalone/net_monitor_.c:191
+msgid "received: "
+msgstr ""
-#: ../../standalone/rpmdrake_.c:210
-msgid "Uninstalling the RPMs"
-msgstr "RPM paketlćri silinir"
+#: ../../standalone/net_monitor_.c:222
+#, fuzzy
+msgid "Connect"
+msgstr "Bađlandý"
-#: ../../standalone/rpmdrake_.c:229 ../../standalone/rpmdrake_.c:269
-msgid "Regexp"
-msgstr "Regexp"
+#: ../../standalone/net_monitor_.c:222
+#, fuzzy
+msgid "Disconnect"
+msgstr "Bađlantýný Kćs..."
-#: ../../standalone/rpmdrake_.c:229
-msgid "Which package are looking for"
-msgstr "Hansý paketi axtarýrsýnýz?"
+#: ../../standalone/tinyfirewall_.c:29
+msgid "Firewalling Configuration"
+msgstr "\"Firewall\" quraţdýrýlmasý"
-#: ../../standalone/rpmdrake_.c:238 ../../standalone/rpmdrake_.c:262
-#: ../../standalone/rpmdrake_.c:278
-#, c-format
-msgid "%s not found"
-msgstr "%s tapýlmadý"
+#: ../../standalone/tinyfirewall_.c:42
+msgid "Firewalling configuration"
+msgstr "\"Firewall\" quraţdýrýlmasý"
-#: ../../standalone/rpmdrake_.c:238 ../../standalone/rpmdrake_.c:262
-#: ../../standalone/rpmdrake_.c:278
-msgid "No match"
-msgstr "Oxţarý yoxdur"
+#: ../../standalone/tinyfirewall_.c:77
+msgid ""
+"Firewalling\n"
+"\n"
+"You already have set up a firewall.\n"
+"Click on Configure to change or remove the firewall"
+msgstr ""
+"\"Firewall\"\n"
+"\n"
+"\"Firewall\" qrđularýný artýq qurtarmýsýnýz.\n"
+"Qur'a týqlayaraq \"firewall\" qurđularýn silin ya da tćkmillćţdirin."
-#: ../../standalone/rpmdrake_.c:238 ../../standalone/rpmdrake_.c:262
-#: ../../standalone/rpmdrake_.c:278
-msgid "No more match"
-msgstr "Artýq oxţarý yoxdur"
+#: ../../standalone/tinyfirewall_.c:81
+msgid ""
+"Firewalling\n"
+"\n"
+"Click on Configure to set up a standard firewall"
+msgstr ""
+"\"Firewall\"\n"
+"\n"
+"Qur'a týqlayaraq standart \"firewall\" qurđularýný aparýn."
-#: ../../standalone/rpmdrake_.c:246
+#: ../../tinyfirewall.pm_.c:10
msgid ""
-"rpmdrake is currently in ``low memory'' mode.\n"
-"I'm going to relaunch rpmdrake to allow searching files"
+"tinyfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Linux Mandrake machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
msgstr ""
-"Ýndi rpmdrake ''alçaq hafizć'' modundadýr.\n"
-"Dosyelćri axtara bilmćsi üçün rpmdrake tćzćdćn iţć salýnacaq."
+"tinyfirewall configurator\n"
+"\n"
+"Bu, Linuks Mandrake sisteminiz üçün ţćxsi bir \"firewall\" quraţdýracaqdýr.\n"
+"Daha güclü vć e'tibarlý sistem üçün lütfćn xüsusi \"MandrakeSecurity "
+"Firewall\"\n"
+"buraxýlýţýný tćdqiq edin."
-#: ../../standalone/rpmdrake_.c:253
-msgid "Which file are you looking for?"
-msgstr "Hansý dosyelćri axtarýrsýnýz?"
+#: ../../tinyfirewall.pm_.c:15
+msgid ""
+"We'll now ask you questions about which services you'd like to allow\n"
+"the Internet to connect to. Please think carefully about these\n"
+"questions, as your computer's security is important.\n"
+"\n"
+"Please, if you're not currently using one of these services, firewall\n"
+"it off. You can change this configuration anytime you like by\n"
+"re-running this application!"
+msgstr ""
+"Ýndi isć internetć bađlanýrkćn istifadć etmćyi arzuladýđýnýz xidmćtlćri\n"
+"soruţacayýq. Bu suallara lütfćn diqqćtlć cavab verin, çünkü kompüterinizin \n"
+"tćhlükćsizliyi çox vacib mćsćlćdir.\n"
+"\n"
+"Lütfćn, bu xidmćtlćrdćn istifadć etmćdiklćrinizć yaxţý qćrar verin ki "
+"\"firewall\"\n"
+"onu bađlasýn. Sonradan bu qruđularý özünüz proqramý yenidćn iţć salaraq "
+"dćyiţdirć bilćrsiniz.!"
-#: ../../standalone/rpmdrake_.c:269
-msgid "What are looking for?"
-msgstr "Nć axtarýrsýnýz?"
+#: ../../tinyfirewall.pm_.c:22
+msgid ""
+"Are you running a web server on this machine that you need the whole\n"
+"Internet to see? If you are running a webserver that only needs to be\n"
+"accessed by this machine, you can safely answer NO here.\n"
+"\n"
+msgstr ""
+"Sisteminizdć bütün Ýnternetć göstćrmćk istćdiyiniz veb vericisi "
+"iţlćdirsiniz? \n"
+"Tćkcć bu kompüterin görćcćyi bir veb vericisi olacaqsa burada YOX cavasbý "
+"verć bilćrsiniz.\n"
+"\n"
-#: ../../standalone/rpmdrake_.c:289
-msgid "Give a name (eg: `extra', `commercial')"
-msgstr "Bir ad verin (msl: 'extra' ya da 'commercial')"
+#: ../../tinyfirewall.pm_.c:27
+msgid ""
+"Are you running a name server on this machine? If you didn't set one\n"
+"up to give away IP and zone information to the whole Internet, please\n"
+"answer no.\n"
+"\n"
+msgstr ""
+"Bu kompüterdć ad vericisi iţlćdirsiniz? Ćgćr internetć bađlanýrkćn bir IP "
+"ünvaný vć\n"
+"nahiyć mć'lumatý almýrsýnýzsa YOX cavabý verin.\n"
+"\n"
-#: ../../standalone/rpmdrake_.c:291
-msgid "Directory"
-msgstr "Qovluq"
+#: ../../tinyfirewall.pm_.c:32
+msgid ""
+"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
+"is a telnet-replacement that you might use to login. If you're using\n"
+"telnet now, you should definitely switch to ssh. telnet is not\n"
+"encrypted -- so some attackers can steal your password if you use\n"
+"it. ssh is encrypted and doesn't allow for this eavesdropping."
+msgstr ""
+"Gćlćn E'tibarlý Qabýq (ssh) bađlantýlarýna icazć vermćk istćyiriniz? Bu, "
+"bir\n"
+"cür telnet ćvćzidir. Ýndi telnet iţlćdirsinizsć onda \"ssh\"yć keçmćlisiniz. "
+"\n"
+"Telnet kodlama iţlćtmir, ona görć dćbćzi hćkerlćr parolunuzu ođurlaya bilćr. "
+"\n"
+"ssh bunlara icazć vermćz."
-#: ../../standalone/rpmdrake_.c:294
-msgid "No cdrom available (nothing in /mnt/cdrom)"
-msgstr "CD-ROM tapýlmadý(/mnt/cdrom qovluđu boţdur)"
+#: ../../tinyfirewall.pm_.c:37
+msgid ""
+"Do you want to allow incoming telnet connections?\n"
+"This is horribly unsafe, as we explained in the previous screen. We\n"
+"strongly recommend answering No here and using ssh in place of\n"
+"telnet.\n"
+msgstr ""
+"Gćlćn telnet bađlantýlarýna icazć verim?\n"
+"Bu çox e'tibarsýzdýr. Bunu sizć ćvvćlki ekranda söylćdik. Buna \n"
+"yox cavabý vermćyinizi tövsiyyć edirik. Yerinć ssh iţlćdin.\n"
-#: ../../standalone/rpmdrake_.c:298
-msgid "URL of the directory containing the RPMs"
-msgstr "RPMlćrin olduđu qovluđun URL ünvaný"
+#: ../../tinyfirewall.pm_.c:42
+msgid ""
+"Are you running an FTP server here that you need accessible to the\n"
+"Internet? If you are, we strongly recommend that you only use it for\n"
+"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
+"attackers, since FTP also uses no encryption for transferring passwords.\n"
+msgstr ""
+"Ýnternetdćn yetiţilć bilćn bir FTP vericisi iţlćdirsiniz? Ćgćr "
+"iţlćdirsinizsć\n"
+"tćkcć Anonim köçürmćlćr üçün olmasýný tövsiyyć edćrik. FTP ilć göndćrilćn\n"
+"parollar hćkerlćr tćrćfindćn ođurlana bilćr. FTP parollarý kodlaya bilmir "
+"axý.\n"
-#: ../../standalone/rpmdrake_.c:299
+#: ../../tinyfirewall.pm_.c:47
msgid ""
-"For FTP and HTTP, you need to give the location for hdlist\n"
-"It must be relative to the URL above"
-msgstr "FTP vć HTTP üçün hdlist dosyesinin olduđu yeri vermćlisiniz"
+"Are you running a mail server here? If you're sending you \n"
+"messages through pine, mutt or any other text-based mail client,\n"
+"you probably are. Otherwise, you should firewall this off.\n"
+"\n"
+msgstr ""
+"Burada m€ktub vericisi iţlćdirsiniz? Ćgćr ismarýclarýnýzý \"pine\"\n"
+"\"mutt\" vć ya baţqa mćtn ćsaslý mćktub alýcýsýndan göndćrirsinizsć \n"
+"demćk ki, iţlćdirsiniz. Yoxsa \"firewall\" bunu bađlamalýdýr.\n"
+"\n"
-#: ../../standalone/rpmdrake_.c:302
-msgid "Please submit the following information"
-msgstr "Lütfćn aţađýdaký bilgilćri girin"
+#: ../../tinyfirewall.pm_.c:52
+msgid ""
+"Are you running a POP or IMAP server here? This would\n"
+"be used to host non-web-based mail accounts for people via \n"
+"this machine.\n"
+"\n"
+msgstr ""
+"Burada POP vć ya IMAP vericisi iţlćdirsiniz? Bu isć\n"
+"kompüterdć veb ćsaslý olmayan mćktub hesablarý qurmaq üçün lazýmdýr.\n"
+"\n"
-#: ../../standalone/rpmdrake_.c:304
-#, c-format
-msgid "%s is already in use"
-msgstr "%s onsuz da istifadćdćdir"
+#: ../../tinyfirewall.pm_.c:57
+msgid ""
+"You appear to be running a 2.2 kernel. If your network IP\n"
+"is automatically set by a computer in your home or office \n"
+"(dynamically assigned), we need to allow for this. Is\n"
+"this the case?\n"
+msgstr ""
+"Dćyćsćn 2.2 çćkirdćk iţlćdirsiniz. Ćgćr kompüterinizin\n"
+"IPsi baţqa bir kompüter tćrćfindćn dinamik olaraq verilirsć,\n"
+"onda buna icazć vermćk olar. Beledir?\n"
-#: ../../standalone/rpmdrake_.c:315 ../../standalone/rpmdrake_.c:321
-#: ../../standalone/rpmdrake_.c:329
-msgid "Updating the RPMs base"
-msgstr "RPM veritabaný güncćllćnir"
+#: ../../tinyfirewall.pm_.c:62
+msgid ""
+"Is your computer getting time syncronized to another computer?\n"
+"Mostly, this is used by medium-large Unix/Linux organizations\n"
+"to synchronize time for logging and such. If you're not part\n"
+"of a larger office and haven't heard of this, you probably \n"
+"aren't."
+msgstr ""
+"Kompüterinizin vaxtý baţqa bir kompüterlć sinxronlaţdýrýr?\n"
+"Bu, daha çox orta vć geniţ \"Unix/Linux\" ţirkćtlćri tćrćfindćn iţlćdilir.\n"
+"Ćgćr bir ţirkćtin bir parçasý deyilsćniz, demćk ki, iţlćtmirsiniz."
-#: ../../standalone/rpmdrake_.c:328
-#, c-format
-msgid "Going to remove entry %s"
-msgstr "%s giriţi silinćcćk"
+#: ../../tinyfirewall.pm_.c:67
+msgid ""
+"Configuration complete. May we write these changes to disk?\n"
+"\n"
+"\n"
+"\n"
+msgstr ""
+"Quruluţ bitirildi. Dćyiţikliklćri diskć yazým?\n"
+"\n"
+"\n"
+"\n"
-#: ../../standalone/rpmdrake_.c:360
-msgid "Finding leaves"
-msgstr "Uclar tapýlýr"
+#: ../../tinyfirewall.pm_.c:83
+#, fuzzy, c-format
+msgid "Can't open %s: %s\n"
+msgstr "%s Adapteri: %s"
-#: ../../standalone/rpmdrake_.c:360
-msgid "Finding leaves takes some time"
-msgstr "Uclarýn tapýlmasý bir az vaxt alacaq"
+#: ../../tinyfirewall.pm_.c:85
+#, fuzzy, c-format
+msgid "Can't open %s for writing: %s\n"
+msgstr "Yazmaq üçün açýlan %s'dć xćta: %s"
-# ../../share/compssUsers
-msgid "Graphics Manipulation"
-msgstr "Qrafiki ćmćliyyatlar"
+#: ../../share/compssUsers:999
+msgid "Clients for different protocols including ssh"
+msgstr "SSH daxil bir çox protokollarýn alýcýlarý"
-# ../../share/compssUsers
-msgid "KDE, QT, Gnome, GTK+"
-msgstr "KDE, QT, Gnome, GTK+"
+#: ../../share/compssUsers:999
+msgid "Development"
+msgstr "Tćcrübi"
-# ../../share/compssUsers
-msgid "Personnal Finance"
-msgstr "Ţćxsi Maliyyć"
+#: ../../share/compssUsers:999
+msgid "Workstation"
+msgstr "Masaüţtü"
-# ../../share/compssUsers
-msgid "Python, Perl, libraries, tools"
-msgstr "Pyton, Perl, kitabxanalar, aracýlar"
+#: ../../share/compssUsers:999
+msgid "Firewall/Router"
+msgstr "Verici, Firewall/Ruter"
-# ../../share/compssUsers
-msgid "Scientific applications"
-msgstr "Elmi uyđulamalar"
+#: ../../share/compssUsers:999
+msgid "Personal Information Management"
+msgstr "Ţćxsi Mć'lumat Ýdarćcisi"
-# ../../share/compssUsers
-msgid "Databases"
-msgstr "Veri tabanlar (Databases="
+#: ../../share/compssUsers:999
+msgid "Multimedia - Graphics"
+msgstr "Multimedya - Qrafika"
+#: ../../share/compssUsers:999
msgid "Internet"
msgstr "Ýnternet"
-# ../../share/compssUsers
-msgid "Multimedia - Graphics"
-msgstr "Çoxlu ortam - Qrafika"
-
-# ../../share/compssUsers
-msgid "editors, shells, file tools, terminals"
-msgstr "editorlar, rćflćr, dosye aracýlarý, terminallar"
-
-msgid "Development applications"
-msgstr "Tćcrübi uyđulamalar"
+#: ../../share/compssUsers:999
+msgid "Network Computer (client)"
+msgstr "Ţćbćkć Kompüteri (alýcý)"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Audio-related tools: mp3 or midi players, mixers, etc"
msgstr ""
"Sćs ilć ćlaqćdćr aracýlar: mp3 vć ya midi çalđýçýlar, qarýţdýrýçýlar, vs."
-# ../../share/compssUsers
-msgid "Multimedia"
-msgstr "Çoxlu ortam"
+#: ../../share/compssUsers:999
+msgid "Internet station"
+msgstr "Ýnternet stansiyasý"
+#: ../../share/compssUsers:999
msgid "Office"
msgstr "Ýdarć"
-# ../../share/compssUsers
-msgid "Sciences"
-msgstr "Elmi"
-
-# ../../share/compssUsers
-msgid ""
-"Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and file "
-"transfer tools"
-msgstr ""
-"Chat (IRC vć eyni zamanlý xćbćrlćţmć) proqramlarý, mćsćlćn xchat, licq, gaim "
-"vć dosyedaţýma aracýlarý"
+#: ../../share/compssUsers:999
+msgid "Multimedia station"
+msgstr "Multimedya stansiyasý"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid ""
"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
"browse the Web"
msgstr ""
"Elektronik mćktub vć xćbćr oxuyucusu (pine, mutt, tin..) vć Web sćyyahlarý"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "C and C++ development libraries, programs and include files"
-msgstr "C vć C++ inkiţaf kitabxanalarý, proqramlarý vć daxil edilćcćk dosyelćr"
+msgstr "C vć C++ inkiţaf kitabxanalarý, proqramlarý vć daxil edilćcćk fayllar"
-# ../../share/compssUsers
-msgid "Communication facilities"
-msgstr "Rabitć aracýlarý"
-
-msgid "KDE"
-msgstr "KDE"
-
-# ../../share/compssUsers
-msgid "Personnal Information Management"
-msgstr "Ţćxsi Mć'lumat Ýdarćcisi"
+#: ../../share/compssUsers:999
+msgid "Domain Name and Network Information Server"
+msgstr ""
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Programs to manage your finance, such as gnucash"
msgstr "Ţćxsi maliyyć idarćçilćri, mćsćlćn gnucash"
-msgid "Gnome"
-msgstr "Gnome"
+#: ../../share/compssUsers:999
+msgid "PostgreSQL or MySQL database server"
+msgstr ""
-msgid "Internet Tools"
-msgstr "Ýnternet avadanlýqlarý"
+#: ../../share/compssUsers:999
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS vericisi, SMB vericisi, SSH vericisi, Vćkil Verici"
+#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Sćnćdlćr"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr "Icewm, Window Maker, Enlightenment, Fvwm, vs."
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Utilities"
-msgstr "Aracýlar"
+msgstr "Vasitćlćr"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
+msgid "DNS/NIS "
+msgstr "DNS/NIS "
+
+#: ../../share/compssUsers:999
+msgid "Graphical Environment"
+msgstr "Qrafiki Ara Üz"
+
+#: ../../share/compssUsers:999
msgid "Multimedia - Sound"
-msgstr "Çoxlu ortam - Sćs"
+msgstr "Multimedya - Sćs"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr "Arcade, taxta oyunlarý, strategiya, vs kimi ćylćncć proqramlarý"
+msgstr "Mćzćli proqramlar: arkad, taxta oyunlarý, strategiya, vs"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Video players and editors"
-msgstr "Video çalđýçýlarý vć tćţkilatçýlarý"
+msgstr "Video çalđýçýlarý vć editorlarý"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Console Tools"
-msgstr "Konsol Aracýlarý"
+msgstr "Konsol Vasitćlćri"
-msgid "Development other"
-msgstr "Tćcrübi vć baţqalarý"
+#: ../../share/compssUsers:999
+msgid "Sound and video playing/editing programs"
+msgstr "Sćs vć video çalýnmasý/düzćliţ proqramlarý"
-# ../../share/compssUsers
-msgid "Databases clients and servers (mysql and postgresql)"
-msgstr "Veritabaný alýcýlarý vć vericilćri (mysql vć postgresql)"
+#: ../../share/compssUsers:999
+msgid "Scientific Workstation"
+msgstr "Elmi iţ stansiyasý"
-# ../../share/compssUsers
-msgid "Sound and video playing/editing programs"
-msgstr "Sćs vć video çalýnmasý/tćţkilatý proqramlarý"
+#: ../../share/compssUsers:999
+msgid "Editors, shells, file tools, terminals"
+msgstr "Editorlar, rćflćr, fayl vasitćlćri, terminallar"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
-msgstr "Linux vć pulsuz yazýlým Kitablar vć Howtolarý"
+msgstr "Linuks vć pulsuz proqram tć'minatýlarý Kitablar vć Howtolarý"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid ""
"A graphical environment with user-friendly set of applications and desktop "
"tools"
msgstr ""
-"Ýstifadćçi dostu proqram vć masaüstü ilć bćrabćr qrafiki araüzaracýlarý"
+"Ýstifadćçi dostu proqram vć masa üstü ilć bćrabćr qrafiki araüzaracýlarý"
+
+#: ../../share/compssUsers:999
+msgid "Postfix mail server, Inn news server"
+msgstr ""
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Games"
msgstr "Oyunlar"
-msgid "Development C/C++"
-msgstr "Tćcrübi C/C++"
-
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Multimedia - Video"
-msgstr "Çoxlu ortam - Video"
+msgstr "Multimedya - Video"
+
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Network Computer server"
+msgstr "Ţćbćkć Kompüteri Fayl Vericisi"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Graphics programs such as The Gimp"
msgstr "Qrafika proqramlarý, mćsćlćn The Gimp"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
+msgid "Office Workstation"
+msgstr "Ýţ Yeri stansiyasý"
+
+#: ../../share/compssUsers:999
msgid ""
"The K Desktop Environment, the basic graphical environment with a collection "
"of accompanying tools"
-msgstr "KDE, ćsas qrfiki araüz vć kömćkçi proqramlarkolleksiyasý"
-
-# ../../share/compssUsers
-msgid "Tools to create and burn CD's"
-msgstr "CD yazmaq vć yandýrmaq proqramlarý"
+msgstr "KDE, ćsas qrafiki araüz vć kömćkçi proqramlar Ţkolleksiyasý"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "More Graphical Desktops (Gnome, IceWM)"
msgstr "Baţqa qrafiki araüzlćr (Gnome, IceWM)"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
+msgid "Tools to create and burn CD's"
+msgstr "CD yazmaq vć yandýrmaq proqramlarý"
+
+#: ../../share/compssUsers:999
msgid "Multimedia - CD Burning"
-msgstr "Çoxlu ortam - CD Yandýrma"
+msgstr "Multimedya - CD Yandýrma"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Archiving, emulators, monitoring"
msgstr "Arxivlćmć, emulyatorlar, izlćmć"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
+msgid "Database"
+msgstr "Verici, Databeyz"
+
+#: ../../share/compssUsers:999
msgid ""
"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
"gnumeric), pdf viewers, etc"
@@ -7188,21 +8155,652 @@ msgstr ""
"Ýdarć proqramlarý: kćlimć iţlćyćnlćr (kword, abiword), hesablayýcýlar vć pdf "
"göstćricilćri, vs."
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
+msgid "Web/FTP"
+msgstr "Verici, Veb/FTP"
+
+#: ../../share/compssUsers:999
+msgid "Server"
+msgstr "Verici"
+
+#: ../../share/compssUsers:999
+msgid "Personal Finance"
+msgstr "Ţćxsi Maliyyć"
+
+#: ../../share/compssUsers:999
+msgid "Configuration"
+msgstr "Quraţdýrma"
+
+#: ../../share/compssUsers:999
+msgid "KDE Workstation"
+msgstr "KDE iţ stansiyasý"
+
+#: ../../share/compssUsers:999
msgid "Other Graphical Desktops"
msgstr "Baţqa qrafiki araüzlćr"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
+msgid "Apache, Pro-ftpd"
+msgstr "Apache vć Pro-ftpd"
+
+#: ../../share/compssUsers:999
+msgid "Mail/Groupware/News"
+msgstr "Verici, ePoçt/Groupware/Xćbćrlćr"
+
+#: ../../share/compssUsers:999
+msgid "Gnome Workstation"
+msgstr "Gnome iţ stansiyasý"
+
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Internet gateway"
+msgstr "Ýnternet imkaný"
+
+#: ../../share/compssUsers:999
msgid "Tools for your Palm Pilot or your Visor"
msgstr "Palm Pilot vć ya Visorunuz üçün aracýlar"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
+msgid "Game station"
+msgstr "Oyun stansiyasý"
+
+#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr "Gnome, IceWM, Windows Maker, Enlightement, Fvwm, vs."
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
+msgid "Tools to ease the configuration of your computer"
+msgstr "Kompüter qurđularýný asnadlaţdýran vasitćlćr"
+
+#: ../../share/compssUsers:999
msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr "Elektronik, xćbćrlćr, dosye daţýnmasý, chat aracýlarý"
+msgstr "Mćktub, xćbćrlćr, fayl daţýnmasý, chat vasitćlćri"
+
+#, fuzzy
+#~ msgid "Lilo/Grub configuration"
+#~ msgstr "Yerli Ţćbćkć quraţdýrýlmasý"
+
+#~ msgid "Selected size %d%s"
+#~ msgstr "Böyüklüyü seç %d%s"
+
+#~ msgid "Opening your connection..."
+#~ msgstr "Bađlantýnýz açýlýr..."
+
+#~ msgid "Configure..."
+#~ msgstr "Quraţdýr..."
+
+#~ msgid "Standard tools"
+#~ msgstr "Standart Lćvazimat"
+
+#, fuzzy
+#~ msgid "Configuration de Lilo/Grub"
+#~ msgstr "Quraţdýrma: Yer Ćlavć Et"
+
+#~ msgid "This startup script try to load your modules for your usb mouse."
+#~ msgstr ""
+#~ "Bu açýlýţ scripti usb siçanýnýz üçün lazými modullarýn yüklanmćsinć imkan "
+#~ "verćr."
+
+#~ msgid "Boot style configuration"
+#~ msgstr "Qurulum tćrzi quraţdýrmasý"
+
+#~ msgid ""
+#~ "Now that your Internet connection is configured,\n"
+#~ "your computer can be configured to share its Internet connection.\n"
+#~ "Note: you need a dedicated Network Adapter to set up a Local Area Network "
+#~ "(LAN).\n"
+#~ "\n"
+#~ "Would you like to setup the Internet Connection Sharing?\n"
+#~ msgstr ""
+#~ "Artýq kompüteriniz Ýnternetć giriţ üçün qurulmuţdur\n"
+#~ "vć siz bu imkaný bölüţdürć bilćrsiniz.\n"
+#~ "Xćbćdarlýq: Yerli Ţćbćkć (LAN) qurmaq üçün uyđun Ţćbćkć Adapterinć "
+#~ "ehtiyacýnýz var.\n"
+#~ "\n"
+#~ "Ýnternet Bađlantýsý Bölüţdürülmćsini qurmaq istćyirsiniz?\n"
+
+#, fuzzy
+#~ msgid "Welcome to the Internet Connection Sharing utility!"
+#~ msgstr "Ýnternet Bađlantýsý Bölüţdürülmćsi"
+
+#~ msgid "Automatic dependencies"
+#~ msgstr "Avtomatik asýlýqlar yoxlamasý"
+
+#~ msgid "Configure LILO/GRUB"
+#~ msgstr "LILO/GRUB'u Quraţdýr"
+
+#~ msgid "Create a boot floppy"
+#~ msgstr "Açýlýţ disketi yarat"
+
+#~ msgid "Format floppy"
+#~ msgstr "Disketi ţćkillćndir"
+
+#~ msgid "Choice"
+#~ msgstr "Seçki"
+
+#~ msgid "horizontal nice looking aurora"
+#~ msgstr "üfüqi olaraq xoţ görünüţlü avrora"
+
+#~ msgid "vertical traditional aurora"
+#~ msgstr "ţaquli ćnćnćvi avrora"
+
+#~ msgid "gMonitor"
+#~ msgstr "gMonitor"
+
+#~ msgid ""
+#~ "You can now select some miscellaneous options for your system.\n"
+#~ "\n"
+#~ "* Use hard drive optimizations: this option can improve hard disk "
+#~ "performance but is only for advanced users. Some buggy\n"
+#~ " chipsets can ruin your data, so beware. Note that the kernel has a builtin "
+#~ "blacklist of drives and chipsets, but if\n"
+#~ " you want to avoid bad surprises, leave this option unset.\n"
+#~ "\n"
+#~ "\n"
+#~ "* Choose security level: you can choose a security level for your system. "
+#~ "Please refer to the manual for complete\n"
+#~ " information. Basically, if you don't know what to choose, keep the default "
+#~ "option.\n"
+#~ "\n"
+#~ "\n"
+#~ "* Precise RAM if needed: unfortunately, there is no standard method to ask "
+#~ "the BIOS about the amount of RAM present in\n"
+#~ " your computer. As consequence, Linux may fail to detect your amount of RAM "
+#~ "correctly. If this is the case, you can\n"
+#~ " specify the correct amount or RAM here. Please note that a difference of 2 "
+#~ "or 4 MB between detected memory and memory\n"
+#~ " present in your system is normal.\n"
+#~ "\n"
+#~ "\n"
+#~ "* Removable media automounting: if you would prefer not to manually mount "
+#~ "removable media (CD-Rom, floppy, Zip, etc.) by\n"
+#~ " typing \"mount\" and \"umount\", select this option.\n"
+#~ "\n"
+#~ "\n"
+#~ "* Clean \"/tmp\" at each boot: if you want delete all files and directories "
+#~ "stored in \"/tmp\" when you boot your system,\n"
+#~ " select this option.\n"
+#~ "\n"
+#~ "\n"
+#~ "* Enable num lock at startup: if you want NumLock key enabled after booting, "
+#~ "select this option. Please note that you\n"
+#~ " should not enable this option on laptops and that NumLock may or may not "
+#~ "work under X."
+#~ msgstr ""
+#~ "Ýndi sisteminiz üçün müftćlif qurđularý edćcćksiniz.\n"
+#~ "\n"
+#~ " - Sabit disk optimizasiyasý: Sabit diskin iţ qabiliyćtini artýrmaq \n"
+#~ "üçün iţlćdilir, amma sadćcć olaraq tćcrübćli istifadćcilćrć tövsiyć edilir: "
+#~ "\n"
+#~ "bćzi xatalý yongalar(chip) datalarýnýzýn pozulmasýna sćbćb ola bilćr, buna \n"
+#~ "görć dć diqqćtli olun. Diqqćt edilmalidir ki, çćkirdćklć birliktć\n"
+#~ "sürücülćr va yonqalar üçün bir qara siyahý gćlćr. Ýstćyćrsiniz\n"
+#~ "naxoţ sürprizlćrlć qarţýlaţmamaq üçün bu seçćnćyi boţ buraxýn.\n"
+#~ "\n"
+#~ " - Tćhlükćsizlik saviyyasi: Sisteminiz üçün bir tćhlükćsizlik sćviyyćsi "
+#~ "seçć bilćrsiniz.\n"
+#~ "Tam bir mć'lumat üçün lazými man sćhifćlćrinć baxýn. Ćsasćn:\n"
+#~ "bilirsćniz \"orta\"'yý seçin; ćgć haqiqćtćn dć e'tibarlý bir sistemć malik \n"
+#~ "olmaq istćyirsćniz isć, \"ţübhćci\"yi seçin. Fćqćt unutmayýn ki, BU "
+#~ "SĆVÝYYĆDĆ \n"
+#~ "SÝSTEMĆ KONSOLDAN ROOT OLARAQ GÝRMĆYÝNÝZE ÝCAZĆ YOXDUR: Sýravi bir "
+#~ "istifadćçi \n"
+#~ "olaraq girib, sonra \"su\" ćmri ilć root ola bilćrsiniz. Ümumiyyćtlć \n"
+#~ "siteminizi verici olaraq istifadć xaricindć baţqqa bir sahćdć istifadćyi \n"
+#~ "düţünmćyin. Mćn sizi xćbćrdar etdim.\n"
+#~ "\n"
+#~ " - Ümumi yaddaţ miqdarý: Günümüz PC dünyasýnda BIOS'a kompüterinizdćki \n"
+#~ "ümumi hafiza miqdarýný soruţacaq bir yol yoxdur. Nćticćdć \n"
+#~ "Linux hćqiqi RAM miqdarýný tapmaqda yanýla bilćr. Belćliklć\n"
+#~ "dođru RAM miqdarýný buraya girć bilćrsiniz. 2 ya da 4 MB'liq bir fark "
+#~ "normal\n"
+#~ "sayýla bilćr.\n"
+#~ "\n"
+#~ " - Taxýlýb sökülć bilćn avadanlýqlarýn avtomatik bađlanmasý: \"mount\" vć "
+#~ "\"umount\"\n"
+#~ "ćmrlari kömćyilć ćllć disk, CD sürücü kimi avadanlýqlarý bađlamaq "
+#~ "istćmirsćniz \n"
+#~ "bu seçćnćyi iţarćtlćyin.\n"
+#~ "\n"
+#~ " - Açýlýţda Num Lock iţýđýný yandýr: Açýlýţda Num Lock iţýđýnýn yanmasýný \n"
+#~ "istćyirsiniz isć bu seçćnćyi iţarćtlćyin (X altýnda iţlćmćyć bilćr.)"
+
+#~ msgid "Sorry, the mail configuration is not yet implemented. Be patient."
+#~ msgstr "Bađýţlayýn, ePoçt quraţdýrýlmasý hćlć dćstćklćnmir. Sćbrli olun."
+
+#~ msgid ""
+#~ "Welcome to The Network Configuration Wizard.\n"
+#~ "Which components do you want to configure?\n"
+#~ msgstr ""
+#~ "Ţćbćkć Quraţdýrma Sehirbazýna Xoţ Gćldiniz.\n"
+#~ "Hansý qisimlćri qurmaq istćyirsiniz?\n"
+
+#~ msgid "Internet/Network access"
+#~ msgstr "Ýnternet/Ţćbćkć çýxýţý"
+
+#~ msgid "Mail information"
+#~ msgstr "ePoçt mć'lumatý"
+
+#~ msgid "No I don't need DHCP"
+#~ msgstr "Xeyr, DNCP ehtiyacým yoxdur"
+
+#~ msgid "No I don't need NTP"
+#~ msgstr "Xeyr, NTP ehtiyacým yoxdur"
+
+#~ msgid "No (firewall this off from the internet)"
+#~ msgstr "Xeyr (\"firewall\" bunu internetdćn bađlayacaqdýr)"
+
+#~ msgid "Yes (allow this through the firewall)"
+#~ msgstr "Bćli (bu, \"firewall\" üstündćn açýlacaqdýr)"
+
+#~ msgid "Firewall Configuration Wizard"
+#~ msgstr "\"Firewell\" Quraţdýrýlmasý Sehirbazý"
+
+#~ msgid "Miscellaneous"
+#~ msgstr "Müxtćlif"
+
+#~ msgid "Miscellaneous questions"
+#~ msgstr "Müxtćlif suallar"
+
+#~ msgid "Can't use supermount in high security level"
+#~ msgstr "Yüksćk tćhlükćsizlik sćviyyćsindć supermount istifadć edilć bilmćz"
+
+#~ msgid ""
+#~ "beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
+#~ "If you want to be root, you have to login as a user and then use \"su\".\n"
+#~ "More generally, do not expect to use your machine for anything but as a "
+#~ "server.\n"
+#~ "You have been warned."
+#~ msgstr ""
+#~ "BU SĆVÝYYĆDĆ \n"
+#~ "SÝSTEMĆ KONSOLDAN ROOT OLARAQ GÝRMĆYÝNÝZE ÝCAZĆ YOXDUR: Sýravi bir "
+#~ "istifadćçi \n"
+#~ "olaraq girib, sonra \"su\" ćmri ilć root ola bilćrsiniz. Ümumiyyćtlć \n"
+#~ "siteminizi verici olaraq istifadć xaricindć baţqqa bir sahćdć istifadćyi \n"
+#~ "düţünmćyin. Mćn sizi xćbćrdar etdim."
+
+#~ msgid ""
+#~ "Be carefull, having numlock enabled causes a lot of keystrokes to\n"
+#~ "give digits instead of normal letters (eg: pressing `p' gives `6')"
+#~ msgstr ""
+#~ "Ehtiyatlý olun, numlock iţýđýnýn yanmasýný seçmćk bir çox düymćnin\n"
+#~ "hćrf yerinć rćqćm yazmasýna sćbćb olar('p'yć basarsanýz '6' çýxa bilćr)"
+
+#~ msgid "not connected"
+#~ msgstr "bađlý deyil"
+
+#~ msgid "Actions"
+#~ msgstr "Gediţlćr"
+
+#~ msgid "Scientific applications"
+#~ msgstr "Elmi uyđulamalar"
+
+#~ msgid "toot"
+#~ msgstr "toot"
+
+#~ msgid "File/Print/Samba"
+#~ msgstr "Verici, Fayl/Çap/Samba"
+
+#~ msgid "DNS/DHCP "
+#~ msgstr "Verici, DNS/DHCP"
+
+#~ msgid "First DNS Server"
+#~ msgstr "Birinci DNS Vericisi"
+
+#~ msgid "Second DNS Server"
+#~ msgstr "Ýkinci DNS Vericisi"
+
+#~ msgid "using module"
+#~ msgstr "modul istifadć edilir"
+
+#~ msgid "Development, Database"
+#~ msgstr "Tćcrübi, Databeyz"
+
+#~ msgid "Development, Integrated Environment"
+#~ msgstr "Tćcrübi, Ýnteqre edilmiţ Ara Üzlćr"
+
+#~ msgid "Development, Standard tools"
+#~ msgstr "Tćcrübi, Standart vasitćlćr"
+
+#~ msgid ""
+#~ "\n"
+#~ "Warning:\n"
+#~ "Applying the changes while running may crash your X environnement."
+#~ msgstr ""
+#~ "\n"
+#~ "Diqqćt:\n"
+#~ "Dćyiţikliklćrin ćlavć edilmćsi X axtar üzünüzü uçurda bilćr."
+
+#~ msgid ""
+#~ "\n"
+#~ "If you continue, I will shut down your %s environnement"
+#~ msgstr ""
+#~ "\n"
+#~ "Davam edćrsćniz, %s axtar üznüzü qapadacam"
+
+#~ msgid "eth$_"
+#~ msgstr "eth$_"
+
+#~ msgid "loopback"
+#~ msgstr "loopback"
+
+#~ msgid "None"
+#~ msgstr "Heç biri"
+
+#~ msgid "Which bootloader(s) do you want to use?"
+#~ msgstr "Hansý açýlýţ yüklćyicilćrini istifadć etmćk istćyirsiniz?"
+
+#~ msgid "Auto install floppy"
+#~ msgstr "Floppy'yi avtomatik qur"
+
+#~ msgid "Try to find a modem?"
+#~ msgstr "Bir modem axtarým?"
+
+#~ msgid "Disable Internet Connection"
+#~ msgstr "Ýnternet bađlantýsýný lćđv et"
+
+#~ msgid "Configure local network"
+#~ msgstr "Yerli Ţćbćkćni quraţdýr"
+
+#~ msgid "Disable networking"
+#~ msgstr "Ţćbćkćni lćđv et"
+
+#~ msgid "Configure the Internet connection / Configure local Network"
+#~ msgstr "Ýnternet bađlantýsýný quraţdýr / Yerli Ţćbćkćni quraţdýr"
+
+#~ msgid ""
+#~ "Local networking has already been configured.\n"
+#~ "Do you want to:"
+#~ msgstr "LAN qurđularý artýq olmuţdur. Nć etmćk istćyirsiniz:?"
+
+#~ msgid "Reconfigure using wizard..."
+#~ msgstr "Sehirbaz istifadć ećrćk yenidćn quraţdýrýlýr..."
+
+#~ msgid "Graphics Manipulation"
+#~ msgstr "Qrafiki ćmćliyyatlar"
+
+#~ msgid "Multimedia"
+#~ msgstr "Multimedya"
+
+#~ msgid "Sciences"
+#~ msgstr "Elmi"
+
+#~ msgid ""
+#~ "Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and file "
+#~ "transfer tools"
+#~ msgstr ""
+#~ "Chat (IRC vć eyni zamanlý xćbćrlćţmć) proqramlarý, mćsćlćn xchat, licq, gaim "
+#~ "vć fayl köçürmć vasitćlćri"
+
+#~ msgid "Communication facilities"
+#~ msgstr "Rabitć vasitćlćri"
+
+#~ msgid "KDE"
+#~ msgstr "KDE"
+
+#~ msgid "Gnome"
+#~ msgstr "Gnome"
+
+#~ msgid "Internet Tools"
+#~ msgstr "Ýnternet avadanlýqlarý"
+
+#~ msgid "Databases clients and servers (mysql and postgresql)"
+#~ msgstr "Veritabaný alýcýlarý vć vericilćri (mysql vć postgresql)"
+
+#~ msgid "Development C/C++"
+#~ msgstr "Tćcrübi C/C++"
+
+#~ msgid "Configure timezone"
+#~ msgstr "Vaxt dilimini qur"
+
+#~ msgid "Configure printer"
+#~ msgstr "Çap edicini qur"
+
+#~ msgid "Network adaptater 1 (eth0):"
+#~ msgstr "Ţćbćkć adapteri 1(eth0):"
+
+#~ msgid "isdn_internal"
+#~ msgstr "daxili isdn"
+
+#~ msgid "ippp0"
+#~ msgstr "ippp0"
+
+#~ msgid "(may cause data corruption)"
+#~ msgstr "(mć'lumat itkisinć sćbćb ola bilćr)"
+
+#~ msgid "Use hard drive optimisations?"
+#~ msgstr "Sabit disk optimizasyasý istifadć edilsinmi?"
+
+#~ msgid "Enable num lock at startup"
+#~ msgstr "Açýlýţda Num Lock iţýđýný yandýr"
+
+#~ msgid "Confirm Password"
+#~ msgstr "Parolu Tćsdiqlć"
+
+#~ msgid "default"
+#~ msgstr "ćsas"
+
+#~ msgid "What is your system used for?"
+#~ msgstr "Sisteminiz hansý mćqsćdlć istifadć edilćcćk?"
+
+#~ msgid "Select the size you want to install"
+#~ msgstr "Qurmaq istćdiyiniz paketlćrin böyüklüyünü seçin"
+
+#~ msgid "Use diskdrake"
+#~ msgstr "Diskdrake istifadć et"
+
+#~ msgid "Customized"
+#~ msgstr "Xüsusi"
+
+#~ msgid ""
+#~ "Are you sure you are an expert? \n"
+#~ "You will be allowed to make powerful but dangerous things here.\n"
+#~ "\n"
+#~ "You will be asked questions such as: ``Use shadow file for passwords?'',\n"
+#~ "are you ready to answer that kind of questions?"
+#~ msgstr ""
+#~ "Bir usta olduđunuzu düsünürsünüz mü? \n"
+#~ "Burada güclü fćqćt tćhlükćli ola bilacćk iţlćrć icazć verilćcćkdir.\n"
+#~ "\n"
+#~ "Mćsćlćn ''Kölgćli parol istifadć etmćk istćyirsinizmi?!! deyć suallar "
+#~ "aoruţulacaq,\n"
+#~ "Buna hazýrsýnýzmý?"
+
+#~ msgid "Use shadow file"
+#~ msgstr "Kölga parol istifadć et"
+
+#~ msgid "shadow"
+#~ msgstr "kölgć parol"
+
+#~ msgid "MD5"
+#~ msgstr "MD5"
+
+#~ msgid "Use MD5 passwords"
+#~ msgstr "MD5 ţifrlama istifadć et"
+
+#~ msgid "Search"
+#~ msgstr "Axtar"
+
+#~ msgid "Package"
+#~ msgstr "Paket"
+
+#~ msgid "Text"
+#~ msgstr "Mćtn"
+
+#~ msgid "Tree"
+#~ msgstr "Ađac"
+
+#~ msgid "Sort by"
+#~ msgstr "Düz"
+
+#~ msgid "Category"
+#~ msgstr "Kateqoriya"
+
+#~ msgid "See"
+#~ msgstr "Bax"
+
+#~ msgid "Installed packages"
+#~ msgstr "Qurulan paketlćr"
+
+#~ msgid "Available packages"
+#~ msgstr "Mövcud paketlćr"
+
+#~ msgid "Show only leaves"
+#~ msgstr "Sadćcć olraq uçlarý göstćr"
+
+#~ msgid "Expand all"
+#~ msgstr "Hamýsýný aç"
+
+#~ msgid "Collapse all"
+#~ msgstr "Hamýsýný qapat"
+
+#~ msgid "Add location of packages"
+#~ msgstr "Paketlćrin yerini ćlavć et"
+
+#~ msgid "Update location"
+#~ msgstr "Yerlćri güncćllć"
+
+#~ msgid "Remove"
+#~ msgstr "Çýxart"
+
+#~ msgid "Find Package"
+#~ msgstr "Paketi Axtar"
+
+#~ msgid "Find Package containing file"
+#~ msgstr "Faylý daxil edćn paketlćri axtar"
+
+#~ msgid "Toggle between Installed and Available"
+#~ msgstr "Qurulmuţ vć Mövcud paketlćr arasýnda seç"
+
+#~ msgid "Uninstall"
+#~ msgstr "Sil"
+
+#~ msgid "Choose package to install"
+#~ msgstr "Qurulacaq paketi seçin"
+
+#~ msgid "Checking dependencies"
+#~ msgstr "Ehtiyaclar yoxlanýr"
+
+#~ msgid "Wait"
+#~ msgstr "Gözlćyin"
+
+#~ msgid "The following packages are going to be uninstalled"
+#~ msgstr "Aţađýdaký paketlćr sistemdćn silinćcćklćr"
+
+#~ msgid "Uninstalling the RPMs"
+#~ msgstr "RPM paketlćri silinir"
+
+#~ msgid "Regexp"
+#~ msgstr "Qaydalý Ýfadć"
+
+#~ msgid "Which package are looking for"
+#~ msgstr "Hansý paketi axtarýrsýnýz?"
+
+#~ msgid "%s not found"
+#~ msgstr "%s tapýlmadý"
+
+#~ msgid "No match"
+#~ msgstr "Oxţarý yoxdur"
+
+#~ msgid "No more match"
+#~ msgstr "Baţqa oxţarý yoxdur"
+
+#~ msgid ""
+#~ "rpmdrake is currently in ``low memory'' mode.\n"
+#~ "I'm going to relaunch rpmdrake to allow searching files"
+#~ msgstr ""
+#~ "Ýndi rpmdrake ''alçaq yaddaţ'' modundadýr.\n"
+#~ "Fayllarý axtara bilmćsi üçün rpmdrake yenidćn iţć salýnacaq."
+
+#~ msgid "Which file are you looking for?"
+#~ msgstr "Hansý fayllarý axtarýrsýnýz?"
+
+#~ msgid "What are looking for?"
+#~ msgstr "Nć axtarýrsýnýz?"
+
+#~ msgid "Give a name (eg: `extra', `commercial')"
+#~ msgstr "Bir ad verin (msl: 'extra' ya da 'commercial')"
+
+#~ msgid "Directory"
+#~ msgstr "Qovluq"
+
+#~ msgid "No cdrom available (nothing in /mnt/cdrom)"
+#~ msgstr "CD-ROM tapýlmadý(/mnt/cdrom qovluđu boţdur)"
+
+#~ msgid "URL of the directory containing the RPMs"
+#~ msgstr "RPMlćrin olduđu qovluđun URL ünvaný"
+
+#~ msgid ""
+#~ "For FTP and HTTP, you need to give the location for hdlist\n"
+#~ "It must be relative to the URL above"
+#~ msgstr "FTP vć HTTP üçün hdlist faylýnýn olduđu yeri vermćlisiniz"
+
+#~ msgid "Please submit the following information"
+#~ msgstr "Lütfćn aţađýdaký bilgilćri girin"
+
+#~ msgid "%s is already in use"
+#~ msgstr "%s onsuz da istifadćdćdir"
+
+#~ msgid "Updating the RPMs base"
+#~ msgstr "RPM databeyz güncćllćnir"
+
+#~ msgid "Going to remove entry %s"
+#~ msgstr "%s giriţi silinćcćk"
+
+#~ msgid "Finding leaves"
+#~ msgstr "Uclar tapýlýr"
+
+#~ msgid "Finding leaves takes some time"
+#~ msgstr "Uclarýn tapýlmasý bir az vaxt alacaq"
+
+#~ msgid "I have found an ISDN Card:\n"
+#~ msgstr "Bu ISDN kartýný tapdým:\n"
+
+#~ msgid "France"
+#~ msgstr "Fransa"
+
+#~ msgid "Other countries"
+#~ msgstr "Baţqa ölkćlćr"
+
+#~ msgid "In which country are you located ?"
+#~ msgstr "Hansý ölkćdć yerlćţirsiniz?"
+
+#~ msgid "Alcatel modem"
+#~ msgstr "Alcatel modem"
+
+#~ msgid "ECI modem"
+#~ msgstr "ECI modem"
+
+#~ msgid ""
+#~ "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
+#~ msgstr "ADSL modeminiz Alcatelin isć Alcateli seçin. Yoxsa ECI seçin."
+
+#~ msgid "don't use pppoe"
+#~ msgstr "pppoe istifadć etmć"
+
+#~ msgid "mandatory"
+#~ msgstr "mćcburi"
+
+#~ msgid "interesting"
+#~ msgstr "maraqlý"
+
+#~ msgid "i18n (important)"
+#~ msgstr "i18n (vacib)"
+
+#~ msgid "i18n (very nice)"
+#~ msgstr "i18n (ć'la)"
+
+#~ msgid "i18n (nice)"
+#~ msgstr "i18n (gözćl)"
+
+#~ msgid "KDE, QT, Gnome, GTK+"
+#~ msgstr "KDE, QT, Gnome, GTK+"
+
+#~ msgid "Python, Perl, libraries, tools"
+#~ msgstr "Pyton, Perl, kitabxanalar, aracýlar"
+
+#~ msgid "Which serial port is your mouse connected to?"
+#~ msgstr "Siçanýnýz hansý serial qapýya bađlýdýr?"
#~ msgid "Czech"
#~ msgstr "Çex dili"
diff --git a/perl-install/share/po/be.po b/perl-install/share/po/be.po
index c9c70a728..f1bef6fac 100644
--- a/perl-install/share/po/be.po
+++ b/perl-install/share/po/be.po
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2000-11-11 21:39+0100\n"
+"POT-Creation-Date: 2001-04-17 16:58+0200\n"
"PO-Revision-Date: 2000-09-24 12:30 +0100\n"
"Last-Translator: Alexander Bokovoy <ab@avilink.net>\n"
"Language-Team: be\n"
@@ -13,32 +13,56 @@ msgstr ""
"Content-Type: text/plain; charset=windows-1251\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:179
+#: ../../Xconfigurator.pm_.c:232
+msgid "Configure all heads independantly"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:233
+msgid "Use Xinerama extension"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:236
+#, fuzzy, c-format
+msgid "Configure only card \"%s\" (%s)"
+msgstr "Ęŕíôiăóđŕâŕöü ěŕţ ęŕđňó"
+
+#: ../../Xconfigurator.pm_.c:239
+#, fuzzy
+msgid "Multi-head configuration"
+msgstr "÷űňŕííĺ íŕńňđîéęi"
+
+#: ../../Xconfigurator.pm_.c:240
+msgid ""
+"Your system support multiple head configuration.\n"
+"What do you want to do?"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:249
msgid "Graphic card"
msgstr "Âiäýŕęŕđňŕ"
-#: ../../Xconfigurator.pm_.c:179
+#: ../../Xconfigurator.pm_.c:249
msgid "Select a graphic card"
-msgstr "Âűá˙đűöĺ âiäýŕęŕđňó"
+msgstr "Ŕá˙đűöĺ âiäýŕęŕđňó"
-#: ../../Xconfigurator.pm_.c:180
+#: ../../Xconfigurator.pm_.c:250
msgid "Choose a X server"
-msgstr "Âűá˙đűöĺ X ńĺđâĺđ"
+msgstr "Ŕá˙đűöĺ X ńĺđâĺđ"
-#: ../../Xconfigurator.pm_.c:180
+#: ../../Xconfigurator.pm_.c:250
msgid "X server"
msgstr "X ńĺđâĺđ"
-#: ../../Xconfigurator.pm_.c:217 ../../Xconfigurator.pm_.c:223
+#: ../../Xconfigurator.pm_.c:304 ../../Xconfigurator.pm_.c:311
#, c-format
msgid "XFree %s"
msgstr "Ńĺđâĺđ XFree86 %s"
-#: ../../Xconfigurator.pm_.c:220
+#: ../../Xconfigurator.pm_.c:307
msgid "Which configuration of XFree do you want to have?"
msgstr "ßęóţ ęŕíôiăóđŕöűţ XFree âű ćŕäŕĺöĺ ŕňđűěŕöü?"
-#: ../../Xconfigurator.pm_.c:232
+#: ../../Xconfigurator.pm_.c:320
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -47,68 +71,68 @@ msgstr ""
"Ďŕäňđűěęŕ 3D-ďŕńęŕđýíí˙ ˘ Âŕřŕé âłäýŕęŕđöĺ âűęŕíŕíŕ ňîëüęł ˘ XFree %s.\n"
"XFree %s ěîćŕ âűęŕđűńňî˘âŕöü ňîëüęł 2D-ďŕńęŕđýííĺ äë˙ ăýňŕé âłäýŕęŕđňű."
-#: ../../Xconfigurator.pm_.c:234 ../../Xconfigurator.pm_.c:257
+#: ../../Xconfigurator.pm_.c:322 ../../Xconfigurator.pm_.c:355
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Âŕřŕ âiäýŕęŕđňŕ ěîćŕ ěĺöü 3D-ďŕńęŕđýííĺ, ˙ęîĺ ďŕäňđűěëiâŕĺööŕ ňîëüęi XFree "
"%s."
-#: ../../Xconfigurator.pm_.c:236 ../../Xconfigurator.pm_.c:259
+#: ../../Xconfigurator.pm_.c:324 ../../Xconfigurator.pm_.c:357
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s ç ďŕäňđűěęŕé 3D-ďŕńęŕđýíí˙"
-#: ../../Xconfigurator.pm_.c:245
+#: ../../Xconfigurator.pm_.c:332 ../../Xconfigurator.pm_.c:346
#, c-format
msgid ""
-"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
-"Your card is supported by XFree %s which may have a better support in 2D."
+"Your card can have 3D hardware acceleration support with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
"Âŕřŕ âiäýŕęŕđňŕ ěîćŕ ěĺöü 3D-ďŕńęŕđýííĺ, ˙ęîĺ ďŕäňđűěëiâŕĺööŕ ňîëüęi XFree "
"%s.\n"
"ĚŔÉÖĹ ÍŔ ĄÂŔÇĹ, ŘŇÎ ĂÝŇŔ ÝĘŃĎĹĐŰĚĹÍŇŔËÜÍŔß ĎŔÄŇĐŰĚĘŔ I ĚÎĆŔ ĎĐŰÂĹŃÖI ÄŔ\n"
-"ÇŔÂIŃŔÍÍß ÂŔŘŔĂŔ ĘŔĚĎ'ŢŇÝĐŔ. Âŕřŕ âiäýŕęŕđňŕ ďŕäňđűěëiâŕĺööŕ XFree %s, ˙ęi\n"
-"ëĺďĺé ďŕäňđűěëiâŕĺ ęŕđňű ç 2D-ďŕńęŕđýííĺě."
+"ÇŔÂIŃŔÍÍß ÂŔŘŔĂŔ ĘŔĚĎ'ŢŇÝĐÓ."
+
+#: ../../Xconfigurator.pm_.c:334 ../../Xconfigurator.pm_.c:348
+#, c-format
+msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
+msgstr "XFree %s ç ýęńďĺđűěĺíňŕëüíŕé ďŕäňđűěęŕé 3D-ďŕńęŕđýíí˙"
-#: ../../Xconfigurator.pm_.c:248
+#: ../../Xconfigurator.pm_.c:343
#, c-format
msgid ""
-"Your card can have 3D hardware acceleration support with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
+"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
"Âŕřŕ âiäýŕęŕđňŕ ěîćŕ ěĺöü 3D-ďŕńęŕđýííĺ, ˙ęîĺ ďŕäňđűěëiâŕĺööŕ ňîëüęi XFree "
"%s.\n"
"ĚŔÉÖĹ ÍŔ ĄÂŔÇĹ, ŘŇÎ ĂÝŇŔ ÝĘŃĎĹĐŰĚĹÍŇŔËÜÍŔß ĎŔÄŇĐŰĚĘŔ I ĚÎĆŔ ĎĐŰÂĹŃÖI ÄŔ\n"
-"ÇŔÂIŃŔÍÍß ÂŔŘŔĂŔ ĘŔĚĎ'ŢŇÝĐŔ."
-
-#: ../../Xconfigurator.pm_.c:250
-#, c-format
-msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
-msgstr "XFree %s ç ýęńďĺđűěĺíňŕëüíŕé ďŕäňđűěęŕé 3D-ďŕńęŕđýíí˙"
+"ÇŔÂIŃŔÍÍß ÂŔŘŔĂŔ ĘŔĚĎ'ŢŇÝĐÓ. Âŕřŕ âiäýŕęŕđňŕ ďŕäňđűěëiâŕĺööŕ XFree %s, ˙ęi\n"
+"ëĺďĺé ďŕäňđűěëiâŕĺ ęŕđňű ç 2D-ďŕńęŕđýííĺě."
-#: ../../Xconfigurator.pm_.c:265
+#: ../../Xconfigurator.pm_.c:363
msgid "XFree configuration"
msgstr "Íŕńňđîéęŕ XFree"
-#: ../../Xconfigurator.pm_.c:303
+#: ../../Xconfigurator.pm_.c:396
msgid "Select the memory size of your graphic card"
msgstr "Ďŕçíŕ÷öĺ ďŕěĺđ âiäýŕďŕě˙öi"
-#: ../../Xconfigurator.pm_.c:347
+#: ../../Xconfigurator.pm_.c:443
msgid "Choose options for server"
-msgstr "Âűá˙đűöĺ äŕäŕňęîâű˙ íŕńňđîéęi äë˙ ńĺđâĺđŕ"
+msgstr "Ŕá˙đűöĺ äŕäŕňęîâű˙ íŕńňđîéęi äë˙ ńĺđâĺđŕ"
-#: ../../Xconfigurator.pm_.c:358
+#: ../../Xconfigurator.pm_.c:460
msgid "Choose a monitor"
-msgstr "Âűá˙đűöĺ ěŕíiňîđ"
+msgstr "Ŕá˙đűöĺ ěŕíiňîđ"
-#: ../../Xconfigurator.pm_.c:358
+#: ../../Xconfigurator.pm_.c:460
msgid "Monitor"
msgstr "Ěŕíiňîđ"
-#: ../../Xconfigurator.pm_.c:361
+#: ../../Xconfigurator.pm_.c:463
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -121,49 +145,49 @@ msgid ""
"monitor.\n"
" If in doubt, choose a conservative setting."
msgstr ""
-"Äâŕ ęđűňű÷íűő ďŕđŕěĺňđŕ - ăýňŕ ÷ŕńňŕňŕ âĺđňűęŕëüíŕé đŕçăîđňęi, öi\n"
-"÷ŕńňŕňŕ ŕäíŕ˘ëĺíí˙ ˘ń˙ăî ýęđŕíŕ, ŕ ňŕęńŕěŕ áîëĺé âŕćíű ďŕđŕěĺňđ -\n"
-"÷ŕńňŕňŕ ăŕđűçŕíňŕëüíŕé ńiíőđŕíiçŕöűi đŕçăîđňęi, öi ÷ŕńňŕňŕ âűâŕäŕ\n"
-"đŕäęî˘ ýęđŕíŕ.\n"
+"Äâŕ ęđűňű÷íűő ďŕđŕěĺňđű - ăýňŕ ÷ŕńöłí˙ âĺđňűęŕëüíŕé đŕçăîđňęi, öi\n"
+"÷ŕńöłí˙ ŕäíŕ˘ëĺíí˙ ˘ń˙ăî ýęđŕíó, ŕ ňŕęńŕěŕ áîëĺé âŕćíű ďŕđŕěĺňđ -\n"
+"÷ŕńöłí˙ ăŕđűçŕíňŕëüíŕé ńiíőđŕíiçŕöűi đŕçăîđňęi, öi ÷ŕńöłí˙ âűâŕäó\n"
+"đŕäęî˘ ýęđŕíó.\n"
"\n"
-"ÂĹËÜĚI ÂŔĆÍŔ, ęŕá âűáđŕíű âŕěi ěŕíiňîđ ěĺ˘ ÷ŕńňŕňó ńiíőđŕíiçŕöűi, ˙ęŕ˙\n"
-"íĺ ďĺđŕâűřŕĺ ôŕęňű÷íű˙ ěŕă÷űěŕńöi âŕřŕăŕ ěŕíiňîđŕ: ó ďđîöiëĺăëűě âűďŕäęó\n"
-"âű ěîćŕöĺ ńďîđöiöü ěŕíiňîđ.\n"
-"Ęŕëi âű ńóěí˙âŕĺöĺń˙, âűá˙đűöĺ ęŕíńĺđâŕňű˘íű˙ íŕńňđîéęi."
+"ÂĹËÜĚI ÂŔĆÍŔ, ęŕá ŕáđŕíű âŕěi ěŕíiňîđ ěĺ˘ ÷ŕńöłíţ ńiíőđŕíiçŕöűi, ˙ęŕ˙\n"
+"íĺ ďĺđŕâűřŕĺ ôŕęňű÷íű˙ ěŕă÷űěŕńöi âŕřŕăŕ ěŕíiňîđó: ó ďđîöiëĺăëűě âűďŕäęó\n"
+"âű ěîćŕöĺ ńŕďńŕâŕöü ěŕíiňîđ.\n"
+"Ęŕëi âű ńóěí˙âŕĺöĺń˙, ŕá˙đűöĺ ęŕíńĺđâŕňű˘íű˙ íŕńňđîéęi."
-#: ../../Xconfigurator.pm_.c:368
+#: ../../Xconfigurator.pm_.c:470
msgid "Horizontal refresh rate"
-msgstr "×ŕńňŕňŕ ăŕđűçŕíňŕëüíűé đŕçăîđňęi"
+msgstr "×ŕńöłí˙ ăŕđűçŕíňŕëüíűé đŕçăîđňęi"
-#: ../../Xconfigurator.pm_.c:368
+#: ../../Xconfigurator.pm_.c:471
msgid "Vertical refresh rate"
-msgstr "×ŕńňŕňŕ âĺđňűęŕëüíŕé đŕçăîđňęi"
+msgstr "×ŕńöłí˙ âĺđňűęŕëüíŕé đŕçăîđňęi"
-#: ../../Xconfigurator.pm_.c:407
+#: ../../Xconfigurator.pm_.c:508
msgid "Monitor not configured"
msgstr "Ěŕíiňîđ ďŕęóëü íĺ íŕńňđîĺíű"
-#: ../../Xconfigurator.pm_.c:410
+#: ../../Xconfigurator.pm_.c:511
msgid "Graphic card not configured yet"
msgstr "Âiäýŕęŕđňŕ ˙ř÷ý íĺ ŕäęŕíôiăóđŕâŕíŕ"
-#: ../../Xconfigurator.pm_.c:413
+#: ../../Xconfigurator.pm_.c:514
msgid "Resolutions not chosen yet"
-msgstr "Ďŕěĺđű ýęđŕíŕ ˙ř÷ý íĺ ďŕçíŕ÷ŕíű"
+msgstr "Ďŕěĺđű ýęđŕíó ˙ř÷ý íĺ ďŕçíŕ÷ŕíű"
-#: ../../Xconfigurator.pm_.c:429
+#: ../../Xconfigurator.pm_.c:530
msgid "Do you want to test the configuration?"
msgstr "Öi ćŕäŕĺöĺ ďđŕňýńöiđŕâŕöü íŕńňđîéęi?"
-#: ../../Xconfigurator.pm_.c:433
+#: ../../Xconfigurator.pm_.c:534
msgid "Warning: testing this graphic card may freeze your computer"
msgstr "Ďŕď˙đýäćŕííĺ: ňýńöiđŕâŕííĺ íŕ ăýňŕé âiäýŕęŕđöĺ íĺá˙ńďĺ÷íŕ"
-#: ../../Xconfigurator.pm_.c:436
+#: ../../Xconfigurator.pm_.c:537
msgid "Test of the configuration"
msgstr "Ďđŕâĺđęŕ ďŕđŕěĺňđࢠíŕńňđîéęi"
-#: ../../Xconfigurator.pm_.c:475
+#: ../../Xconfigurator.pm_.c:576
msgid ""
"\n"
"try to change some parameters"
@@ -171,146 +195,153 @@ msgstr ""
"\n"
"ďŕńďđŕáóéöĺ çě˙íiöü íĺęŕňîđű˙ ďŕđŕěĺňđű"
-#: ../../Xconfigurator.pm_.c:475
+#: ../../Xconfigurator.pm_.c:576
msgid "An error has occurred:"
msgstr "Ďŕěűëęŕ:"
-#: ../../Xconfigurator.pm_.c:497
+#: ../../Xconfigurator.pm_.c:598
#, c-format
msgid "Leaving in %d seconds"
-msgstr "Çŕńňŕëîń˙ %d ń˙ęóíä"
+msgstr "Çŕńňŕëîń˙ %d ńĺęóíäŕ˘"
-#: ../../Xconfigurator.pm_.c:507
+#: ../../Xconfigurator.pm_.c:609
msgid "Is this the correct setting?"
msgstr "Ăýňŕ äŕęëŕäíű˙ ďŕđŕěĺňđű íŕńňđîéęi?"
-#: ../../Xconfigurator.pm_.c:515
+#: ../../Xconfigurator.pm_.c:617
msgid "An error has occurred, try to change some parameters"
msgstr "Ŕňđűěŕíŕ ďŕěűëęŕ, ďŕńďđŕáóéöĺ çě˙íiöü ďŕđŕěĺňđű"
-#: ../../Xconfigurator.pm_.c:552 ../../printerdrake.pm_.c:276
+#: ../../Xconfigurator.pm_.c:663 ../../printerdrake.pm_.c:277
+#: ../../services.pm_.c:125
msgid "Resolution"
-msgstr "Ďŕěĺđű ýęđŕíŕ"
+msgstr "Ďŕěĺđű ýęđŕíó"
-#: ../../Xconfigurator.pm_.c:587
+#: ../../Xconfigurator.pm_.c:710
msgid "Choose the resolution and the color depth"
-msgstr "Âűáŕđ ďŕěĺđࢠýęđŕíŕ i ăëűáiíi ęîëĺđó"
+msgstr "Âűáŕđ ďŕěĺđࢠýęđŕíó i ăëűáiíi ęîëĺđó"
-#: ../../Xconfigurator.pm_.c:589
+#: ../../Xconfigurator.pm_.c:712
#, c-format
msgid "Graphic card: %s"
msgstr "Âiäýŕęŕđňŕ: %s"
-#: ../../Xconfigurator.pm_.c:590
+#: ../../Xconfigurator.pm_.c:713
#, c-format
msgid "XFree86 server: %s"
msgstr "Ńĺđâĺđ XFree86: %s"
-#: ../../Xconfigurator.pm_.c:599
+#: ../../Xconfigurator.pm_.c:729 ../../standalone/draknet_.c:280
+#: ../../standalone/draknet_.c:283
+#, fuzzy
+msgid "Expert Mode"
+msgstr "Ýęńďĺđň"
+
+#: ../../Xconfigurator.pm_.c:730
msgid "Show all"
msgstr "Ďŕęŕçŕöü óń¸"
-#: ../../Xconfigurator.pm_.c:623
+#: ../../Xconfigurator.pm_.c:773
msgid "Resolutions"
-msgstr "Ďŕěĺđű ýęđŕíŕ"
+msgstr "Ďŕěĺđű ýęđŕíó"
-#: ../../Xconfigurator.pm_.c:1021
+#: ../../Xconfigurator.pm_.c:1299
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Ňűď ęëŕâi˙ňóđű: %s\n"
-#: ../../Xconfigurator.pm_.c:1022
+#: ../../Xconfigurator.pm_.c:1300
#, c-format
msgid "Mouse type: %s\n"
msgstr "Ňűď ěűřű: %s\n"
-#: ../../Xconfigurator.pm_.c:1023
+#: ../../Xconfigurator.pm_.c:1301
#, c-format
msgid "Mouse device: %s\n"
msgstr "Ěűř: %s\n"
-#: ../../Xconfigurator.pm_.c:1024
+#: ../../Xconfigurator.pm_.c:1302
#, c-format
msgid "Monitor: %s\n"
msgstr "Ěŕíiňîđ: %s\n"
-#: ../../Xconfigurator.pm_.c:1025
+#: ../../Xconfigurator.pm_.c:1303
#, c-format
msgid "Monitor HorizSync: %s\n"
-msgstr "×ŕńňŕňŕ ăŕđ.đŕçă. ěŕíiňîđŕ: %s\n"
+msgstr "×ŕńöłí˙ ăŕđ.đŕçă. ěŕíiňîđó: %s\n"
-#: ../../Xconfigurator.pm_.c:1026
+#: ../../Xconfigurator.pm_.c:1304
#, c-format
msgid "Monitor VertRefresh: %s\n"
-msgstr "×ŕńňŕňŕ âĺđň.đŕçă. ěŕíiňîđŕ: %s\n"
+msgstr "×ŕńöłí˙ âĺđň.đŕçă. ěŕíiňîđó: %s\n"
-#: ../../Xconfigurator.pm_.c:1027
+#: ../../Xconfigurator.pm_.c:1305
#, c-format
msgid "Graphic card: %s\n"
msgstr "Âiäýŕęŕđňŕ: %s\n"
-#: ../../Xconfigurator.pm_.c:1028
+#: ../../Xconfigurator.pm_.c:1306
#, c-format
msgid "Graphic memory: %s kB\n"
msgstr "Âiäýŕďŕě˙öü: %s Ęá\n"
-#: ../../Xconfigurator.pm_.c:1030
+#: ../../Xconfigurator.pm_.c:1308
#, c-format
msgid "Color depth: %s\n"
msgstr "Ďŕđŕěĺňđű ăëűáiíi ęîëĺđó: %s\n"
-#: ../../Xconfigurator.pm_.c:1031
+#: ../../Xconfigurator.pm_.c:1309
#, c-format
msgid "Resolution: %s\n"
-msgstr "Ďŕěĺđű ýęđŕíŕ: %s\n"
+msgstr "Ďŕěĺđű ýęđŕíó: %s\n"
-#: ../../Xconfigurator.pm_.c:1033
+#: ../../Xconfigurator.pm_.c:1311
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Ńĺđâĺđ XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1034
+#: ../../Xconfigurator.pm_.c:1312
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Ńĺđâĺđ XFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1053
+#: ../../Xconfigurator.pm_.c:1331
msgid "Preparing X-Window configuration"
msgstr "Ďŕäđűőňî˘ęŕ íŕńňđîéęi X-Window"
-#: ../../Xconfigurator.pm_.c:1067
+#: ../../Xconfigurator.pm_.c:1351
+msgid "What do you want to do?"
+msgstr "Řňî âű ćŕäŕĺöĺ çđŕáiöü?"
+
+#: ../../Xconfigurator.pm_.c:1356
msgid "Change Monitor"
msgstr "Çě˙íiöü ěŕíiňîđ"
-#: ../../Xconfigurator.pm_.c:1068
+#: ../../Xconfigurator.pm_.c:1357
msgid "Change Graphic card"
msgstr "Çě˙íiöü âiäýŕęŕđňó"
-#: ../../Xconfigurator.pm_.c:1069
+#: ../../Xconfigurator.pm_.c:1359
msgid "Change Server options"
-msgstr "Çě˙íiöü íŕńňđîéęi Ńĺđâĺđŕ"
+msgstr "Çě˙íiöü íŕńňđîéęi Ńĺđâĺđó"
-#: ../../Xconfigurator.pm_.c:1070
+#: ../../Xconfigurator.pm_.c:1360
msgid "Change Resolution"
-msgstr "Çě˙íiöü ďŕěĺđű ýęđŕíŕ"
+msgstr "Çě˙íiöü ďŕěĺđű ýęđŕíó"
-#: ../../Xconfigurator.pm_.c:1071
+#: ../../Xconfigurator.pm_.c:1361
msgid "Show information"
msgstr "Iíôŕđěŕöű˙"
-#: ../../Xconfigurator.pm_.c:1072
+#: ../../Xconfigurator.pm_.c:1362
msgid "Test again"
msgstr "Ďđŕâĺđűöü ˙ř÷ý đŕç"
-#: ../../Xconfigurator.pm_.c:1073 ../../standalone/rpmdrake_.c:46
+#: ../../Xconfigurator.pm_.c:1363 ../../bootlook.pm_.c:220
msgid "Quit"
msgstr "Âűőŕä"
-#: ../../Xconfigurator.pm_.c:1077 ../../standalone/drakboot_.c:40
-msgid "What do you want to do?"
-msgstr "Řňî âű ćŕäŕĺöĺ çđŕáiöü?"
-
-#: ../../Xconfigurator.pm_.c:1084
+#: ../../Xconfigurator.pm_.c:1371
#, c-format
msgid ""
"Keep the changes?\n"
@@ -323,20 +354,20 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfigurator.pm_.c:1105
+#: ../../Xconfigurator.pm_.c:1392
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Ęŕëi ëŕńęŕ, ďĺđŕéäçiöĺ ˘ %s äë˙ ŕęňűâŕöűi çě˙íĺíí˙˘"
-#: ../../Xconfigurator.pm_.c:1125
+#: ../../Xconfigurator.pm_.c:1412
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Ęŕëi ëŕńęŕ, âűéäçiöĺ, ŕ ďîňűě ńęŕđűńňŕéöĺ Ctrl-Alt-BackSpace"
-#: ../../Xconfigurator.pm_.c:1128
+#: ../../Xconfigurator.pm_.c:1415
msgid "X at startup"
msgstr "Çŕďóńę X ďđű ńňŕđöĺ ńińňýěű"
-#: ../../Xconfigurator.pm_.c:1129
+#: ../../Xconfigurator.pm_.c:1416
msgid ""
"I can set up your computer to automatically start X upon booting.\n"
"Would you like X to start when you reboot?"
@@ -344,45 +375,25 @@ msgstr ""
"Ěîćíŕ íŕńňđîiöü ńińňýěó äë˙ ŕ˘ňŕěŕňű÷íŕăŕ çŕďóńęó X ďŕńë˙ ńňŕđňó ńińňýěű.\n"
"Ćŕäŕĺöĺ, ęŕá X ńňŕđňŕâࢠďđű đýńňŕđöĺ?"
-#: ../../Xconfigurator.pm_.c:1153
-msgid "Autologin"
-msgstr "Ŕ˘ňŕěŕňű÷íű ˘âŕőîä ó ńińňýěó"
-
-#: ../../Xconfigurator.pm_.c:1154
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"If you don't want to use this feature, click on the cancel button."
-msgstr ""
-"Ěîćíŕ íŕńňđîiöü ńińňýěó äë˙ ŕ˘ňŕěŕňű÷íŕăŕ ˘ŕâőîäó ˘ ńińňýěó äë˙\n"
-"ŕäíŕăî ęŕđűńňŕëüíięŕ. Ęŕëi Âű íĺ ćŕäŕĺöĺ ăýňŕăŕ, íŕöińíiöĺ \"Ŕäěĺíŕ\"."
-
-#: ../../Xconfigurator.pm_.c:1156
-msgid "Choose the default user:"
-msgstr "Âűáĺđűöĺ ŕńíî˘íŕăŕ ęŕđűńňŕëüíięŕ:"
-
-#: ../../Xconfigurator.pm_.c:1157
-msgid "Choose the window manager to run:"
-msgstr "Âűá˙đűöĺ ěýíýäćýđ âîęíŕ˘:"
-
#: ../../Xconfigurator_consts.pm_.c:6
msgid "256 colors (8 bits)"
-msgstr "256 ęîëĺđࢠ(8 áiň)"
+msgstr "256 ęîëĺđࢠ(8 áiňŕ˘)"
#: ../../Xconfigurator_consts.pm_.c:7
msgid "32 thousand colors (15 bits)"
-msgstr "32 ňűń˙÷ű ęîëĺđࢠ(15 áiň)"
+msgstr "32 ňűń˙÷ű ęîëĺđࢠ(15 áiňŕ˘)"
#: ../../Xconfigurator_consts.pm_.c:8
msgid "65 thousand colors (16 bits)"
-msgstr "65 ňűń˙÷ ęîëĺđࢠ(16 áiň)"
+msgstr "65 ňűń˙÷ ęîëĺđࢠ(16 áiňŕ˘)"
#: ../../Xconfigurator_consts.pm_.c:9
msgid "16 million colors (24 bits)"
-msgstr "16 ěiëü¸íࢠęîëĺđࢠ(24 áiňŕ)"
+msgstr "16 ěiëü¸íࢠęîëĺđࢠ(24 áiňű)"
#: ../../Xconfigurator_consts.pm_.c:10
msgid "4 billion colors (32 bits)"
-msgstr "4 ěiëi˙đäŕ ęîëĺđࢠ(24 áiňŕ)"
+msgstr "4 ěiëi˙đäŕ ęîëĺđࢠ(24 áiňű)"
#: ../../Xconfigurator_consts.pm_.c:106
msgid "256 kB"
@@ -412,163 +423,214 @@ msgstr "8 Ěá"
msgid "16 MB or more"
msgstr "16 Ěá öi áîëĺé"
-#: ../../Xconfigurator_consts.pm_.c:117 ../../Xconfigurator_consts.pm_.c:118
+#: ../../Xconfigurator_consts.pm_.c:120
msgid "Standard VGA, 640x480 at 60 Hz"
msgstr "Ńňŕíäŕđňíű VGA, 640x480 ďđű 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:119
+#: ../../Xconfigurator_consts.pm_.c:121
msgid "Super VGA, 800x600 at 56 Hz"
msgstr "Super VGA, 800x600 ďđű 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:120
+#: ../../Xconfigurator_consts.pm_.c:122
msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
-msgstr "Ńóěĺńíű ç 8514, 1024x768 ďđű 87 Hz ďđŕçńňđî÷íű (í˙ěŕ 800x600)"
+msgstr "Ńóěĺńíű ç 8514, 1024x768 ďđű 87 Hz ďđŕçđŕäęîâŕ (í˙ěŕ 800x600)"
-#: ../../Xconfigurator_consts.pm_.c:121
+#: ../../Xconfigurator_consts.pm_.c:123
msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
-msgstr "Super VGA, 1024x768 ďđi 87 Hz ďđŕçńňđî÷íű, 800x600 ďđű 56 Hz"
+msgstr "Super VGA, 1024x768 ďđi 87 Hz ďđŕçđŕäęîâŕ, 800x600 ďđű 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:122
+#: ../../Xconfigurator_consts.pm_.c:124
msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
msgstr "Extended Super VGA, 800x600 ďđű 60 Hz, 640x480 ďđű 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:123
+#: ../../Xconfigurator_consts.pm_.c:125
msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
-msgstr "Íĺďđŕçńňđî÷íű SVGA, 1024x768 ďđű 60 Hz, 800x600 ďđű 72 Hz"
+msgstr "Íĺďđŕçđŕäęîâŕ SVGA, 1024x768 ďđű 60 Hz, 800x600 ďđű 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:124
+#: ../../Xconfigurator_consts.pm_.c:126
msgid "High Frequency SVGA, 1024x768 at 70 Hz"
-msgstr "Âűńîęŕ÷ŕńňîňíű SVGA, 1024x768 ďđű 70 Hz"
+msgstr "Âűńîę÷ŕńöłí¸âű SVGA, 1024x768 ďđű 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:125
+#: ../../Xconfigurator_consts.pm_.c:127
msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
-msgstr "Řěŕň÷ŕńňîňíű, ˙ęi çäîëüíű ďŕäňđűěëiâŕöü 1280x1024 ďđű 60 Hz"
+msgstr "Řěŕň÷ŕńöłí¸âű, ˙ęi çäîëüíű ďŕäňđűěëiâŕöü 1280x1024 ďđű 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:126
+#: ../../Xconfigurator_consts.pm_.c:128
msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
-msgstr "Řěŕň÷ŕńňîňíű, ˙ęi çäîëüíű ďŕäňđűěëiâŕöü 1280x1024 ďđű 74 Hz"
+msgstr "Řěŕň÷ŕńöłí¸âű, ˙ęi çäîëüíű ďŕäňđűěëiâŕöü 1280x1024 ďđű 74 Hz"
-#: ../../Xconfigurator_consts.pm_.c:127
+#: ../../Xconfigurator_consts.pm_.c:129
msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
-msgstr "Řěŕň÷ŕńňîňíű, ˙ęi çäîëüíű ďŕäňđűěëiâŕöü 1280x1024 ďđű 76 Hz"
+msgstr "Řěŕň÷ŕńöłí¸âű, ˙ęi çäîëüíű ďŕäňđűěëiâŕöü 1280x1024 ďđű 76 Hz"
-#: ../../Xconfigurator_consts.pm_.c:128
+#: ../../Xconfigurator_consts.pm_.c:130
msgid "Monitor that can do 1600x1200 at 70 Hz"
msgstr "Ěŕíiňîđ, ˙ęi çäîëüíű ďŕäňđűěëiâŕöü 1600x1200 ďđű 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:129
+#: ../../Xconfigurator_consts.pm_.c:131
msgid "Monitor that can do 1600x1200 at 76 Hz"
msgstr "Ěŕíiňîđ, ˙ęi çäîëüíű ďŕäňđűěëiâŕöü 1600x1200 ďđű 76 Hz"
-#: ../../any.pm_.c:91 ../../any.pm_.c:121 ../../any_new.pm_.c:91
-#: ../../any_new.pm_.c:121
+#: ../../any.pm_.c:99 ../../any.pm_.c:124
msgid "First sector of boot partition"
-msgstr "Ďĺđřű ńĺęňŕđ çŕăđóçŕ÷íŕăŕ đŕçäçĺëŕ"
+msgstr "Ďĺđřű ńĺęňŕđ çŕăđóçŕ÷íŕăŕ đŕçäçĺëó"
-#: ../../any.pm_.c:91 ../../any.pm_.c:121 ../../any.pm_.c:150
-#: ../../any_new.pm_.c:91 ../../any_new.pm_.c:121 ../../any_new.pm_.c:150
+#: ../../any.pm_.c:99 ../../any.pm_.c:124 ../../any.pm_.c:196
msgid "First sector of drive (MBR)"
msgstr "Ďĺđřű ńĺęňŕđ ďđűëŕäű (MBR)"
-#: ../../any.pm_.c:95 ../../any_new.pm_.c:95
+#: ../../any.pm_.c:103
msgid "SILO Installation"
-msgstr "Óńňŕ븢ęŕ SILO"
+msgstr "Óńňŕë˙âŕííĺ SILO"
-#: ../../any.pm_.c:96 ../../any.pm_.c:102 ../../any_new.pm_.c:96
-#: ../../any_new.pm_.c:102
+#: ../../any.pm_.c:104 ../../any.pm_.c:117
msgid "Where do you want to install the bootloader?"
msgstr "Ęóäű âű ćŕäŕĺöĺ ˘ńňŕë˙âŕöü ďŕ÷ŕňęîâű çŕăđóç÷űę?"
-#: ../../any.pm_.c:101 ../../any_new.pm_.c:101
+#: ../../any.pm_.c:116
msgid "LILO/grub Installation"
-msgstr "Óńňŕíî˘ęŕ LILO/GRUB"
+msgstr "Óńňŕë˙âŕííĺ LILO/GRUB"
-#: ../../any.pm_.c:111 ../../any_new.pm_.c:111
-#: ../../install_steps_interactive.pm_.c:736
-msgid "None"
-msgstr "Í˙ěŕ"
+#: ../../any.pm_.c:128 ../../any.pm_.c:142
+msgid "SILO"
+msgstr "SILO"
-#: ../../any.pm_.c:111 ../../any_new.pm_.c:111
-msgid "Which bootloader(s) do you want to use?"
-msgstr "ßęi ďŕ÷ŕňęîâű çŕăđóç÷űę âű ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü?"
+#: ../../any.pm_.c:130
+msgid "LILO with text menu"
+msgstr ""
+
+#: ../../any.pm_.c:131 ../../any.pm_.c:142
+msgid "LILO with graphical menu"
+msgstr ""
-#: ../../any.pm_.c:125 ../../any_new.pm_.c:125
+#: ../../any.pm_.c:134
+msgid "Grub"
+msgstr "Grub"
+
+#: ../../any.pm_.c:138
+msgid "Boot from DOS/Windows (loadlin)"
+msgstr ""
+
+#: ../../any.pm_.c:140 ../../any.pm_.c:142
+msgid "Yaboot"
+msgstr "Yaboot"
+
+#: ../../any.pm_.c:148 ../../any.pm_.c:179
+msgid "Bootloader main options"
+msgstr "Ăŕëî˘íű˙ îďöűi ďŕ÷ŕňęîâŕăŕ çŕăđóç÷űęó"
+
+#: ../../any.pm_.c:149 ../../any.pm_.c:180
+#, fuzzy
+msgid "Bootloader to use"
+msgstr "Ăŕëî˘íű˙ îďöűi ďŕ÷ŕňęîâŕăŕ çŕăđóç÷űęó"
+
+#: ../../any.pm_.c:151
msgid "Bootloader installation"
-msgstr "Óńňŕ븢ęŕ çŕăđóç÷űęŕ"
+msgstr "Óńňŕë˙âŕííĺ çŕăđóç÷űęó"
-#: ../../any.pm_.c:127 ../../any_new.pm_.c:127
+#: ../../any.pm_.c:153 ../../any.pm_.c:182
msgid "Boot device"
msgstr "Çŕăđóçŕ÷íŕ˙ ďđűëŕäŕ"
-#: ../../any.pm_.c:128 ../../any_new.pm_.c:128
+#: ../../any.pm_.c:154
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (íĺ ďđŕöóĺ ďđű ńňŕđűő âĺđńi˙ő BIOS)"
-#: ../../any.pm_.c:129 ../../any_new.pm_.c:129
+#: ../../any.pm_.c:155
msgid "Compact"
msgstr "Ęŕěďŕęňíŕ"
-#: ../../any.pm_.c:129 ../../any_new.pm_.c:129
+#: ../../any.pm_.c:155
msgid "compact"
msgstr "ęŕěďŕęňíŕ"
-#: ../../any.pm_.c:130 ../../any.pm_.c:199 ../../any_new.pm_.c:130
-#: ../../any_new.pm_.c:199
+#: ../../any.pm_.c:156 ../../any.pm_.c:255
msgid "Video mode"
msgstr "Âiäýŕ-đýćűě"
-#: ../../any.pm_.c:132 ../../any_new.pm_.c:132
+#: ../../any.pm_.c:158
msgid "Delay before booting default image"
-msgstr "Çŕňđűěęŕ ďĺđŕä çŕăđóçęŕé âîáđŕçŕ ďŕ äŕěŕ˘ëĺííţ"
+msgstr "Çŕňđűěęŕ ďĺđŕä çŕăđóçęŕé âîáđŕçó ďŕ äŕěŕ˘ëĺííţ"
-#: ../../any.pm_.c:134 ../../any_new.pm_.c:134
-#: ../../install_steps_interactive.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:815 ../../netconnect.pm_.c:560
-#: ../../netconnect_new.pm_.c:686 ../../printerdrake.pm_.c:94
-#: ../../printerdrake.pm_.c:128 ../../standalone/adduserdrake_.c:42
+#: ../../any.pm_.c:160 ../../any.pm_.c:737
+#: ../../install_steps_interactive.pm_.c:904 ../../netconnect.pm_.c:627
+#: ../../printerdrake.pm_.c:98 ../../printerdrake.pm_.c:132
+#: ../../standalone/draknet_.c:567
msgid "Password"
msgstr "Ďŕđîëü"
-#: ../../any.pm_.c:135 ../../any_new.pm_.c:135
-#: ../../install_steps_interactive.pm_.c:765
-#: ../../install_steps_interactive.pm_.c:816
-#: ../../standalone/adduserdrake_.c:43
+#: ../../any.pm_.c:161 ../../any.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:905
msgid "Password (again)"
msgstr "Ďŕ˘ňŕđűöĺ ďŕđîëü"
-#: ../../any.pm_.c:136 ../../any_new.pm_.c:136
+#: ../../any.pm_.c:162
msgid "Restrict command line options"
-msgstr "Ŕáěĺćŕâŕííĺ îďöűé ęŕěŕíäíŕăŕ đŕäęŕ"
+msgstr "Ŕáěĺćŕâŕííĺ îďöű˙˘ ęŕěŕíäíŕăŕ đŕäęŕ"
-#: ../../any.pm_.c:136 ../../any_new.pm_.c:136
+#: ../../any.pm_.c:162
msgid "restrict"
msgstr "ŕáěĺćŕâŕííĺ"
-#: ../../any.pm_.c:142 ../../any_new.pm_.c:142
-msgid "Bootloader main options"
-msgstr "Ăŕëî˘íű˙ îďöűi ďŕ÷ŕňęîâŕăŕ çŕăđóç÷űęŕ"
+#: ../../any.pm_.c:164
+msgid "Clean /tmp at each boot"
+msgstr "Ŕ÷űř÷ŕöü /tmp ďđű ęîćíŕé çŕăđóçöű"
-#: ../../any.pm_.c:145 ../../any_new.pm_.c:145
+#: ../../any.pm_.c:165
+#, c-format
+msgid "Precise RAM size if needed (found %d MB)"
+msgstr "Ďŕçíŕ÷öĺ äŕęëŕäíű ďŕěĺđ RAM (çíîéäçĺíŕ %d Má)"
+
+#: ../../any.pm_.c:167
+msgid "Enable multi profiles"
+msgstr "Äŕńňóďíŕ řěŕň ďđîôië˙˘"
+
+#: ../../any.pm_.c:171
+msgid "Give the ram size in MB"
+msgstr "Ďŕçíŕ÷öĺ ďŕěĺđ RAM ó Má"
+
+#: ../../any.pm_.c:173
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
-"Îďöű˙ ``Ŕáěĺćŕâŕííĺ îďöűé ęŕěŕíäíŕăŕ đŕäęŕ'' íĺ âűęŕđűńňî˘âŕĺööŕ áĺç ďŕđîë˙"
+"Îďöű˙ ``Ŕáěĺćŕâŕííĺ îďöű˙˘ ęŕěŕíäíŕăŕ đŕäęó'' íĺ âűęŕđűńňî˘âŕĺööŕ áĺç ďŕđîë˙"
-#: ../../any.pm_.c:146 ../../any_new.pm_.c:146
-#: ../../install_steps_interactive.pm_.c:774
-#: ../../install_steps_interactive.pm_.c:829
-#: ../../standalone/adduserdrake_.c:56
+#: ../../any.pm_.c:174 ../../any.pm_.c:714
+#: ../../install_steps_interactive.pm_.c:899
msgid "Please try again"
msgstr "Ďŕńďđŕáóéöĺ ˙ř÷ý đŕç"
-#: ../../any.pm_.c:146 ../../any_new.pm_.c:146
-#: ../../install_steps_interactive.pm_.c:774
-#: ../../install_steps_interactive.pm_.c:829
-#: ../../standalone/adduserdrake_.c:56
+#: ../../any.pm_.c:174 ../../any.pm_.c:714
+#: ../../install_steps_interactive.pm_.c:899
msgid "The passwords do not match"
msgstr "Ďŕđîëi íĺ ńóďŕäŕţöü"
-#: ../../any.pm_.c:157 ../../any_new.pm_.c:157
+#: ../../any.pm_.c:181
+msgid "Init Message"
+msgstr ""
+
+#: ../../any.pm_.c:183
+msgid "Open Firmware Delay"
+msgstr ""
+
+#: ../../any.pm_.c:184
+msgid "Kernel Boot Timeout"
+msgstr ""
+
+#: ../../any.pm_.c:185
+msgid "Enable CD Boot?"
+msgstr ""
+
+#: ../../any.pm_.c:186
+msgid "Enable OF Boot?"
+msgstr ""
+
+#: ../../any.pm_.c:187
+#, fuzzy
+msgid "Default OS?"
+msgstr "Ďŕ äŕěŕ˘ëĺííţ"
+
+#: ../../any.pm_.c:209
msgid ""
"Here are the different entries.\n"
"You can add some more or change the existing ones."
@@ -576,143 +638,148 @@ msgstr ""
"Ó ěĺíţ ěŕţööŕ íŕńňóďíű˙ ďóíęňű.\n"
"Âű ěîćŕöĺ äŕäŕöü ˙ř÷ý, ŕëüáî çě˙íiöü ińíóţ÷ű˙."
-#: ../../any.pm_.c:165 ../../any_new.pm_.c:165 ../../printerdrake.pm_.c:352
-#: ../../standalone/rpmdrake_.c:302
+#: ../../any.pm_.c:219 ../../printerdrake.pm_.c:356
msgid "Add"
msgstr "Äŕäŕöü"
-#: ../../any.pm_.c:165 ../../any_new.pm_.c:165 ../../diskdrake.pm_.c:46
-#: ../../install_steps_interactive.pm_.c:809 ../../netconnect.pm_.c:842
-#: ../../netconnect_new.pm_.c:984 ../../printerdrake.pm_.c:352
-#: ../../standalone/adduserdrake_.c:36
+#: ../../any.pm_.c:219 ../../any.pm_.c:725 ../../diskdrake.pm_.c:46
+#: ../../printerdrake.pm_.c:356
msgid "Done"
msgstr "Çđîáëĺíŕ"
-#: ../../any.pm_.c:174 ../../any_new.pm_.c:174
+#: ../../any.pm_.c:219
+#, fuzzy
+msgid "Modify"
+msgstr "Çě˙íiöü RAID"
+
+#: ../../any.pm_.c:227
msgid "Which type of entry do you want to add?"
msgstr "ßęi ňűď ďóíęňŕ ćŕäŕĺöĺ äŕäŕöü?"
-#: ../../any.pm_.c:175 ../../any_new.pm_.c:175
+#: ../../any.pm_.c:228
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:175 ../../any_new.pm_.c:175
+#: ../../any.pm_.c:228
msgid "Other OS (SunOS...)"
msgstr "Iířŕ˙ ŔŃ (SunOS,...)"
-#: ../../any.pm_.c:175 ../../any_new.pm_.c:175
+#: ../../any.pm_.c:229
+msgid "Other OS (MacOS...)"
+msgstr "Iířŕ˙ ŔŃ (MacOS,...)"
+
+#: ../../any.pm_.c:229
msgid "Other OS (windows...)"
-msgstr "Iířŕ˙ OS (windows...)"
+msgstr "Iířŕ˙ ŔŃ (windows...)"
-#: ../../any.pm_.c:196 ../../any_new.pm_.c:196
+#: ../../any.pm_.c:249 ../../any.pm_.c:251
msgid "Image"
msgstr "Âîáđŕç"
-#: ../../any.pm_.c:197 ../../any.pm_.c:206 ../../any_new.pm_.c:197
-#: ../../any_new.pm_.c:206
+#: ../../any.pm_.c:252 ../../any.pm_.c:263
msgid "Root"
msgstr "Root"
-#: ../../any.pm_.c:198 ../../any_new.pm_.c:198
+#: ../../any.pm_.c:253 ../../any.pm_.c:282
msgid "Append"
msgstr "Äŕëó÷űöü"
-#: ../../any.pm_.c:200 ../../any_new.pm_.c:200
+#: ../../any.pm_.c:257
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:201 ../../any_new.pm_.c:201
+#: ../../any.pm_.c:258
msgid "Read-write"
msgstr "×űňŕííĺ-çŕďiń"
-#: ../../any.pm_.c:208 ../../any_new.pm_.c:208
+#: ../../any.pm_.c:265
msgid "Table"
msgstr "Ňŕáëiöŕ"
-#: ../../any.pm_.c:209 ../../any_new.pm_.c:209
+#: ../../any.pm_.c:266
msgid "Unsafe"
msgstr "Íĺíŕäçĺéíŕ"
-#: ../../any.pm_.c:215 ../../any_new.pm_.c:215
+#: ../../any.pm_.c:273 ../../any.pm_.c:278 ../../any.pm_.c:281
msgid "Label"
msgstr "Ěĺňęŕ"
-#: ../../any.pm_.c:217 ../../any_new.pm_.c:217
+#: ../../any.pm_.c:275 ../../any.pm_.c:286
msgid "Default"
msgstr "Ďŕ äŕěŕ˘ëĺííţ"
-#: ../../any.pm_.c:220 ../../any_new.pm_.c:220 ../../install_gtk.pm_.c:82
-#: ../../install_steps_interactive.pm_.c:762 ../../interactive.pm_.c:76
-#: ../../interactive.pm_.c:86 ../../interactive.pm_.c:250
-#: ../../interactive_newt.pm_.c:51 ../../interactive_newt.pm_.c:99
-#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:243
-#: ../../my_gtk.pm_.c:486 ../../my_gtk.pm_.c:661 ../../printerdrake.pm_.c:444
-#: ../../printerdrake.pm_.c:464
-msgid "Ok"
-msgstr "Îę"
+#: ../../any.pm_.c:283
+#, fuzzy
+msgid "Initrd-size"
+msgstr "Initrd"
+
+#: ../../any.pm_.c:285
+msgid "NoVideo"
+msgstr ""
-#: ../../any.pm_.c:220 ../../any_new.pm_.c:220
+#: ../../any.pm_.c:293
msgid "Remove entry"
msgstr "Âűäŕëiöü çŕďiń"
-#: ../../any.pm_.c:223 ../../any_new.pm_.c:223
+#: ../../any.pm_.c:296
msgid "Empty label not allowed"
msgstr "Ďóńňŕ˙ ěĺňęŕ íĺ äŕçâŕë˙ĺööŕ"
-#: ../../any.pm_.c:224 ../../any_new.pm_.c:224
+#: ../../any.pm_.c:297
msgid "This label is already used"
msgstr "Ăýňŕ˙ ěĺňęŕ ˘ćî âűęŕđűńňî˘âŕĺööŕ"
-#: ../../any.pm_.c:500 ../../any_new.pm_.c:492
+#: ../../any.pm_.c:316
+#, fuzzy
+msgid "What type of partitioning?"
+msgstr "ßęi ňűď äđóęŕđęi âű ěŕĺöĺ?"
+
+#: ../../any.pm_.c:604
#, c-format
msgid "Found %s %s interfaces"
msgstr "Çíîéäçĺíű %s %s iíňýđôĺéńű"
-#: ../../any.pm_.c:501 ../../any_new.pm_.c:493
+#: ../../any.pm_.c:605
msgid "Do you have another one?"
msgstr "Öi ¸ńöü ó âŕń iířű?"
-#: ../../any.pm_.c:502 ../../any_new.pm_.c:494
+#: ../../any.pm_.c:606
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Öi ¸ńöü ó âŕń %s iíňýđôĺéń?"
-#: ../../any.pm_.c:504 ../../any_new.pm_.c:496 ../../interactive.pm_.c:81
-#: ../../my_gtk.pm_.c:485 ../../netconnect.pm_.c:90 ../../netconnect.pm_.c:470
-#: ../../netconnect_new.pm_.c:148 ../../netconnect_new.pm_.c:509
-#: ../../printerdrake.pm_.c:233
+#: ../../any.pm_.c:608 ../../interactive.pm_.c:100 ../../my_gtk.pm_.c:615
+#: ../../printerdrake.pm_.c:237
msgid "No"
msgstr "Íĺ"
-#: ../../any.pm_.c:504 ../../any_new.pm_.c:496 ../../interactive.pm_.c:81
-#: ../../my_gtk.pm_.c:485 ../../netconnect.pm_.c:88 ../../netconnect.pm_.c:468
-#: ../../netconnect_new.pm_.c:146 ../../netconnect_new.pm_.c:507
+#: ../../any.pm_.c:608 ../../interactive.pm_.c:100 ../../my_gtk.pm_.c:615
msgid "Yes"
msgstr "Ňŕę"
-#: ../../any.pm_.c:505 ../../any_new.pm_.c:497
+#: ../../any.pm_.c:609
msgid "See hardware info"
msgstr "Ăë. ŕďińŕííĺ ŕáńňŕë˙âŕíí˙"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:522 ../../any_new.pm_.c:533
+#: ../../any.pm_.c:644
#, c-format
msgid "Installing driver for %s card %s"
-msgstr "Óńňŕíî˘ęŕ äđŕéâĺđŕ äë˙ %s ęŕđňű %s"
+msgstr "Óńňŕë˙âŕííĺ äđŕéâĺđó äë˙ %s ęŕđňű %s"
-#: ../../any.pm_.c:523 ../../any_new.pm_.c:534
+#: ../../any.pm_.c:645
#, c-format
msgid "(module %s)"
msgstr "(ěîäóëü %s)"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:534 ../../any_new.pm_.c:545
+#: ../../any.pm_.c:656
#, c-format
msgid "Which %s driver should I try?"
msgstr "ßęi äđŕéâĺđ %s ďŕńďđŕáŕâŕöü?"
-#: ../../any.pm_.c:542 ../../any_new.pm_.c:553
+#: ../../any.pm_.c:664
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -727,22 +794,22 @@ msgstr ""
"ŕëĺ çâű÷ŕéíŕ ăýňŕ íĺ ďŕňđŕáóĺööŕ. Öi íĺ ćŕäŕĺöĺ âű çŕäŕöü äë˙ ˙ăî\n"
"äŕäŕňęîâű˙ îďöűi, öi äŕçâîëiöĺ äđŕéâĺđó ďđŕňýńöiđŕâŕöü ěŕřűíó\n"
"˘ ďîřóęŕő íĺŕáőîäíŕé iíôŕđěŕöűi? Ěŕă÷űěŕ, ňýńöiđŕâŕííĺ ďđűâ˙äçĺ\n"
-"äŕ ŕńňŕíîâŕ ęŕěď'ţňýđŕ, ŕëĺ ˙íî íi÷îăŕ íĺ ńďîđöiöü."
+"äŕ ńďűíĺíí˙ ęŕěď'ţňýđó, ŕëĺ ˙íî íi÷îăŕ íĺ ńŕďńóĺ."
-#: ../../any.pm_.c:547 ../../any_new.pm_.c:558
+#: ../../any.pm_.c:669
msgid "Autoprobe"
msgstr "Ŕ˘ňŕďîřóę"
-#: ../../any.pm_.c:547 ../../any_new.pm_.c:558
+#: ../../any.pm_.c:669
msgid "Specify options"
msgstr "Ďŕçíŕ÷öĺ ďŕđŕěĺňđű"
-#: ../../any.pm_.c:551 ../../any_new.pm_.c:562
+#: ../../any.pm_.c:673
#, c-format
msgid "You may now provide its options to module %s."
msgstr "Âű íĺ ěîćŕöĺ çŕäŕöü îďöűi ěîäóëţ %s."
-#: ../../any.pm_.c:557 ../../any_new.pm_.c:568
+#: ../../any.pm_.c:679
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -753,26 +820,100 @@ msgstr ""
"Îďöűi - ó ôŕđěŕöĺ ``iě˙=çíŕ÷ýííĺ iě˙2=çíŕ÷ýííĺ2 ...''.\n"
"Íŕďđűęëŕä, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:560 ../../any_new.pm_.c:571
+#: ../../any.pm_.c:682
msgid "Module options:"
-msgstr "Îďöűi ěîäóë˙:"
+msgstr "Îďöűi ěîäóëţ:"
-#: ../../any.pm_.c:570 ../../any_new.pm_.c:581
+#: ../../any.pm_.c:693
#, c-format
msgid ""
"Loading module %s failed.\n"
"Do you want to try again with other parameters?"
msgstr ""
-"Çŕăđóçęŕ ěîäóë˙ %s íĺ ďđŕéřëŕ.\n"
+"Çŕăđóçęŕ ěîäóëţ %s íĺ ďđŕéřëŕ.\n"
"Ćŕäŕĺöĺ ďŕńďđŕáŕâŕöü ç iířűěi ďŕđŕěĺňđŕěi?"
-# NOTE: this message will be displayed at boot time; that is
-# only the ascii charset will be available on most machines
-# so use only 7bit for this message (and do transliteration or
-# leave it in English, as it is the best for your language)
-#
-#: ../../bootloader.pm_.c:234
-#, fuzzy, c-format
+#: ../../any.pm_.c:711
+#, c-format
+msgid "(already added %s)"
+msgstr "(óćî äŕäŕäçĺíŕ %s)"
+
+#: ../../any.pm_.c:715
+msgid "This password is too simple"
+msgstr "Ăýňű ďŕđîëü çŕíŕäňŕ ďđîńňű"
+
+#: ../../any.pm_.c:716
+msgid "Please give a user name"
+msgstr "Ęŕëi ëŕńęŕ, óâ˙äçiöĺ iě˙ ęŕđűńňŕëüíięó"
+
+#: ../../any.pm_.c:717
+msgid ""
+"The user name must contain only lower cased letters, numbers, `-' and `_'"
+msgstr ""
+"Iě˙ ęŕđűńňŕëüíięó ďŕâiííŕ çě˙ř÷ŕöü ëiňŕđű ňîëüęi íŕ íićíiě đýăińňđű, \n"
+"ëi÷áű, `-' i `_'"
+
+#: ../../any.pm_.c:718
+msgid "This user name is already added"
+msgstr "Ăýňŕ iě˙ ęŕđűńňŕëüíięó ˘ćî äŕäŕäçĺíŕ"
+
+#: ../../any.pm_.c:722
+msgid "Add user"
+msgstr "Äŕäŕöü ęŕđűńňŕëüíięŕ"
+
+#: ../../any.pm_.c:723
+#, c-format
+msgid ""
+"Enter a user\n"
+"%s"
+msgstr ""
+"Óâ˙äçiöĺ iě˙ ęŕđűńňŕëüíięó\n"
+"%s"
+
+#: ../../any.pm_.c:724
+msgid "Accept user"
+msgstr "Ďđűí˙öü ęŕđűńňŕëüíięŕ"
+
+#: ../../any.pm_.c:735
+msgid "Real name"
+msgstr "Óëŕńíŕĺ iě˙"
+
+#: ../../any.pm_.c:736 ../../printerdrake.pm_.c:97
+#: ../../printerdrake.pm_.c:131
+msgid "User name"
+msgstr "Iě˙ ęŕđűńňŕëüíięó:"
+
+#: ../../any.pm_.c:739
+msgid "Shell"
+msgstr "Ŕáŕëîíęŕ:"
+
+#: ../../any.pm_.c:741
+msgid "Icon"
+msgstr "Ďięňŕăđŕěŕ"
+
+#: ../../any.pm_.c:762
+msgid "Autologin"
+msgstr "Ŕ˘ňŕěŕňű÷íű ˘âŕőîä ó ńińňýěó"
+
+#: ../../any.pm_.c:763
+msgid ""
+"I can set up your computer to automatically log on one user.\n"
+"If you don't want to use this feature, click on the cancel button."
+msgstr ""
+"Ěîćíŕ íŕńňđîiöü ńińňýěó äë˙ ŕ˘ňŕěŕňű÷íŕăŕ ˘âŕőîäó ˘ ńińňýěó äë˙\n"
+"ŕäíŕăî ęŕđűńňŕëüíięŕ. Ęŕëi Âű íĺ ćŕäŕĺöĺ ăýňŕăŕ, íŕöińíiöĺ \"Ŕäěĺíŕ\"."
+
+#: ../../any.pm_.c:765
+msgid "Choose the default user:"
+msgstr "Ŕá˙đűöĺ ŕńíî˘íŕăŕ ęŕđűńňŕëüíięŕ:"
+
+#: ../../any.pm_.c:766
+msgid "Choose the window manager to run:"
+msgstr "Ŕá˙đűöĺ ěýíýäćŕđ âîęíŕ˘:"
+
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#: ../../bootloader.pm_.c:262
+#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
"\n"
@@ -780,104 +921,238 @@ msgid ""
"wait %d seconds for default boot.\n"
"\n"
msgstr ""
-"Welcome to %s the operating system chooser!\n"
-"\n"
-"To list the possible choices, press <TAB>.\n"
-"\n"
-"To load one of them, write its name and press <ENTER> or\n"
-"wait %d seconds for default boot.\n"
-"\n"
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-# and only one line per string for the GRUB messages
-#
-#: ../../bootloader.pm_.c:596
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#: ../../bootloader.pm_.c:795
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welcome to GRUB the operating system chooser!"
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-# and only one line per string for the GRUB messages
-#
-#: ../../bootloader.pm_.c:597
+#: ../../bootloader.pm_.c:796
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Use the %c and %c keys for selecting which entry is highlighted."
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-# and only one line per string for the GRUB messages
-#
-#: ../../bootloader.pm_.c:598
+#: ../../bootloader.pm_.c:797
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Press enter to boot the selected OS, 'e' to edit the"
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-# and only one line per string for the GRUB messages
-#
-#: ../../bootloader.pm_.c:599
+#: ../../bootloader.pm_.c:798
msgid "commands before booting, or 'c' for a command-line."
msgstr "commands before booting, or 'c' for a command-line."
-# NOTE: this message will be displayed by grub at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-# The lines must fit on screen, aka length < 80
-# and only one line per string for the GRUB messages
-#
-#: ../../bootloader.pm_.c:600
+#: ../../bootloader.pm_.c:799
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "The highlighted entry will be booted automatically in %d seconds."
-#: ../../bootloader.pm_.c:604
+#: ../../bootloader.pm_.c:803
msgid "not enough room in /boot"
-msgstr "íĺ őŕďŕĺ ěĺńöŕ ˘ đŕçäçĺëĺ /boot"
+msgstr "Íĺ őŕďŕĺ äűńęŕâŕé ďđŕńňîđű ˘ /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:696
+#: ../../bootloader.pm_.c:895
msgid "Desktop"
-msgstr "Đŕáî÷čé ńňîë"
+msgstr "Ďđŕöî˘íű ńňîë"
-#: ../../bootloader.pm_.c:696
+#: ../../bootloader.pm_.c:895
msgid "Start Menu"
-msgstr "Ăëŕâíîĺ ěĺíţ"
+msgstr "Ńňŕđňŕâŕĺ ěĺíţ"
+
+#: ../../bootlook.pm_.c:46
+msgid "no help implemented yet.\n"
+msgstr ""
+
+#: ../../bootlook.pm_.c:62
+#, fuzzy
+msgid "Boot Style Configuration"
+msgstr "Íŕńňđîéęŕ ěŕäýěó"
+
+#: ../../bootlook.pm_.c:79
+#, fuzzy
+msgid "/_File"
+msgstr "Ôŕéëű:\n"
+
+#: ../../bootlook.pm_.c:81
+msgid "/File/_New"
+msgstr ""
+
+#: ../../bootlook.pm_.c:82
+msgid "<control>N"
+msgstr ""
+
+#: ../../bootlook.pm_.c:84
+msgid "/File/_Open"
+msgstr ""
+
+#: ../../bootlook.pm_.c:85
+msgid "<control>O"
+msgstr ""
+
+#: ../../bootlook.pm_.c:87
+msgid "/File/_Save"
+msgstr ""
-#: ../../common.pm_.c:610
+#: ../../bootlook.pm_.c:88
+msgid "<control>S"
+msgstr ""
+
+#: ../../bootlook.pm_.c:90
+msgid "/File/Save _As"
+msgstr ""
+
+#: ../../bootlook.pm_.c:91
+msgid "/File/-"
+msgstr ""
+
+#: ../../bootlook.pm_.c:93
+msgid "/File/_Quit"
+msgstr ""
+
+#: ../../bootlook.pm_.c:94
+msgid "<control>Q"
+msgstr ""
+
+#: ../../bootlook.pm_.c:96
+msgid "/_Options"
+msgstr ""
+
+#: ../../bootlook.pm_.c:98
+msgid "/Options/Test"
+msgstr ""
+
+#: ../../bootlook.pm_.c:99
+msgid "/_Help"
+msgstr ""
+
+#: ../../bootlook.pm_.c:101
+msgid "/Help/_About..."
+msgstr ""
+
+#: ../../bootlook.pm_.c:111 ../../standalone/drakgw_.c:634
+#: ../../standalone/draknet_.c:262 ../../standalone/tinyfirewall_.c:57
+#, fuzzy
+msgid "Configure"
+msgstr "Íŕńňđîéęŕ X Window"
+
+#: ../../bootlook.pm_.c:114
+#, fuzzy, c-format
+msgid ""
+"You are currently using %s as Boot Manager.\n"
+"Click on Configure to launch the setup wizard."
+msgstr "Ńóěĺńíŕĺ Iíňýđíýň-çëó÷ýííĺ"
+
+#: ../../bootlook.pm_.c:121
+#, fuzzy
+msgid "Lilo/grub mode"
+msgstr "Đýćűě çëó÷ýíí˙"
+
+#: ../../bootlook.pm_.c:131
+msgid "NewStyle Categorizing Monitor"
+msgstr ""
+
+#: ../../bootlook.pm_.c:134
+#, fuzzy
+msgid "NewStyle Monitor"
+msgstr "Ěŕíiňîđ"
+
+#: ../../bootlook.pm_.c:137
+#, fuzzy
+msgid "Traditional Monitor"
+msgstr "Çě˙íiöü ěŕíiňîđ"
+
+#: ../../bootlook.pm_.c:140
+msgid "Traditional Gtk+ Monitor"
+msgstr ""
+
+#: ../../bootlook.pm_.c:144
+msgid "Launch Aurora at boot time"
+msgstr ""
+
+#: ../../bootlook.pm_.c:169
+#, fuzzy
+msgid "Boot mode"
+msgstr "Çŕăđóçŕ÷íŕ˙ ďđűëŕäŕ"
+
+#: ../../bootlook.pm_.c:179
+msgid "Launch the X-Window system at start"
+msgstr ""
+
+#: ../../bootlook.pm_.c:187
+msgid "No, I don't want autologin"
+msgstr ""
+
+#: ../../bootlook.pm_.c:193
+msgid "Yes, I want autologin with this (user, desktop)"
+msgstr ""
+
+#: ../../bootlook.pm_.c:210
+msgid "System mode"
+msgstr ""
+
+#: ../../bootlook.pm_.c:218 ../../standalone/draknet_.c:88
+#: ../../standalone/draknet_.c:120 ../../standalone/draknet_.c:184
+#: ../../standalone/draknet_.c:302 ../../standalone/draknet_.c:394
+#: ../../standalone/draknet_.c:471 ../../standalone/draknet_.c:507
+#: ../../standalone/draknet_.c:609
+msgid "OK"
+msgstr ""
+
+#: ../../bootlook.pm_.c:220 ../../install_steps_gtk.pm_.c:576
+#: ../../interactive.pm_.c:110 ../../interactive.pm_.c:265
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:357
+#: ../../my_gtk.pm_.c:360 ../../my_gtk.pm_.c:616
+#: ../../standalone/drakgw_.c:639 ../../standalone/draknet_.c:95
+#: ../../standalone/draknet_.c:127 ../../standalone/draknet_.c:295
+#: ../../standalone/draknet_.c:483 ../../standalone/draknet_.c:623
+#: ../../standalone/tinyfirewall_.c:63
+msgid "Cancel"
+msgstr "Ŕäěĺíŕ"
+
+#: ../../bootlook.pm_.c:297
+msgid "can not open /etc/inittab for reading: $!"
+msgstr ""
+
+#: ../../bootlook.pm_.c:351
+msgid "can not open /etc/sysconfig/autologin for reading: $!"
+msgstr ""
+
+#: ../../bootlook.pm_.c:416 ../../standalone/drakboot_.c:47
+msgid "Installation of LILO failed. The following error occured:"
+msgstr "Óńňŕë˙âŕííĺ LILO íĺ ŕňđűěŕëŕń˙. Óçíięëŕ íŕńňóďíŕ˙ ďŕěűëęŕ:"
+
+#: ../../common.pm_.c:634
+msgid "GB"
+msgstr ""
+
+#: ../../common.pm_.c:634
+msgid "KB"
+msgstr ""
+
+#: ../../common.pm_.c:634 ../../diskdrake.pm_.c:660
+#: ../../install_steps_graphical.pm_.c:287
+#: ../../install_steps_graphical.pm_.c:334
+msgid "MB"
+msgstr "Ěá"
+
+#: ../../common.pm_.c:642
+msgid "TB"
+msgstr ""
+
+#: ../../common.pm_.c:655
#, c-format
msgid "%d minutes"
msgstr "%d őâiëií"
-#: ../../common.pm_.c:612
+#: ../../common.pm_.c:657
msgid "1 minute"
msgstr "1 őâiëiíŕ"
-#: ../../common.pm_.c:614
+#: ../../common.pm_.c:659
#, c-format
msgid "%d seconds"
-msgstr "%d ń˙ęóíä"
+msgstr "%d ńĺęóíäŕ˘"
-#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:427
+#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:462
msgid "Create"
msgstr "Ńňâŕđűöü"
@@ -885,24 +1160,24 @@ msgstr "Ńňâŕđűöü"
msgid "Unmount"
msgstr "Đŕçěŕíöiđŕâŕöü"
-#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:429
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:464
msgid "Delete"
msgstr "Çíiř÷űöü"
#: ../../diskdrake.pm_.c:23
msgid "Format"
-msgstr "Ôŕđěŕöiđŕâŕííĺ"
+msgstr "Ôŕđěŕňŕâŕííĺ"
-#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:610
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:653
msgid "Resize"
msgstr "Çě˙íĺííĺ ďŕěĺđŕ˘"
-#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:427
-#: ../../diskdrake.pm_.c:480
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:462
+#: ../../diskdrake.pm_.c:518
msgid "Type"
msgstr "Ňűď"
-#: ../../diskdrake.pm_.c:24 ../../diskdrake.pm_.c:500
+#: ../../diskdrake.pm_.c:24 ../../diskdrake.pm_.c:539
msgid "Mount point"
msgstr "Ęđîďęŕ ěŕíöiđŕâŕíí˙"
@@ -912,7 +1187,7 @@ msgstr "Çŕďiń /etc/fstab"
#: ../../diskdrake.pm_.c:39
msgid "Toggle to expert mode"
-msgstr "Đýćűě ýęńďĺđňŕ"
+msgstr "Đýćűě ýęńďĺđňó"
#: ../../diskdrake.pm_.c:40
msgid "Toggle to normal mode"
@@ -920,7 +1195,7 @@ msgstr "Çâű÷ŕéíű đýćűě"
#: ../../diskdrake.pm_.c:41
msgid "Restore from file"
-msgstr "Ŕäíŕ˘ëĺííĺ ç ôŕéëŕ"
+msgstr "Ŕäíŕ˘ëĺííĺ ç ôŕéëó"
#: ../../diskdrake.pm_.c:42
msgid "Save in file"
@@ -942,23 +1217,23 @@ msgstr "Çŕőŕâŕííĺ íŕ äűńęĺňó"
msgid "Clear all"
msgstr "Ŕ÷űńöiöü óń¸"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "Format all"
-msgstr "Ôŕđěŕöiđŕâŕöü óń¸"
+msgstr "Ôŕđěŕňŕâŕöü óń¸"
-#: ../../diskdrake.pm_.c:51
+#: ../../diskdrake.pm_.c:55
msgid "Auto allocate"
msgstr "Đŕçěĺđęŕâŕöü ŕ˘ňŕěŕňű÷íŕ"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:59
msgid "All primary partitions are used"
msgstr "Óńĺ ďĺđřŕńíű˙ đŕçäçĺëű âűęŕđűńňŕíű"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:59
msgid "I can't add any more partition"
msgstr "Äŕäŕöü đŕçäçĺë íĺěŕă÷űěŕ"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:59
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -966,63 +1241,62 @@ msgstr ""
"Ęŕá çđŕáiöü áîëüř đŕçäĺëŕ˘, âűäŕëiöĺ ŕäçií i ńňâŕđűöĺ ďŕřűđŕíű đŕçäçĺë "
"(extended)"
-#: ../../diskdrake.pm_.c:57
-msgid "Rescue partition table"
-msgstr "Äŕäŕňęîâŕ˙ ňŕáëiöŕ đŕçäçĺëŕ˘"
+#: ../../diskdrake.pm_.c:61
+#, fuzzy
+msgid "Not enough space for auto-allocating"
+msgstr "Íĺ őŕďŕĺ ďđŕńňîđű äë˙ ńňâŕđýíí˙ íîâűő đŕçäçĺëŕ˘"
-#: ../../diskdrake.pm_.c:58
+#: ../../diskdrake.pm_.c:63
msgid "Undo"
msgstr "Ŕäęŕň"
-#: ../../diskdrake.pm_.c:59
+#: ../../diskdrake.pm_.c:64
msgid "Write partition table"
msgstr "Çŕďiń ňŕáëiöű đŕçäçĺëŕ˘"
-#: ../../diskdrake.pm_.c:60
-msgid "Reload"
-msgstr "Ďĺđŕçŕăđóçiöü"
-
-#: ../../diskdrake.pm_.c:101
-msgid "loopback"
-msgstr "Âiđňóŕëüíŕ˙ ôŕéëŕâŕ˙ ńińňýěŕ (loopback)"
+#: ../../diskdrake.pm_.c:65 ../../install_steps_interactive.pm_.c:185
+#, fuzzy
+msgid "More"
+msgstr "Ďĺđŕíîń"
-#: ../../diskdrake.pm_.c:114
+#: ../../diskdrake.pm_.c:116
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake.pm_.c:114
+#: ../../diskdrake.pm_.c:116
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake.pm_.c:114
+#: ../../diskdrake.pm_.c:116
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake.pm_.c:114
+#: ../../diskdrake.pm_.c:116
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake.pm_.c:114
+#: ../../diskdrake.pm_.c:116
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake.pm_.c:115
+#: ../../diskdrake.pm_.c:117
msgid "Empty"
msgstr "Ďóńňŕ"
-#: ../../diskdrake.pm_.c:115 ../../mouse.pm_.c:125
+#: ../../diskdrake.pm_.c:117 ../../install_steps_gtk.pm_.c:407
+#: ../../mouse.pm_.c:145
msgid "Other"
-msgstr "Äđóăi˙"
+msgstr "˛ířű˙"
-#: ../../diskdrake.pm_.c:121
+#: ../../diskdrake.pm_.c:123
msgid "Filesystem types:"
-msgstr "Ňűďű ôŕéëŕâŕé ńińňýěű:"
+msgstr "Ňűďű ôŕéëŕâűő ńińňýěŕ˘:"
-#: ../../diskdrake.pm_.c:130
+#: ../../diskdrake.pm_.c:132 ../../install_steps_gtk.pm_.c:577
msgid "Details"
msgstr "Ďŕäđŕá˙çíŕńöi"
-#: ../../diskdrake.pm_.c:144
+#: ../../diskdrake.pm_.c:147
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1030,100 +1304,104 @@ msgid ""
"(click on it, then click on \"Resize\")"
msgstr ""
"Çŕđŕç âű ěŕĺöĺ ňîëüęi ŕäçií â˙ëięi đŕçäçĺë FAT\n"
-"(çâű÷ŕéíŕ âűęŕđűńňî˘âŕĺěű MicroSoft Dos/Windows).\n"
+"(˙ęł çâű÷ŕéíŕ âűęŕđűńňî˘âŕĺ MS Dos/Windows).\n"
"Ďđŕďŕíóţ, ďŕ-ďĺđřŕĺ, çě˙íiöü ďŕěĺđű đŕçäçĺëŕ\n"
"(ęëięíiöĺ íŕ ˙ăî, ŕ ďîňűě íŕ \"çě˙íĺííĺ ďŕěĺđŕ˘\")"
-#: ../../diskdrake.pm_.c:149
+#: ../../diskdrake.pm_.c:152
msgid "Please make a backup of your data first"
msgstr "Ďŕ-ďĺđřŕĺ, çđŕáiöĺ đýçĺđâîâóţ ęîďiţ âŕřűő äŕäçĺíűő"
-#: ../../diskdrake.pm_.c:149 ../../diskdrake.pm_.c:166
-#: ../../diskdrake.pm_.c:175 ../../diskdrake.pm_.c:532
-#: ../../diskdrake.pm_.c:554
+#: ../../diskdrake.pm_.c:152 ../../diskdrake.pm_.c:170
+#: ../../diskdrake.pm_.c:179 ../../diskdrake.pm_.c:570
+#: ../../diskdrake.pm_.c:592
msgid "Read carefully!"
msgstr "×űňŕéöĺ ˘âŕćëiâŕ!"
-#: ../../diskdrake.pm_.c:152
+#: ../../diskdrake.pm_.c:155
msgid ""
"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
"enough)\n"
"at the beginning of the disk"
msgstr ""
-"Ęŕëi âű ďëŕíóĺöĺ âűęŕđűńňî˘âŕöü boot âîáëŕńöü, ňî đŕçě˙ńöiöĺ ˙ĺ\n"
+"Ęŕëi âű ďëŕíóĺöĺ âűęŕđűńňî˘âŕöü boot âîáëŕńöü, ňŕäű đŕçě˙ńöiöĺ ˙ĺ\n"
" íĺ äŕëĺé çŕ 2048 ńĺęňŕđî˘ ŕä ďŕ÷ŕňęó äűńęŕ"
-#: ../../diskdrake.pm_.c:166
+#: ../../diskdrake.pm_.c:170
msgid "Be careful: this operation is dangerous."
msgstr "Áóäçüöĺ óâŕćëiâű. Ăýňóţ ŕďĺđŕöűţ íĺëüăŕ ŕäě˙íiöü"
-#: ../../diskdrake.pm_.c:203 ../../install_steps.pm_.c:73
-#: ../../install_steps_interactive.pm_.c:38
-#: ../../install_steps_interactive.pm_.c:315 ../../standalone/diskdrake_.c:60
-#: ../../standalone/rpmdrake_.c:294 ../../standalone/rpmdrake_.c:304
+#: ../../diskdrake.pm_.c:214 ../../install_steps.pm_.c:72
+#: ../../install_steps_interactive.pm_.c:37
+#: ../../install_steps_interactive.pm_.c:322 ../../standalone/diskdrake_.c:66
msgid "Error"
msgstr "Ďŕěűëęŕ"
-#: ../../diskdrake.pm_.c:227 ../../diskdrake.pm_.c:708
+#: ../../diskdrake.pm_.c:238 ../../diskdrake.pm_.c:748
msgid "Mount point: "
-msgstr "Ęđîďęŕ ěŕíöiđŕâŕíí˙:"
+msgstr "Ďóíęň ěŕíöiđŕâŕíí˙:"
-#: ../../diskdrake.pm_.c:228 ../../diskdrake.pm_.c:269
+#: ../../diskdrake.pm_.c:239 ../../diskdrake.pm_.c:298
msgid "Device: "
msgstr "Ďđűëŕäŕ:"
-#: ../../diskdrake.pm_.c:229
+#: ../../diskdrake.pm_.c:240
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
-msgstr "Ëiňŕđŕ äë˙ DOS-äűńęŕ: %s (íŕ˘ăŕä)\n"
+msgstr "Ëiňŕđŕ äë˙ DOS-äűńęó: %s (íŕ˘ăŕä)\n"
-#: ../../diskdrake.pm_.c:230 ../../diskdrake.pm_.c:272
+#: ../../diskdrake.pm_.c:244 ../../diskdrake.pm_.c:251
+#: ../../diskdrake.pm_.c:301
msgid "Type: "
msgstr "Ňűď: "
-#: ../../diskdrake.pm_.c:231
+#: ../../diskdrake.pm_.c:248
+msgid "Name: "
+msgstr "Iě˙: "
+
+#: ../../diskdrake.pm_.c:253
#, c-format
msgid "Start: sector %s\n"
msgstr "Ďŕ÷ŕňŕę: ńĺęňŕđ %s\n"
-#: ../../diskdrake.pm_.c:232
+#: ../../diskdrake.pm_.c:254
#, c-format
-msgid "Size: %d MB"
-msgstr "Ďŕěĺđ: %d MB"
+msgid "Size: %s"
+msgstr "Ďŕěĺđ: %s"
-#: ../../diskdrake.pm_.c:234
+#: ../../diskdrake.pm_.c:256
#, c-format
msgid ", %s sectors"
msgstr ", %s ńĺęňŕđŕ˘"
-#: ../../diskdrake.pm_.c:236
+#: ../../diskdrake.pm_.c:258
#, c-format
msgid "Cylinder %d to cylinder %d\n"
msgstr "Öűëiíäđű ç %d ďŕ %d\n"
-#: ../../diskdrake.pm_.c:237
+#: ../../diskdrake.pm_.c:259
msgid "Formatted\n"
-msgstr "Ôŕđěŕöiđŕâŕííĺ\n"
+msgstr "Ôŕđěŕňŕâŕííĺ\n"
-#: ../../diskdrake.pm_.c:238
+#: ../../diskdrake.pm_.c:260
msgid "Not formatted\n"
-msgstr "Íĺ ŕäôŕđěŕöiđŕâŕíŕ\n"
+msgstr "Íĺ ŕäôŕđěŕňŕâŕíŕ\n"
-#: ../../diskdrake.pm_.c:239
+#: ../../diskdrake.pm_.c:261
msgid "Mounted\n"
msgstr "Çŕěŕíöiđŕâŕíŕ\n"
-#: ../../diskdrake.pm_.c:240
+#: ../../diskdrake.pm_.c:262
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake.pm_.c:241
+#: ../../diskdrake.pm_.c:264
#, c-format
msgid "Loopback file(s): %s\n"
msgstr "Ôŕéë(ű) âiđňóŕëüíŕé ôŕéëŕâŕé ńińňýěű: %s\n"
-#: ../../diskdrake.pm_.c:242
+#: ../../diskdrake.pm_.c:265
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -1131,323 +1409,345 @@ msgstr ""
"Çŕăđóçŕ÷íű đŕçäçĺë ďŕ äŕěŕ˘ëĺííţ\n"
" (äë˙ çŕăđóçęi MS-DOS, ŕ íĺ äë˙ lilo)\n"
-#: ../../diskdrake.pm_.c:244
+#: ../../diskdrake.pm_.c:267
#, c-format
msgid "Level %s\n"
msgstr "Óçđîâĺíü %s\n"
-#: ../../diskdrake.pm_.c:245
+#: ../../diskdrake.pm_.c:268
#, c-format
msgid "Chunk size %s\n"
-msgstr "Ďŕěĺđ ôđŕăěĺíňŕ %s\n"
+msgstr "Ďŕěĺđ ôđŕăěĺíňó %s\n"
-#: ../../diskdrake.pm_.c:246
+#: ../../diskdrake.pm_.c:269
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-äűńęi %s\n"
-#: ../../diskdrake.pm_.c:248
+#: ../../diskdrake.pm_.c:271
#, c-format
msgid "Loopback file name: %s"
-msgstr "Iě˙ ôŕéëŕ âiđňóŕëüíŕé ôŕéëŕâŕé ńińňýěű: %s"
+msgstr "Iě˙ ôŕéëó âiđňóŕëüíŕé ôŕéëŕâŕé ńińňýěű: %s"
-#: ../../diskdrake.pm_.c:265
+#: ../../diskdrake.pm_.c:274
+msgid ""
+"\n"
+"Chances are, this partition is\n"
+"a Driver partition, you should\n"
+"probably leave it alone.\n"
+msgstr ""
+
+#: ../../diskdrake.pm_.c:277
+msgid ""
+"\n"
+"This special Bootstrap\n"
+"partition is for\n"
+"dual-booting your system.\n"
+msgstr ""
+
+#: ../../diskdrake.pm_.c:294
msgid "Please click on a partition"
-msgstr "Íŕćěiöĺ íŕ đŕçäçĺë"
+msgstr "Íŕöłńíłöĺ íŕ đŕçäçĺë"
-#: ../../diskdrake.pm_.c:270
+#: ../../diskdrake.pm_.c:299
#, c-format
-msgid "Size: %d MB\n"
-msgstr "Ďŕěĺđ: %d MB\n"
+msgid "Size: %s\n"
+msgstr "Ďŕěĺđ: %s\n"
-#: ../../diskdrake.pm_.c:271
+#: ../../diskdrake.pm_.c:300
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Ăĺŕěĺňđű˙: %s öűëiíäđŕ˘, %s ăŕëîâŕę, %s ńĺęňŕđŕ˘\n"
-#: ../../diskdrake.pm_.c:273
+#: ../../diskdrake.pm_.c:302
+#, c-format
+msgid "LVM-disks %s\n"
+msgstr "LVM-äűńęi %s\n"
+
+#: ../../diskdrake.pm_.c:303
#, c-format
msgid "Partition table type: %s\n"
msgstr "Ňűď ňŕáëiöű đŕçäçĺëŕ˘: %s\n"
-#: ../../diskdrake.pm_.c:274
+#: ../../diskdrake.pm_.c:304
#, c-format
msgid "on bus %d id %d\n"
msgstr "íŕ řűíĺ %d id %d\n"
-#: ../../diskdrake.pm_.c:290
+#: ../../diskdrake.pm_.c:320
msgid "Mount"
msgstr "Ěŕíöiđŕâŕííĺ"
-#: ../../diskdrake.pm_.c:292
+#: ../../diskdrake.pm_.c:322
msgid "Active"
msgstr "Ŕęňű˘íű"
-#: ../../diskdrake.pm_.c:294
+#: ../../diskdrake.pm_.c:324
msgid "Add to RAID"
msgstr "Äŕäŕöü äŕ RAID"
-#: ../../diskdrake.pm_.c:296
+#: ../../diskdrake.pm_.c:326
msgid "Remove from RAID"
msgstr "Âűäŕëiöü ç RAID"
-#: ../../diskdrake.pm_.c:298
+#: ../../diskdrake.pm_.c:328
msgid "Modify RAID"
msgstr "Çě˙íiöü RAID"
-#: ../../diskdrake.pm_.c:300
+#: ../../diskdrake.pm_.c:330
+msgid "Add to LVM"
+msgstr "Äŕäŕöü äŕ LVM"
+
+#: ../../diskdrake.pm_.c:332
+msgid "Remove from LVM"
+msgstr "Âűäŕëiöü ç LVM"
+
+#: ../../diskdrake.pm_.c:334
msgid "Use for loopback"
msgstr "Âűęŕđűńňî˘âŕöü äë˙ âiđňóŕëüíŕé ôŕéëŕâŕé ńińňýěű"
-#: ../../diskdrake.pm_.c:307
+#: ../../diskdrake.pm_.c:341
msgid "Choose action"
-msgstr "Âűá˙đűöĺ äçĺ˙ííĺ"
+msgstr "Ŕá˙đűöĺ äçĺ˙ííĺ"
-#: ../../diskdrake.pm_.c:400
+#: ../../diskdrake.pm_.c:435
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
"Either you use LILO and it won't work, or you don't use LILO and you don't "
"need /boot"
msgstr ""
-"Ďđŕáŕ÷öĺ, ŕëĺ íĺëüăŕ ńňâŕđűöü /boot íŕ ăýňűě äűńęĺ (íŕ öűëiíäđű > 1024).\n"
-"Ŕëüáî âű âűęŕđűńňî˘âŕĺöĺ LILO - ňŕäű ăýňŕ íĺ áóäçĺ ďđŕöŕâŕöü, ŕëüáî LILO íĺ "
-"âűęŕđűńňî˘âŕĺöŕ, i ňŕäű /boot íĺ ďŕňđýáíű."
+"Ďđŕáŕ÷öĺ, ŕëĺ íĺëüăŕ ńňâŕđűöü /boot íŕ ăýňűě äűńęó (íŕ öűëiíäđű > 1024).\n"
+"Ęŕëł âű äóěŕĺöĺ âűęŕđűńňî˘âŕöü LILO - ňŕäű ăýňŕ íĺ áóäçĺ ďđŕöŕâŕöü, LILO íĺ "
+"âűęŕđűńňî˘âŕĺöŕ, ňŕäű /boot íĺ ďŕňđýáíű."
-#: ../../diskdrake.pm_.c:404
+#: ../../diskdrake.pm_.c:439
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
"the 1024th cylinder of the hard drive, and you have no /boot partition.\n"
"If you plan to use the LILO boot manager, be careful to add a /boot partition"
msgstr ""
-"Âűáđŕíű äë˙ äŕäŕňęó ˘ ˙ęŕńöi ęŕđýííŕăŕ (/) đŕçäçĺë ôiçi÷íŕ çíŕőîäçiöŕ äŕëĺé\n"
-"1024-ăî öűëiíäđŕ ćîđńňęŕăŕ äűńęŕ, ŕ ˘ âŕń í˙ěŕ đŕçäçĺëŕ /boot .\n"
+"Ŕáđŕíű äë˙ äŕäŕňęó ˘ ˙ęŕńöi ęŕđŕí¸âŕăŕ (/) đŕçäçĺë ôiçi÷íŕ çíŕőîäçiöŕ äŕëĺé\n"
+"1024-ăŕ öűëiíäđó ćîđńňęŕăŕ äűńęó, ŕ ˘ âŕń í˙ěŕ đŕçäçĺëó /boot .\n"
"Ęŕëi áóäçĺ âűęŕđűńňî˘âŕööŕ äűńďĺ÷ŕđ çŕăđóçęi LILO, íĺ çŕďŕě˙ňŕéöĺ äŕäŕöü\n"
"đŕçäçĺë /boot"
-#: ../../diskdrake.pm_.c:410
+#: ../../diskdrake.pm_.c:445
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"So be careful to add a /boot partition"
msgstr ""
-"Âű âűáđŕëi RAID đŕçäçĺë ˙ę ęŕđýííű.\n"
-"Í˙ěŕ çŕăđóç˙űęŕ, ˙ęi á çŕăđóçi˘ń˙ áĺç /boot đŕçäçĺëŕ.\n"
+"Âű ŕáđŕëi RAID đŕçäçĺë ˙ę ęŕđŕí¸âű.\n"
+"Í˙ěŕ çŕăđóç÷űęó, ˙ęi á çŕăđóçi˘ń˙ áĺç /boot đŕçäçĺëŕ.\n"
"Äŕäŕéöĺ đŕçäĺë /boot, ęŕëi ëŕńęŕ."
-#: ../../diskdrake.pm_.c:427 ../../diskdrake.pm_.c:429
+#: ../../diskdrake.pm_.c:462 ../../diskdrake.pm_.c:464
#, c-format
msgid "Use ``%s'' instead"
msgstr "Âűęŕđűńňî˘âŕéöĺ ``%s'' çŕěĺńň"
-#: ../../diskdrake.pm_.c:432
+#: ../../diskdrake.pm_.c:468
msgid "Use ``Unmount'' first"
msgstr "Ńďŕ÷ŕňęó çđŕáiöĺ ``Unmount''"
-#: ../../diskdrake.pm_.c:433 ../../diskdrake.pm_.c:475
+#: ../../diskdrake.pm_.c:469 ../../diskdrake.pm_.c:513
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
-msgstr "Óńĺ äŕäçĺíű˙ ˘ đŕçäçĺëĺ %s áóäóöü ńňđŕ÷ŕíű ďŕńë˙ çěĺíű ˙ăî ňűďŕ"
+msgstr "Óńĺ äŕäçĺíű˙ ˘ đŕçäçĺëĺ %s áóäóöü ńňđŕ÷ŕíű ďŕńë˙ çěĺíű ˙ăî ňűďó"
-#: ../../diskdrake.pm_.c:445
+#: ../../diskdrake.pm_.c:481
msgid "Continue anyway?"
-msgstr "Ńŕďđŕ˘äű ďđŕö˙ăíóöü?"
+msgstr "Ńŕďđŕ˘äű ďđŕö˙ăâŕöü?"
-#: ../../diskdrake.pm_.c:450
+#: ../../diskdrake.pm_.c:486
msgid "Quit without saving"
-msgstr "Âűéńöi áĺç çŕőî˘âŕíí˙"
+msgstr "Âűéńöi áĺç çŕőŕâŕíí˙"
-#: ../../diskdrake.pm_.c:450
+#: ../../diskdrake.pm_.c:486
msgid "Quit without writing the partition table?"
msgstr "Âűéńöi áĺç çŕďińó ňŕáëiöű đŕçäçĺëŕ˘"
-#: ../../diskdrake.pm_.c:478
+#: ../../diskdrake.pm_.c:516
msgid "Change partition type"
-msgstr "Çě˙íiöü ňűď đŕçäçĺëŕ"
+msgstr "Çě˙íiöü ňűď đŕçäçĺëó"
-#: ../../diskdrake.pm_.c:479
+#: ../../diskdrake.pm_.c:517
#, fuzzy
msgid "Which filesystem do you want?"
-msgstr "Âűá˙đűöĺ ěîâó"
+msgstr "ßęóţ ńińňýěó äđóęó Âű ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü?"
-#: ../../diskdrake.pm_.c:482 ../../diskdrake.pm_.c:740
+#: ../../diskdrake.pm_.c:520 ../../diskdrake.pm_.c:780
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Âű íĺ ěîćŕöĺ đŕçáiâŕöü íŕ đŕçäĺëű, ďŕěĺđ ˙ęiő ěĺíĺé çŕ 32 Ěá"
-#: ../../diskdrake.pm_.c:498
+#: ../../diskdrake.pm_.c:537
#, c-format
msgid "Where do you want to mount loopback file %s?"
-msgstr "Ęóäű âű ćŕäŕĺöĺ çěŕíöiđŕâŕöü âiđňóŕëüíóţ ďđűëŕäó %s?"
+msgstr "Ęóäű âű ćŕäŕĺöĺ ěŕíöiđŕâŕöü âiđňóŕëüíóţ ďđűëŕäó %s?"
-#: ../../diskdrake.pm_.c:499
+#: ../../diskdrake.pm_.c:538
#, c-format
msgid "Where do you want to mount device %s?"
-msgstr "Ęóäű âű ćŕäŕĺöĺ çěŕíöiđŕâŕöü ďđűëŕäó %s?"
+msgstr "Ęóäű âű ćŕäŕĺöĺ ěŕíöiđŕâŕöü ďđűëŕäó %s?"
-#: ../../diskdrake.pm_.c:504
+#: ../../diskdrake.pm_.c:542
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
-"Íĺëüăŕ ˘ńňŕë˙âŕöü ęđîďęó ěŕíöiđŕâŕíí˙, ňŕěó řňî đŕçäĺë âűęŕđűńňî˘âŕĺööŕ äë˙\n"
+"Íĺëüăŕ ˘ńňŕë˙âŕöü ďóíęň ěŕíöiđŕâŕíí˙, ňŕěó řňî đŕçäĺë âűęŕđűńňî˘âŕĺööŕ äë˙\n"
"âiđňóŕëüíŕé ôŕéëŕâŕé ńińňýěű.\n"
"Ńďŕ÷ŕňęó âűäŕëiöĺ âiđňóŕëüíóţ ńińňýěó"
-#: ../../diskdrake.pm_.c:523
+#: ../../diskdrake.pm_.c:561
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
-msgstr "Óńĺ äŕäçĺíűĺ ˘ đŕçäçĺëĺ %s áóäóöü ńňđŕ÷ŕíű ďŕńë˙ ôŕđěŕö˘đŕâŕíí˙"
+msgstr "Óńĺ äŕäçĺíűĺ ˘ đŕçäçĺëĺ %s áóäóöü ńňđŕ÷ŕíű ďŕńë˙ ôŕđěŕňŕâŕíí˙"
-#: ../../diskdrake.pm_.c:525
+#: ../../diskdrake.pm_.c:563
msgid "Formatting"
-msgstr "Ôŕđěŕöiđŕâŕííĺ"
+msgstr "Ôŕđěŕňŕâŕííĺ"
-#: ../../diskdrake.pm_.c:526
+#: ../../diskdrake.pm_.c:564
#, c-format
msgid "Formatting loopback file %s"
-msgstr "Ôŕđěŕöiđŕâŕííĺ âiđňóŕëüíŕăŕ đŕçäçĺëŕ %s"
+msgstr "Ôŕđěŕňŕâŕííĺ âiđňóŕëüíŕăŕ đŕçäçĺëó %s"
-#: ../../diskdrake.pm_.c:527 ../../install_steps_interactive.pm_.c:402
+#: ../../diskdrake.pm_.c:565 ../../install_steps_interactive.pm_.c:430
#, c-format
msgid "Formatting partition %s"
-msgstr "Ôŕđěŕöiđŕâŕííĺ đŕçäçĺëŕ %s"
+msgstr "Ôŕđěŕňŕâŕííĺ đŕçäçĺëó %s"
-#: ../../diskdrake.pm_.c:532
+#: ../../diskdrake.pm_.c:570
msgid "After formatting all partitions,"
-msgstr "Ďŕńë˙ ôŕđěŕöiđŕâŕíí˙ ˘ńiő đŕçäçĺëŕ˘,"
+msgstr "Ďŕńë˙ ôŕđěŕňŕâŕíí˙ ˘ńiő đŕçäçĺëŕ˘,"
-#: ../../diskdrake.pm_.c:532
+#: ../../diskdrake.pm_.c:570
msgid "all data on these partitions will be lost"
msgstr "óńĺ äŕäçĺíű˙ ˘ ăýňűő đŕçäçĺëŕő áóäóöü ńňđŕ÷ŕíű"
-#: ../../diskdrake.pm_.c:538
+#: ../../diskdrake.pm_.c:576
msgid "Move"
-msgstr "Ďĺđŕě˙ř÷ýííĺ"
+msgstr "Ďĺđŕíîń"
-#: ../../diskdrake.pm_.c:539
+#: ../../diskdrake.pm_.c:577
msgid "Which disk do you want to move it to?"
-msgstr "Íŕ ˙ęi äűńę ďĺđŕě˙ńöiöü?"
+msgstr "Íŕ ˙ęi äűńę ďĺđŕíĺńöł?"
-#: ../../diskdrake.pm_.c:540
+#: ../../diskdrake.pm_.c:578
msgid "Sector"
msgstr "Ńĺęňŕđ"
-#: ../../diskdrake.pm_.c:541
+#: ../../diskdrake.pm_.c:579
msgid "Which sector do you want to move it to?"
-msgstr "Íŕ ˙ęi ńĺęňŕđ ďĺđŕě˙ńöiöü?"
+msgstr "Íŕ ˙ęi ńĺęňŕđ ďĺđŕíĺńöł?"
-#: ../../diskdrake.pm_.c:544
+#: ../../diskdrake.pm_.c:582
msgid "Moving"
-msgstr "Ďĺđŕě˙ř÷ŕĺě"
+msgstr "Ďĺđŕíîńłě"
-#: ../../diskdrake.pm_.c:544
+#: ../../diskdrake.pm_.c:582
msgid "Moving partition..."
-msgstr "Ďĺđŕě˙ř÷ŕĺöŕ đŕçäçĺë..."
+msgstr "Ďĺđŕíîńłööŕ đŕçäçĺë..."
-#: ../../diskdrake.pm_.c:554
+#: ../../diskdrake.pm_.c:592
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Ňŕáëiöŕ đŕçě˙ř÷ýíí˙ ďđűëŕäű %s áóäçĺ çŕďińŕíŕ íŕ äűńę!"
-#: ../../diskdrake.pm_.c:556
+#: ../../diskdrake.pm_.c:594
msgid "You'll need to reboot before the modification can take place"
msgstr "Ęŕá çě˙íĺííi ˘ńňóďiëi ˘ äçĺ˙ííĺ, íĺîáőîäíŕ ďĺđŕçŕăđóçiööŕ"
-#: ../../diskdrake.pm_.c:577
+#: ../../diskdrake.pm_.c:615
msgid "Computing FAT filesystem bounds"
-msgstr "Âűëi÷ýííĺ ěĺćࢠôŕéëŕâŕé ńińňýěű FAT"
+msgstr "Ďŕäëłę ěĺćࢠôŕéëŕâŕé ńińňýěű FAT"
-#: ../../diskdrake.pm_.c:577 ../../diskdrake.pm_.c:637
+#: ../../diskdrake.pm_.c:615 ../../diskdrake.pm_.c:680
#: ../../install_interactive.pm_.c:107
msgid "Resizing"
msgstr "Çě˙íĺííĺ ďŕěĺđŕ˘"
-#: ../../diskdrake.pm_.c:600
+#: ../../diskdrake.pm_.c:643
#, fuzzy
msgid "This partition is not resizeable"
msgstr "Ďŕěĺđű ˙ęîăŕ đŕçäçĺëŕ âű ćŕäŕĺöĺ çě˙íiöü?"
-#: ../../diskdrake.pm_.c:605
+#: ../../diskdrake.pm_.c:648
msgid "All data on this partition should be backed-up"
-msgstr "Óńĺ äŕäçĺíű˙ ˘ ăýňűě đŕçäçĺëĺ ďŕâiííű áűöü ç'ŕđőiâiđŕâŕíű"
+msgstr "Óńĺ äŕäçĺíű˙ ˘ ăýňűě đŕçäçĺëĺ ďŕâiííű áűöü çŕđőiâŕâŕíű˙"
-#: ../../diskdrake.pm_.c:607
+#: ../../diskdrake.pm_.c:650
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Óńĺ äŕäçĺíű˙ ˘ đŕçäçĺëĺ %s áóäóöü ńňđŕ÷ŕíű"
-#: ../../diskdrake.pm_.c:617
+#: ../../diskdrake.pm_.c:660
msgid "Choose the new size"
msgstr "Âűáŕđ íîâűő ďŕěĺđŕ˘"
-#: ../../diskdrake.pm_.c:617 ../../install_steps_graphical.pm_.c:287
-#: ../../install_steps_graphical.pm_.c:334
-#: ../../install_steps_interactive.pm_.c:518
-#: ../../partition_table_raw.pm_.c:101
-msgid "MB"
-msgstr "Ěá"
-
-#: ../../diskdrake.pm_.c:674
+#: ../../diskdrake.pm_.c:714
msgid "Create a new partition"
-msgstr "Ńňâŕđýííĺ íîâŕăŕ đŕçäçĺëŕ"
+msgstr "Ńňâŕđýííĺ íîâŕăŕ đŕçäçĺëó"
-#: ../../diskdrake.pm_.c:700
+#: ../../diskdrake.pm_.c:740
msgid "Start sector: "
msgstr "Ďŕ÷ŕňęîâű ńĺęňŕđ:"
-#: ../../diskdrake.pm_.c:704 ../../diskdrake.pm_.c:779
+#: ../../diskdrake.pm_.c:744 ../../diskdrake.pm_.c:819
msgid "Size in MB: "
msgstr "Ďŕěĺđ ó Ěá:"
-#: ../../diskdrake.pm_.c:707 ../../diskdrake.pm_.c:782
+#: ../../diskdrake.pm_.c:747 ../../diskdrake.pm_.c:822
msgid "Filesystem type: "
msgstr "Ňűď ôŕéëŕâŕé ńińňýěű:"
-#: ../../diskdrake.pm_.c:710
+#: ../../diskdrake.pm_.c:750
msgid "Preference: "
msgstr "Ďŕđŕěĺňđű: "
-#: ../../diskdrake.pm_.c:758
+#: ../../diskdrake.pm_.c:798
msgid "This partition can't be used for loopback"
msgstr "Ăýňű đŕçäçĺë íĺ ěîćŕ áűöü âűęŕđűńňŕíű ďŕä âiđňóŕëüíóţ ôŕéëŕâóţ ńińňýěó"
-#: ../../diskdrake.pm_.c:768
+#: ../../diskdrake.pm_.c:808
msgid "Loopback"
msgstr "Âiđňóŕëüíŕ˙ ôŕéëŕâŕ˙ ńińňýěŕ (loopback)"
-#: ../../diskdrake.pm_.c:778
+#: ../../diskdrake.pm_.c:818
msgid "Loopback file name: "
-msgstr "Iě˙ âiđňóŕëüíŕăî đŕçäçĺëŕ"
+msgstr "Iě˙ âiđňóŕëüíŕăŕ đŕçäçĺëó"
-#: ../../diskdrake.pm_.c:804
+#: ../../diskdrake.pm_.c:844
msgid "File already used by another loopback, choose another one"
msgstr ""
"Ôŕéë óćî âűęŕđűńňî˘âŕĺööŕ iířŕé âiđňóŕëüíŕé ńińňýěŕé. Ęŕëi ëŕńęŕ, \n"
-"âűá˙đűöĺ iířóţ íŕçâó"
+"ŕá˙đűöĺ iířóţ íŕçâó"
-#: ../../diskdrake.pm_.c:805
+#: ../../diskdrake.pm_.c:845
msgid "File already exists. Use it?"
msgstr "Ôŕéë óćî ińíóĺ. Âűęŕđűńňŕöü ˙ăî?"
-#: ../../diskdrake.pm_.c:827 ../../diskdrake.pm_.c:843
+#: ../../diskdrake.pm_.c:867 ../../diskdrake.pm_.c:883
msgid "Select file"
-msgstr "Âűá˙đűöĺ ôŕéë"
+msgstr "Ŕá˙đűöĺ ôŕéë"
-#: ../../diskdrake.pm_.c:836
+#: ../../diskdrake.pm_.c:876
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
msgstr ""
-"Ňŕáëiöŕ đŕçě˙ř÷ýíí˙ đýçĺđâîâŕăŕ äűńęŕ ěŕĺ iířű ďŕěĺđ\n"
-"Óń¸ć-ňŕęi ińöi íŕďĺđŕä?"
+"Ňŕáëiöŕ đŕçě˙ř÷ýíí˙ đýçĺđâîâŕăŕ äűńęó ěŕĺ iířű ďŕěĺđ\n"
+"Ďđŕö˙ăâŕöü äŕëĺé?"
-#: ../../diskdrake.pm_.c:844
+#: ../../diskdrake.pm_.c:884
msgid "Warning"
msgstr "Óâŕăŕ!"
-#: ../../diskdrake.pm_.c:845
+#: ../../diskdrake.pm_.c:885
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1455,95 +1755,127 @@ msgstr ""
"Óńňŕ˘öĺ äűńęĺňó ˘ äűńęŕâîä\n"
"Óńĺ äŕäçĺíű˙ íŕ ăýňŕé äűńęĺöĺ áóäóöü ńňđŕ÷ŕíű"
-#: ../../diskdrake.pm_.c:856
+#: ../../diskdrake.pm_.c:896
msgid "Trying to rescue partition table"
msgstr "Ďŕńďđŕáóĺě âűđŕňŕâŕöü ňŕáëiöó đŕçäçĺëŕ˘"
-#: ../../diskdrake.pm_.c:867
+#: ../../diskdrake.pm_.c:905
msgid "device"
msgstr "ďđűëŕäŕ"
-#: ../../diskdrake.pm_.c:868
+#: ../../diskdrake.pm_.c:906
msgid "level"
msgstr "óçđîâĺíü"
-#: ../../diskdrake.pm_.c:869
+#: ../../diskdrake.pm_.c:907
msgid "chunk size"
-msgstr "ďŕěĺđ áëîęŕ"
+msgstr "ďŕěĺđ áëîęó"
-#: ../../diskdrake.pm_.c:881
+#: ../../diskdrake.pm_.c:919
msgid "Choose an existing RAID to add to"
-msgstr "Âűá˙đűöĺ ińíóţ÷ű RAID äë˙ äŕáŕ˘ëĺíí˙"
+msgstr "Ŕá˙đűöĺ ińíóţ÷ű RAID äë˙ äŕäŕíí˙"
-#: ../../diskdrake.pm_.c:882
+#: ../../diskdrake.pm_.c:920 ../../diskdrake.pm_.c:946
msgid "new"
msgstr "íîâű"
+#: ../../diskdrake.pm_.c:944
+msgid "Choose an existing LVM to add to"
+msgstr "Âűá˙đűöĺ ińíóţ÷ű LVM äë˙ äŕáŕ˘ëĺíí˙"
+
+#: ../../diskdrake.pm_.c:949
+msgid "LVM name?"
+msgstr ""
+
+#: ../../diskdrake.pm_.c:976
+msgid "Removable media automounting"
+msgstr "Ŕ˘ňŕěŕíöiđŕâŕííĺ çěĺííűő íŕçŕďŕřâŕëüíłęŕ˘"
+
+#: ../../diskdrake.pm_.c:977
+msgid "Rescue partition table"
+msgstr "Äŕäŕňęîâŕ˙ ňŕáëiöŕ đŕçäçĺëŕ˘"
+
+#: ../../diskdrake.pm_.c:979
+msgid "Reload"
+msgstr "Ďĺđŕçŕăđóçiöü"
+
#: ../../fs.pm_.c:88 ../../fs.pm_.c:95 ../../fs.pm_.c:101 ../../fs.pm_.c:107
#, c-format
msgid "%s formatting of %s failed"
-msgstr "%s ďŕěűëęŕ ôŕđěŕöiđŕâŕíí˙ %s"
+msgstr "%s ďŕěűëęŕ ôŕđěŕňŕâŕíí˙ %s"
-#: ../../fs.pm_.c:133
+#: ../../fs.pm_.c:135
#, c-format
msgid "I don't know how to format %s in type %s"
-msgstr "Íĺ âĺäŕţ ˙ę ŕäôŕđěŕöiđŕâŕöü %s ç ňűďŕě %s"
+msgstr "Íĺ âĺäŕţ ˙ę ŕäôŕđěŕňŕâŕöü %s ç ňűďŕě %s"
-#: ../../fs.pm_.c:218
+#: ../../fs.pm_.c:220
msgid "mount failed: "
msgstr "ďŕěűëęŕ ěŕíöiđŕâŕíí˙: "
-#: ../../fs.pm_.c:230
+#: ../../fs.pm_.c:232
#, c-format
msgid "error unmounting %s: %s"
msgstr "ďŕěűëęŕ đŕçěŕíöiđŕâŕíí˙ %s: %s"
-#: ../../fsedit.pm_.c:235
+#: ../../fsedit.pm_.c:21
+msgid "simple"
+msgstr ""
+
+#: ../../fsedit.pm_.c:30
+msgid "server"
+msgstr "ńĺđâĺđ"
+
+#: ../../fsedit.pm_.c:261
msgid "Mount points must begin with a leading /"
msgstr "Ďóíęň ěŕíöiđŕâŕíí˙ ďŕâiíĺí ďŕ÷űíŕööŕ ç /"
-#: ../../fsedit.pm_.c:238
+#: ../../fsedit.pm_.c:264
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Óćî ¸ńöü đŕçäçĺë ç ďóíęňŕě ěŕíöiđŕâŕíí˙ %s\n"
-#: ../../fsedit.pm_.c:246
+#: ../../fsedit.pm_.c:272
#, c-format
msgid "Circular mounts %s\n"
-msgstr "Ěŕíöiđŕâŕííĺ äűńęŕ %s\n"
+msgstr "Ěŕíöiđŕâŕííĺ äűńęó %s\n"
+
+#: ../../fsedit.pm_.c:284
+#, c-format
+msgid "You can't use a LVM Logical Volume for mount point %s"
+msgstr ""
-#: ../../fsedit.pm_.c:258
+#: ../../fsedit.pm_.c:285
msgid "This directory should remain within the root filesystem"
msgstr "Ăýňű ęŕňŕëîă ďŕâłíĺí çíŕőîäçłööŕ ˘íóňđű ęŕđŕí¸âŕé ôŕéëŕâŕé ńłńňýěű"
-#: ../../fsedit.pm_.c:259
+#: ../../fsedit.pm_.c:286
msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
msgstr ""
"Âŕě íĺŕáőîäíŕ çŕäŕöü ďđŕâiëüíű ňűď ôŕéëŕâŕé ńińňýěű (ext2, reiserfs)\n"
"äë˙ ăýňŕé ęđîďęi ěŕíöiđŕâŕíí˙\n"
-#: ../../fsedit.pm_.c:335
+#: ../../fsedit.pm_.c:368
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Ďŕěűëęŕ ŕäęđűöö˙ %s äë˙ çŕďińó: %s"
-#: ../../fsedit.pm_.c:417
+#: ../../fsedit.pm_.c:452
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"
msgstr ""
-"Ďŕěűëęŕ: äë˙ ńňâŕđýíí˙ íîâűő ôŕéëŕâűő ńińňýě íĺ çíŕéäçĺíű ŕäďŕâĺäíű˙ \n"
+"Ďŕěűëęŕ: äë˙ ńňâŕđýíí˙ íîâűő ôŕéëŕâűő ńińňýěࢠíĺ çíŕéäçĺíű ŕäďŕâĺäíű˙ \n"
"ďđűëŕäű. Ďđŕâĺđöĺ ŕáńňŕë˙âŕííĺ äë˙ ďîřóęó iěŕâĺđíŕé ďđű÷űíű."
-#: ../../fsedit.pm_.c:431
+#: ../../fsedit.pm_.c:466
msgid "You don't have any partitions!"
msgstr "Âű íĺ ńňâŕđűëi ŕíi˙ęiő đŕçäçĺëŕ˘!"
#: ../../help.pm_.c:9
-#, fuzzy
msgid ""
"Please choose your preferred language for installation and system usage."
-msgstr "Âűá˙đűöĺ ěîâó ˘ńňŕíî˘ęi i đŕáîňű ńińňýěű"
+msgstr ""
#: ../../help.pm_.c:12
msgid ""
@@ -1557,10 +1889,19 @@ msgid ""
"end without modifying your current\n"
"configuration."
msgstr ""
+"Âű ďŕâłííű ďđűí˙öü óěîâű ëłöýíçłł, ęŕá ďđŕö˙ăíóöü óńňŕë˙âŕíüíĺ.\n"
+"\n"
+"\n"
+"Ęŕëł ëŕńęŕ, íŕöłńíłöĺ \"Ďđűí˙öü\", ęŕëł âű çăîäíű˙ ç óěîâŕěł ëłöýíçłł.\n"
+"\n"
+"\n"
+"Ęŕëł ëŕńęŕ, íŕöłńíłöĺ \"Ŕäâĺđăíóöü\", ęŕëł âű íĺ çăîäíű˙ ç óěîâŕěł "
+"ëłöĺíçłł.Óńňŕë˙âŕííĺ áóäçĺ ńęîí÷ŕíŕ\n"
+"á˙ç çěĺíࢠâŕřŕé á˙ăó÷ŕé ęŕíôłăóđŕöűł."
#: ../../help.pm_.c:22
msgid "Choose the layout corresponding to your keyboard from the list above"
-msgstr "Âűá˙đűöĺ đŕńęëŕäęó ńâŕ¸é ęëŕâi˙ňóđű ç ďđűâĺäçĺíŕăŕ ńďińó"
+msgstr "Ŕá˙đűöĺ đŕńęëŕäęó ńâŕ¸é ęëŕâi˙ňóđű ç ďđűâĺäçĺíŕăŕ ńďińó"
#: ../../help.pm_.c:25
msgid ""
@@ -1569,6 +1910,9 @@ msgid ""
"chose\n"
"them in list above. If you want select all, you just need to select \"All\"."
msgstr ""
+"Ęŕëł âű ćŕäŕĺöĺ ęŕá ďŕńë˙ ˘ńňŕë˙âŕíí˙ áűëł äŕńňóďíű łířű˙ ěîâű\n"
+"(ŕęđŕě˙ ňîé, ˙ęóţ âű ˘ćî ŕáđŕëł íŕďŕ÷ŕňęó ˘ńňŕë˙âŕíí˙), ęŕëł ëŕńęŕŕá˙đűöĺ\n"
+"łő ç âűřýé ďđűâĺäçĺíŕăŕ ńďłńó. Ęŕëł âű ćŕäŕĺöĺ ŕáđŕöü óń¸ íŕöłńíłöĺ \"Óńĺ\"."
#: ../../help.pm_.c:30
msgid ""
@@ -1585,15 +1929,15 @@ msgid ""
"levels to install or update your\n"
"Linux-Mandrake operating system:\n"
"\n"
-"\t* Recommanded: if you have never installed a GNU/Linux operating system "
+"\t* Recommended: if you have never installed a GNU/Linux operating system "
"choose this. Installation will be\n"
"\t be very easy and you will be asked only on few questions.\n"
"\n"
"\n"
"\t* Customized: if you are familiar enough with GNU/Linux, you may choose "
"the primary usage (workstation, server,\n"
-"\t development) of your sytem. You will need to answer to more questions "
-"than in \"Recommanded\" installation\n"
+"\t development) of your system. You will need to answer to more questions "
+"than in \"Recommended\" installation\n"
"\t class, so you need to know how GNU/Linux works to choose this "
"installation class.\n"
"\n"
@@ -1608,6 +1952,37 @@ msgid ""
"knowledge in GNU/Linux. So, don't choose\n"
"\t this installation class unless you know what you are doing."
msgstr ""
+"Ęŕëł ëŕńęŕ, íŕöłńíłöĺ \"Óńňŕ븢ęŕ\" ęŕëł íĺ ěŕĺööŕ ŕíł˙ęŕé ďŕď˙đýäí˙éâĺđńłł "
+"Linux-Mandrake\n"
+"ŕëüáî âű ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü íĺęŕëüęł ŕďĺđŕöűéíűő ńłńňýěŕ˘.\n"
+"\n"
+"\n"
+"Ó çŕëĺćíŕńöł ŕä âŕřűő âĺäࢠGNU/Linux, âű ěîćűöĺ ŕáđŕöü ŕäçłí ç íŕńňóďíűő "
+"ęëŕńŕ˘, ęŕá óńňŕ븢âŕöü ł ěŕäűôłęŕâŕöü \n"
+"âŕřóţ ŕďĺđŕöűéíóţ ńłńňýěó Linux-Mandrake:\n"
+"\n"
+"\t* Đýęŕěĺíäŕâŕíŕ: ŕá˙đűöĺ ăýňű ęëŕń, ęŕëł âű íłęîëł íĺ "
+"˘ńňŕ븢âŕëłGNU/Linux. Óńňŕë˙âŕííĺ áóäçĺ âĺëüěł ďđîńňűě,\n"
+"\t âŕě áóäçĺ çŕäŕíŕ ňîëüęł íĺęŕëüęł ďűňŕíí˙˘.\n"
+"\n"
+"\n"
+"\t* Ďŕ âűáŕđó: ęŕëł âű äŕńňŕňęîâŕ çíŕ¸ěű˙ ç GNU/Linux, âű ěîćŕöĺ çđŕáłöü "
+"âűáŕđ ěłć âűęŕđűńňŕííĺě ńłńňýěű ˙ę Ďđŕöî˘íŕ˙\n"
+"\t ńňŕíöű˙, Ńĺđâĺđ, Đŕńďđŕöî˘ęŕ. Âű ďŕâłííű áóäçĺöĺ ŕäęŕçŕöü íŕ áîëüřóţ "
+"ęîëüęŕńöü ďűňŕíí˙˘ ÷űě ďŕä ÷ŕń óńňŕë˙âŕíí˙\n"
+"\t ęëŕńó \"Đýęŕěýíäŕâŕíŕ\", ňŕěó âű ďŕâłííű âĺäŕöü, ˙ę ďđŕöóĺ GNU/Linux, ęŕá "
+"ŕáđŕöü ăýňű ęëŕń óńňŕë˙âŕíí˙.\n"
+"\n"
+"\n"
+"\t* Ýęńďĺđň: âű ěîćŕöĺ ŕáđŕöü ăýňű ęëŕń, ęŕëł âű ěŕĺöĺ äîáđű˙ âĺäű ˘ "
+"GNU/Linux. ßę ł ďđű ˘ńňŕë˙âŕííł ęëŕńó\n"
+"\t \"Íŕńňđîĺíŕ\", âű ěîćŕöĺ çđŕáłöü âűáŕđ ěłć âűęŕđűńňŕííĺě ńłńňýěű ˙ę "
+"Ďđŕöî˘íŕ˙ ńňŕíöű˙, Ńĺđâĺđ,\n"
+"\t Đŕńďđŕöî˘ęŕ. Áóäçüöĺ âĺëüěł ŕńö˙đîćíű˙ ďĺđŕä ňűě, ˙ę ŕáđŕöü ăýňű ęëŕń "
+"óńňŕë˙âŕíí˙. Âű áóäçĺöĺ çäîëüíű˙ âűęŕíŕöü óńňŕë˙âŕííĺ ˘\n"
+"\t ŕäďŕâĺäíŕńöł ç âŕřűěł ćŕäŕíí˙ěł. Ŕäęŕçű íŕ íĺęŕňîđű˙ ďűňŕííł ěîăóöü áűöü "
+"âĺëüěł ńęëŕäŕíűěł, ęŕëł âű íĺ ěŕĺöĺ äîáđűő âĺäࢠó GNU/Linux.\n"
+"\t Ňŕěó íĺ ŕáłđŕéöĺ ăýňű ęëŕń łíńňŕë˙öűł, ęŕëł âű íĺ âĺäŕĺöĺ ňîĺ, řňî đîáłöĺ."
#: ../../help.pm_.c:56
msgid ""
@@ -1625,24 +2000,23 @@ msgid ""
" But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
"DOING!"
msgstr ""
-"Âűá˙đűöĺ: \n"
+"Ŕá˙đűöĺ: \n"
"\n"
" - Ďŕ âűáŕđó: Ăýňű đýćűě đýęŕěĺíäóĺööŕ ˘ ňűě âűďŕäęó, ęŕëi âű ďđŕöŕâŕëi \n"
" đŕíĺé ç GNU/Linux, i çěîćŕöĺ ńŕěi âűáđŕöü íĺŕáőîäíű˙\n"
-" ďŕęĺňű i ŕáńňŕë˙âŕííĺ äë˙ âŕřŕăŕ ęŕěďóňŕđŕ. Ăë˙äçiöĺ íićýé "
+" ďŕęĺňű i ŕáńňŕë˙âŕííĺ äë˙ âŕřŕăŕ ęŕěď'ţňŕđó. Ăë˙äçiöĺ íićýé "
"ďŕäđŕá˙çíŕńöł.\n"
"\n"
"\n"
" - Ýęńďĺđň: Âűáŕđ ăýňŕăŕ đýćűěó ńâĺä÷űöü, řňî âű ńâŕáîäíŕ âŕëîäŕĺöĺ "
"GNU/Linux\n"
-" i ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü âĺëüěi äýňŕë¸âóţ Ąńňŕ븢ęó. ßę i ˘ âűďŕäęó \n"
+" i ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü âĺëüěi äýňŕë¸âŕĺ Ąńňŕë˙âŕííĺ. ßę i ˘ âűďŕäęó \n"
" \"Ďŕ âűáŕđó\"âŕě ďŕňđýáíŕ áóäçĺ âűáđŕöü íĺŕáőîäíű˙ ďđŕăđŕěű i \n"
-" ŕáńňŕë˙âŕííĺ âŕřŕăŕ ęŕěďóňŕđŕ.\n"
+" ŕáńňŕë˙âŕííĺ âŕřŕăŕ ęŕěďóňŕđó.\n"
" Ęŕëi ëŕńęŕ, ÍĹ ÂŰÁIĐŔÉÖĹ ĂÝŇŰ ĐÝĆŰĚ, ĘŔËI ÍĹ ĄĎÝĄÍĹÍŰ, ŘŇÎ ĐÎÁIÖĹ "
"ĎĐŔÂIËÜÍŔ!"
#: ../../help.pm_.c:68
-#, fuzzy
msgid ""
"You must now define your machine usage. Choices are:\n"
"\n"
@@ -1665,35 +2039,8 @@ msgid ""
"\t server and so on. As such, do not expect any gimmicks (KDE, GNOME, etc.) "
"to be installed."
msgstr ""
-"Đîçíű˙ ňűďű âűęŕđűńňî˘âŕíí˙ âŕřŕăŕ ęŕěďóňŕđŕ (ęŕëi, âű âűáđŕëi ňűď "
-"óńňŕ븢ęi\n"
-" \"Ďŕ âűáŕđó\" ŕëüáî \"Ýęńďĺđň\") íŕńňóďíű˙:\n"
-"\n"
-" - Çâű÷ŕéíű: âűá˙đűöĺ ăýňű ňűď, ęŕëi âŕř ęŕěďóňŕđ áóäçĺ âűęŕđűńňî˘âŕööŕ "
-"äë˙\n"
-" îôińíŕé ďđŕöű (íŕáîđó ňýęńňŕ˘, ăđŕôięi i ăýňŕę äŕëĺé). Ěŕéöĺ íŕ ˘âŕçĺ,\n"
-" řňî ˘ ňŕęiě âűďŕäęó íĺ áóäóöü óńňŕë˙âŕíű íi ŕäçií ç ęŕěďië˙ňŕđŕ˘, "
-"ńđîäęŕ˘\n"
-" đŕńďđŕöî˘ęi i ăýňŕę äŕëĺé.\n"
-"\n"
-" - Äë˙ đŕńďđŕöî˘ęi: ńŕěŕ íŕçâŕ řěŕň řňî ˘ćî ăŕâîđűöü. Âűá˙đűöĺ ăýňű ňűď,\n"
-" ęŕëi ęŕěďóňŕđ áóäçĺ âűęŕđűńňî˘âŕööŕ äë˙ đŕńďđŕöîâŕę ďđŕăđŕě. Ó ăýňűě\n"
-" âűďŕäęó ˘ âŕń áóäçĺ ďî˘íŕ˙ ęŕëĺęöű˙ ńđîäęࢠäë˙ ęŕěďië˙öűi, ďđŕâĺđęi "
-"ęîäŕ,\n"
-" ôŕđěŕöiđŕâŕíí˙ çűőîäíŕăŕ ęîäŕ ŕëüáî íŕďińŕíí˙ ďŕęĺňࢠďđŕăđŕě.\n"
-"\n"
-" - Ńĺđâĺđ: âűá˙đűöĺ ăýňű ňűď, ęŕëi ěŕřűíŕ, íŕ ˙ęóţ áóäçĺ ˘ńňŕë˙âŕíű "
-"Linux-Mandrake,\n"
-" áóäçĺ âűęŕđűńňî˘âŕööŕ ˙ę ńĺđâĺđ. Íŕďđűęëŕä, ˙ę ôŕéëŕâű ńĺđâĺđ (NFS ŕëüáî "
-"SMB),\n"
-" ńĺđâĺđ äđóęó (äđóę ěîćŕ áűöü çŕá˙ńďĺ÷ŕíű çŕ ęîřň ďđŕňŕęîëŕ UNIX lp (Line "
-"Printer) öi SMB),\n"
-" ńĺđâĺđ đýăińňđŕöűi ęŕđűńňŕëüíięࢠ(NIS), ńĺđâĺđ áŕç äŕäçĺíűő i ă.ä.\n"
-" Ó ňŕęiě âűďŕäęó ăđŕôi÷íű˙ ńińňýěű ňűďŕ KDE, GNOME i ă.ä. óńňŕë˙âŕíű íĺ "
-"áóäóöü.\n"
#: ../../help.pm_.c:84
-#, fuzzy
msgid ""
"DrakX will attempt to look for PCI SCSI adapter(s). If DrakX\n"
"finds an SCSI adapter and knows which driver to use, it will be "
@@ -1725,28 +2072,6 @@ msgid ""
"Windows\n"
"(if you have it on your system)."
msgstr ""
-"DrakX áóäçĺ ńďđŕáŕâŕöü âűçíŕ÷űöü PCI SCSI ŕäŕďňŕđ(ű).\n"
-"Ęŕëi DrakX çíîéäçĺ SCSI ŕäŕďňŕđ i áóäçĺ âĺäŕöü ŕäďŕâĺäíű äë˙ ˙ăî äđŕéâĺđ, "
-"ňî\n"
-"ŕ˘ňŕěŕňű÷íŕ ˘ńňŕëţĺ ˙ăî (iő) ˘ ńińňýěó.\n"
-"\n"
-"Ęŕëi âű ěŕĺöĺ íĺ SCSI ŕäŕďňŕđ, ISA SCSI ŕäŕďňŕđ ŕëüáî \n"
-"PCI SCSI ŕäŕďňŕđ, ˙ęi DrakX íĺ ěîćŕ âűçíŕ÷űöü, ó âŕń çŕďűňŕţööŕ, öi\n"
-"¸ńöü ˙ęi SCSI ŕäŕďňŕđ ó âŕřŕé ńińňýěĺ. Ęŕëi ňŕęîăŕ ŕäŕďňŕđŕ í˙ěŕ,\n"
-"âű ěîćŕöĺ íŕöińíóöü íŕ 'Íĺ'. Ęŕëi âű âűá˙đűöĺ 'Ňŕę', ńďiń äđŕéâĺđࢠáóäçĺ\n"
-"âŕě ďđŕäńňŕ˘ëĺíű i ç ˙ęîăŕ âű ěîćŕöĺ âűáđŕöü âŕř ńďĺöűôi÷íű ŕäŕďňŕđ.\n"
-"\n"
-"\n"
-"Ęŕëi âű âűáđŕëi âŕř ńďĺöűôi÷íű ŕäŕďňŕđ ńŕěŕńňîéíŕ, DrakX áóäçĺ\n"
-"çŕďűňâŕööŕ ďđŕ ďŕđŕěĺňđű, ˙ęi˙ âű ćŕäŕĺöĺ âűçíŕ÷űöü äë˙ ˙ăî. Âŕě\n"
-"íĺŕáőîäíŕ äŕçâîëiöü DrakX ďŕńďđŕáŕâŕöü âűçíŕ÷űöü ăýňű˙ ďŕđŕěĺňđű.\n"
-"Çâű÷ŕéíŕ ˘ń¸ ěîćŕ ďđŕéńöi äîáđŕ.\n"
-"\n"
-"Ęŕëi íĺ ŕňđűěŕëŕń˙, âŕě íĺŕáőîäíŕ ďŕçíŕ÷űöü ńŕěŕěó ăýňű˙ ďŕđŕěĺňđű.\n"
-"Äŕâĺäŕööŕ ďđŕ ěŕă÷űěű˙ ďŕđŕěĺňđű äë˙ âŕřŕăŕ ŕäŕďňŕđŕ âű ěîćŕöĺ,\n"
-"ďđŕăëĺäçĺ˘ ŕäďŕâĺäíű˙ íŕńňđîéęi äë˙ ˙ăî ˘ Windows (ęŕëi ăýňŕ˙ ńińňýěŕ ˘ âŕń\n"
-"óńňŕë˙âŕíŕ), ňýőíi÷íóţ äŕęóěĺíňŕöűţ ŕëüáî íŕâĺäࢠweb âóçĺë âűňâîđöű (ęŕëi\n"
-"ěŕĺöĺ äîńňóď äŕ Internet)."
#: ../../help.pm_.c:108
msgid ""
@@ -1818,6 +2143,64 @@ msgid ""
"lose all your data very easily. So,\n"
"\t don't choose this solution unless you know what you are doing."
msgstr ""
+"Ó ăýňűě ďóíęöĺ, âű ďŕâłííű ŕáđŕöü äçĺ íŕ âŕřűě ćîđńęłě \n"
+"äűńęó óńňŕë˙âŕöü ŕďĺđŕöűéíóţ ńłńňýěó Linux-Mandrake. Ęŕëł äűńę ďóńňű\n"
+"ŕëüáî ˘ńňŕëűâŕíŕ˙ ŕďĺđŕöűéíŕ˙ ŕďĺđŕöűéíŕ˙ ńłńňýěŕ âűęŕđűńňî˘âŕĺ ˘ńţ\n"
+"äűńęŕâóţ ďđŕńňîđó, âű ďŕâłííű đŕçüáłöü ˙ăî íŕ đŕçäçĺëű. Ó ŕńíî˘íűě,\n"
+"đŕçáłöö¸ đŕçäçĺëࢠćîđńęŕăŕ äűńęó ńęëŕäŕĺööŕ ç ëŕăł÷íŕăŕ äç˙ëĺíí˙ ˙ăî\n"
+"äűńęŕâŕé ďđŕńňîđű äçĺë˙ ˘ńňŕë˙âŕíí˙ âŕřŕé íîâŕé ńłńňýěű Linux-Mandrake.\n"
+"\n"
+"Ňŕěó ˙ę âűíłęł đŕçáłöö˙ đŕçäçĺëࢠçâű÷ŕéíŕ íĺçâŕđîňíű˙, ăýňű ďđŕöýń \n"
+"ěîćŕ áűöü ďóćŕţ÷űě ł íŕďđóćŕíűě, ęŕëł âű íĺâîďűňíű ęŕđűńňŕëüíłę. Ăýňű\n"
+"ěŕéńňŕđ ńďđŕř÷ŕĺ ăýňű ďđŕöýń. Ďĺđŕä ňűě ˙ę ďŕ÷ŕöü çâ˙đíłöĺń˙, ęŕëł\n"
+"ëŕńęŕ, äŕ äŕâĺäęł.\n"
+"\n"
+"Âŕě ďŕňđýáíŕ, ńŕěŕ ěŕëŕ, äâŕ đŕçäçĺëű. Ďĺđřű íĺďŕńđýäíŕ äë˙ ŕďĺđŕöűéíŕé\n"
+"ńłńňýěű, ł äđóăł äë˙ âłđňóŕëüíŕé ďŕě˙öł (Swap - đŕçäçĺë).\n"
+"\n"
+"Ęŕëł đŕçäçĺëű ˘ćî âűçíŕ÷ŕíű (ó ďŕď˙đýäí˙ĺ ˘ńňŕë˙âŕííĺ öł łířűě \n"
+"łíńňđóěŕíňŕě âűçíŕ÷ýíí˙ đŕçäçĺëŕ˘), âű ďŕâłííű ŕáđŕöü ňű˙, ˙ęł˙ ćŕäŕĺöĺ\n"
+"âűęŕđűńňî˘âŕöü äë˙ ˘ńňŕë˙âŕíí˙ ńłńňýěű.\n"
+"\n"
+"\n"
+"Ęŕëł đŕçäçĺëű íĺ áűëł âűçíŕ÷ŕíű, âű ďŕâłííű łő ńňâŕđűöü. Ęŕá çđŕáłöü \n"
+"ăýňŕ, ńęŕđűńňŕéöĺ ěŕéńňđŕ, äŕńňóďíŕăŕ âűřýé. Ó çŕëĺćíŕńöł ŕä \n"
+"ęŕíôłăóđŕöűł ćîđńňęŕăŕ äűńęó, ěîăćŕ áűöü çđîáëĺíŕ íŕńňóďíŕĺ:\n"
+"\n"
+"\t* Âűęŕđűńňŕííĺ łńíóţ÷ŕăŕ đŕçäçĺëó: ěŕéńňŕđ çíŕéřî˘ ŕäçłí öł íĺęŕëüęł.\n"
+"łńíóţ÷űő đŕçäçĺëࢠíŕ âŕřűě ćîđńęłě äűńęó. Ęŕëł âű ćŕäŕĺöĺ łő çŕőŕâŕöü,\n"
+"ŕá˙đűöĺ ăĺňóţ îďöűţ.\n"
+"\n"
+"\n"
+"\t* Ďî˘íŕ˙ ŕ÷űńňęŕ äűńęó: ŕá˙đűöĺ ăýňŕ, ęŕëł âű ćŕäŕĺöĺ âűäŕëłöü óńĺäŕäçĺíű˙ "
+"ł đŕçäçĺëű ˙ęł˙ łńíóţöü\n"
+"\t íŕ âŕřűě äűńęó ł çŕě˙íłöü íŕ Linux-Mandrake. Áóäçöĺ óâŕćëłâű ç "
+"ăýňŕéîďöű˙é, áî ăýňű ďđŕöýń íĺçâŕđîňíű.\n"
+"\n"
+"\n"
+"\t* Âűęŕđűńňŕííĺ âîëüíŕé ďđŕńňîđű íŕ đŕçäçĺëĺ Windows: ęŕëł MicrosoftWindows "
+"óńňŕë˙âŕíŕ íŕ âŕřűě ćîđńęłě\n"
+"\t äűńęó ł âűęŕđűńňî˘âŕĺ ˘ńţ äŕńňóďíóţ ďđŕńňîđó, âű ďŕâłííű ńňâŕđűöüâîëüíóţ "
+"ďđŕńňîđó äë˙ äŕäçĺíűő Linux\n"
+"\tĘŕá çđŕáłöü ăýňŕ, âű ěîćŕöĺ âűäŕë˙öü âŕř đŕçäçĺë Windows ł "
+"äŕäçĺíű˙(ăë.\"Ŕ÷űńňęŕ óń˙ăî äűńęó\" ŕëüáî\n"
+"\t \"Đýćűě ýęńďĺđňó\") ŕëüáî çě˙íłöü ďŕěĺđű âŕřŕăŕ đŕçäçĺëó WindowsÇě˙íĺííĺ "
+"ďŕěĺđࢠěîćŕ áűöü âűęŕíŕíŕ\n"
+"\t áĺç ńňđŕňű äŕäçĺíűő. Ăýňŕ˙ îďöű˙ đýęŕěĺíäóĺööŕ, ęŕëł âű "
+"ćŕäŕĺöĺâűęŕđűńňî˘âŕöü Linux-Mandrake ł\n"
+"\t Microsoft Windows íŕ ŕäíűě ł ňűě ćŕ ęŕěď'ţňýđű.\n"
+"\n"
+"\t Ďĺđŕä âűáŕđŕě ăýňŕăŕ, ęŕëł ëŕńęŕ, çüâ˙đíłöĺ ˘âŕăó, íŕ ňîĺ, řňîęîëüęŕńüöü "
+"äŕńňóďíŕé âîëüíŕé\n"
+"\t ďđŕńňîđű ďŕä Microsoft Windows çěĺířűööŕ.\n"
+"\n"
+"\n"
+"\t* Đýćűě ýęńďĺđňó: âű ěîćŕöĺ ŕáđŕöü ăýňóţ îďöűţ, ęŕëł âű ćŕäŕĺöĺđŕçáłöü "
+"đŕçäçĺëű óëŕńíŕ đóęŕěł.\n"
+"\t Áóäçöĺ ˘âŕćëłâű˙ ŕáłđŕţ÷ű ăýňŕ. Ăýňŕ˙ îďöű˙ ěŕăóňíŕ˙ ŕëĺ "
+"äŕâîëłíĺá˙ńďĺ÷íŕ˙, âű ěîćŕöĺ\n"
+"\t ë¸ăęŕ çăóáłöü ńâŕĺ äŕäçĺíű˙. Ňŕěó íĺ ŕáłđŕéöĺ ăýňóţ îďöűţ ęŕëł âűíĺ "
+"âĺäŕĺöĺ řňî đîáłöĺ."
#: ../../help.pm_.c:160
msgid ""
@@ -1844,7 +2227,7 @@ msgid ""
"hard drive.\n"
"\n"
"\n"
-" * Auto allocate:: this option allows you to automatically create Ext2 and "
+" * Auto allocate: this option allows you to automatically create Ext2 and "
"swap partitions in free space of your\n"
" hard drive.\n"
"\n"
@@ -1891,10 +2274,18 @@ msgid ""
"\n"
" * Ctrl-d to delete a partition\n"
"\n"
-" * Ctrl-m to set the mount point"
+" * Ctrl-m to set the mount point\n"
+" \n"
+"\n"
+" \n"
+"If you are installing on a PPC Machine, you will want to create a small HFS "
+"'bootstrap' partition of at least 1MB for use\n"
+"by the yaboot bootloader. If you opt to make the partition a bit larger, say "
+"50MB, you may find it a useful place to store \n"
+"a spare kernel and ramdisk image for emergency boot situations."
msgstr ""
-#: ../../help.pm_.c:218
+#: ../../help.pm_.c:224
msgid ""
"Above are listed the existing Linux partitions detected on\n"
"your hard drive. You can keep choices make by the wizard, they are good for "
@@ -1937,16 +2328,46 @@ msgid ""
"With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means "
"\"secondary hard drive\", etc..."
msgstr ""
+"Äŕëĺé ŕäçíŕ÷ŕíű óńĺ łńíóţ÷ű˙ đŕçäçĺëű Linux, çíîéäçĺíű˙ íŕ âŕřűě äűńęó,\n"
+" ˙ęł˙ çđîáëĺíű ěŕéńňđŕě âűëó÷ýíí˙ äűńęŕ˘. Âű ěîćŕöĺ ďŕęłíóöü łő ňŕę ł "
+"âűęŕđűńň˘âŕöü\n"
+" äŕëĺé, áî ˙íű äîáđŕ ďŕäűőîäç˙öü äë˙ çâű÷ŕéíŕăŕ âűęŕđűńňŕíí˙. Ęŕëł âű\n"
+" ˘íîńłöĺ çěĺíű, âű ďŕâłííű, âűëó÷űöü őŕö˙ đŕçäçĺë (\"/\"). Đŕáłöĺ\n"
+" đŕçäçĺë íĺ âĺëüěł ěŕëűě, áî ˘ ŕäâŕđîňíűě âűďŕäęó âű í˙ çäîëĺĺöĺ óńňŕë˙âŕöü\n"
+" äŕńňŕňęîâŕ ďđŕăđŕěíŕăŕ çŕáĺńď˙÷ýíí˙.Ęŕëł âű ćŕäŕĺöĺ çŕőŕâŕöü âŕřű˙ "
+"äŕäçĺíű˙\n"
+" íŕ ŕńîáíűě đŕçäçĺëĺ, âű ďŕâłííű ŕáđŕöü ďóíęň ěŕíöłđŕâŕíí˙ \"/home\".\n"
+"\n"
+"Ęîćíű đŕçäçĺë ďŕçíŕ÷ŕíű íŕńňóďíűě ÷űíŕě \"˛ě˙\", \"Ńâîéńňâű\".\n"
+"\n"
+"\n"
+"\"˛ě˙\" ęŕäŕâŕíŕ ňŕę - \"ňűď äűńęó\", \"íóěŕđ äűńęó\", \"íóěŕđ đŕçäçĺëó\" \n"
+"(íŕďđűęëŕä, \"hda1\").\n"
+"\n"
+"\n"
+"\"Ňűď äűńęó\" ęŕäŕâŕíű ˙ę \"hd\", ęŕëł ăýňŕ IDE, ł \"sd\" ęŕëł SCSI.\n"
+" * \"ŕ\" \"master\" íŕ ďĺđřŕńíűě ęŕíŕëĺ IDE \n"
+" * \"b\" \"slave\" íŕ ďĺđřŕńíűě ęŕíŕëĺ IDE\n"
+" * \"c\" \"master\" íŕ äđóăŕńíűě ęŕíŕëĺ IDE\n"
+" * \"d\" \"slave\" íŕ äđóăŕńíűě ęŕíŕëĺ IDE\n"
+"\n"
+"\n"
+"Äë˙ SCSI äűńęࢠ- \"a\" ăýňŕ \"ďĺđřŕńíű ćîđńęł äűńę\", \"b\" - \"äđóăŕńíű "
+"ćîđńęł äűńę\", ł ă.ä."
-#: ../../help.pm_.c:252
+#: ../../help.pm_.c:258
msgid ""
"Choose the hard drive you want to erase to install your\n"
"new Linux-Mandrake partition. Be careful, all data present on it will be "
"lost\n"
"and will not be recoverable."
msgstr ""
+"Ŕá˙đűöĺ ćîđńęł äűńę ˙ęł ćŕäŕĺöĺ ŕ÷űńöłöü äë˙ ˘ńňŕë˙âŕíí˙\n"
+"íîâŕăŕ đŕçäçĺëó Linux-Mandrake. Áóäçöĺ ˘âŕćëłâű˙, óńĺ äŕäçĺíű˙ íŕ äűńęó "
+"áóäóöü\n"
+" çíłř÷ŕíű ł łő íĺěŕă÷űěŕ áóäçĺ ŕäíŕâłöü."
-#: ../../help.pm_.c:257
+#: ../../help.pm_.c:263
msgid ""
"Click on \"OK\" if you want to delete all data and\n"
"partitions present on this hard drive. Be careful, after clicking on \"OK\", "
@@ -1959,8 +2380,15 @@ msgid ""
"Click on \"Cancel\" to cancel this operation without losing any data and\n"
"partitions present on this hard drive."
msgstr ""
+"Íŕöłńíłöĺ \"Ňŕę\", ęŕëł ćŕäŕĺöĺ âűäŕëłöü óńĺ äŕäçĺíű˙\n"
+"ł đŕçäçĺëű íŕ ăýňűě äűńęó. Áóäçöĺ óâŕćëłâű˙, ďŕńë˙ ăýňŕé ŕďĺđŕöűł âű íĺ\n"
+"\n"
+"çäîëĺĺöĺ ŕäíŕâłöü ëţáű˙ äŕäçĺíű˙ ł đŕçäçĺëű, óëł÷âŕţ÷ű ł äŕäçĺíű˙ Windows\n"
+"\n"
+"\n"
+"Íŕöłńíłöĺ \"Ŕäěĺíŕ\" ęŕá ŕäě˙íłöü ŕďĺđŕöűţ áĺç ńňđŕňű äŕäçĺíűő ł đŕçäçĺëŕ˘"
-#: ../../help.pm_.c:267
+#: ../../help.pm_.c:273
msgid ""
"More than one Microsoft Windows partition have been\n"
"detected on your hard drive. Please choose the one you want resize to "
@@ -2001,12 +2429,39 @@ msgid ""
"disk\n"
"or partition is called \"C:\")."
msgstr ""
+"Íŕ âŕřűě äűńęó áűëî çíîéäçĺíŕ áîëĺé çŕ ŕäçłí đŕçäçĺë\n"
+"Windows. Ęŕëł ëŕńęŕ, ŕá˙đűöĺ ňîé, ďŕěĺđ ˙ęîăŕ ćŕäŕĺöĺ çě˙íłöü, "
+"ęŕáóńňŕë˙âŕöü\n"
+"ńłńňýěó Linux-Mandrake.\n"
+"\n"
+"\n"
+"Äë˙ iôŕđěŕöűł, ęîćíű đŕçäçĺë ŕäçíŕ÷ŕíű ˙ę: \"Linux łě˙\", \"Windows\n"
+"łě˙\" \"Câîéńňâű\".\n"
+"\"Linux ˛ě˙\" ęŕäŕâŕíŕ ňŕę - \"ňűď äűńęó\", \"íóěŕđ äűńęó\",\"íóěŕđ "
+"đŕçäçĺëó\n"
+"(íŕďđűęëŕä, \"hda1\").\n"
+"\n"
+"\n"
+"\"Ňűď äűńęó\" ęŕäŕâŕíű ˙ę \"hd\", ęŕëł ăýňŕ IDE, ł \"sd\" ęŕëł SCSI.\n"
+"\n"
+"\"Íóěŕđ äűńęó\" - ńłěâŕë ďŕńë˙ \"hd\" öł \"sd\". Äë˙ IDE äűńęŕ˘:\n"
+" * \"ŕ\" \"master\" íŕ ďĺđřŕńíűě ęŕíŕëĺ IDE \n"
+" * \"b\" \"slave\" íŕ ďĺđřŕńíűě ęŕíŕëĺ IDE\n"
+" * \"c\" \"master\" íŕ äđóăŕńíűě ęŕíŕëĺ IDE\n"
+" * \"d\" \"slave\" íŕ äđóăŕńíűě ęŕíŕëĺ IDE\n"
+"\n"
+"\n"
+"Äë˙ SCSI äűńęࢠ- \"a\" ăýňŕ \"ďĺđřŕńíű ćîđńęł äűńę\", \"b\" - \"äđóăŕńíű "
+"ćîđńęł äűńę\", ł ă.ä.\n"
+"\n"
+"\"Windows ˛ě˙\" ńłěâŕë âŕřŕăŕ äűńęó ˘ Windows (ďĺđřű äűńę öł\n"
+"đŕçäçĺë ďŕçíŕ÷ŕĺööŕ ˙ę \"C:\")."
-#: ../../help.pm_.c:300
+#: ../../help.pm_.c:306
msgid "Please be patient. This operation can take several minutes."
-msgstr ""
+msgstr "Ęŕëł ëŕńęŕ, ďŕ÷ŕęŕéöĺ. Ăýňŕ˙ ŕďĺđŕöű˙ ŕäűěĺ ďý˘íű ÷ŕń."
-#: ../../help.pm_.c:303
+#: ../../help.pm_.c:309
msgid ""
"Any partitions that have been newly defined must be\n"
"formatted for use (formatting meaning creating a filesystem).\n"
@@ -2039,9 +2494,36 @@ msgid ""
"new\n"
"Linux-Mandrake operating system."
msgstr ""
+"Óńĺ đŕçäçĺëű, ˙ęł˙ áűëł ňîëüęł âűçíŕ÷ŕíű ďŕâłííű áűöü\n"
+"ŕäôŕđěŕňŕâŕíű (ôŕđěŕňŕâŕöü - çíŕ÷űöü ńňâŕđűöü ôŕéëŕâŕţ ńłńňýěó).\n"
+"\n"
+"\n"
+"Ó ňîé ćŕ ÷ŕń, âű ěîćŕöĺ ďĺđŕôŕđěŕňŕâŕöü óćî łńíóţ÷ű˙ đŕçäçĺëű, ęŕá ńö¸đöł\n"
+"äŕäçĺíű˙ ˙ęł˙ ˙íű ˘ňđűěëłâŕţöü. Ęŕëł âű ćŕäŕĺöĺ çđŕáłöü ăýňŕ, ŕá˙đűöĺ "
+"đŕçäçĺëű\n"
+"˙ęł˙ ćŕäŕĺöĺ ŕäôŕđěŕňŕâŕöü.\n"
+"\n"
+"\n"
+"Çŕ˘âŕćöĺ, âű ďŕâłííű ďĺđŕôŕđěŕňŕâŕöü óńĺ ńňâîđŕíű˙ đŕçäçĺëű. Âű ďŕâłííű\n"
+"ďĺđŕôŕđěŕňŕâŕöü đŕçäçĺëű, ˙ęł˙ ˘ňđűěëłâŕţöü ŕďĺđŕöűéíóţ ńłńňýěó (ňűďó "
+"\"/\",\n"
+"\"/usr\" öł \"/var\"), ŕëĺ íĺ ďŕâłííű ďĺđŕôŕđěŕňŕâŕöü đŕçäçĺëű, ˙ęł˙ "
+"óňđűěëłâŕţöü\n"
+"äŕäçĺíű˙, ˙ęł˙ âű ćŕäŕĺöĺ çŕőŕâŕöü (çâű÷ŕéíŕ /home).\n"
+"\n"
+"\n"
+"Ęŕëł ëŕńęŕ, áóäçöĺ ˘âŕćëłâű˙, ŕáłđŕţ÷ű đŕçäçĺëű, áî ďŕńë˙ ôŕđěŕňŕâŕíí˙\n"
+"óńĺ äŕäçĺíű˙ áóäóöü íĺçâŕđîňíŕ âűäŕëĺíű˙.\n"
+"\n"
+"\n"
+"Íŕöłńíłöĺ \"Ňŕę\" ęŕëł âű ăŕňîâű˙ ôŕđěŕňŕâŕöü đŕçäçĺë˙.\n"
+"\n"
+"\n"
+"Íŕöłńíłöĺ \"Ŕäěĺíŕ\" ęŕëł ćŕäŕĺöĺ ŕáđŕöü łířű˙ đŕçäçĺëű äë˙ "
+"óńňŕë˙âŕíí˙âŕřŕé\n"
+"íîâŕé ŕďĺđŕöűéíŕé ńłńňýěű Linux-Mandrake."
-#: ../../help.pm_.c:329
-#, fuzzy
+#: ../../help.pm_.c:335
msgid ""
"You may now select the group of packages you wish to\n"
"install or upgrade.\n"
@@ -2057,18 +2539,8 @@ msgid ""
"through\n"
"more than 1000 packages..."
msgstr ""
-"Ö˙ďĺđ âű ěîćŕöĺ âűçíŕ÷űöü ăđóďó ďŕęĺňŕ˘, ˙ęi˙ âű ćŕäŕĺöĺ\n"
-"˘ńňŕë˙âŕöü öi ŕáíŕâiöü.\n"
-"\n"
-"DrakX ďîňűě ďŕńďđŕáóĺ âűçíŕ÷űöü, öi ěŕĺöĺ âű äŕńňęîâŕ ěĺńöŕ äë˙ iő "
-"óńňŕ븢ęi.Ęŕëi íĺ,\n"
-"âű áóäçĺöĺ ŕáâĺř÷ŕíű ŕá ăýňűě. Ęŕëi âű ćŕäŕĺöĺ ďđŕäî˘ćűöü óńňŕ븢ęó ˘ ëţáűě "
-"âűďŕäęó,\n"
-"÷ŕńňęŕ íĺ řěŕň çíŕ÷íűő ďŕęĺňࢠç ŕáđŕíűő íĺ áóäçĺ ˘ńňŕë˙âŕíŕ. Ó íiçĺ ńďińó\n"
-"âű ěîćŕöĺ ďŕçíŕ÷űöü \"Ŕńŕáińňű âűáŕđ ďŕęĺňŕ˘\". Ó ňŕęiě âűďŕäęó\n"
-"âű çěîćŕöĺ ďđŕăëĺäçĺöü áîëĺé ÷űě çŕ 1000 ďŕęĺňŕ˘..."
-#: ../../help.pm_.c:341
+#: ../../help.pm_.c:347
msgid ""
"You can now choose individually all the packages you\n"
"wish to install.\n"
@@ -2088,8 +2560,24 @@ msgid ""
"silently\n"
"unselect several other packages which depend on it."
msgstr ""
+"Çŕđŕç âű ěŕćŕöĺ âűáłđŕöü łíäűâłäóŕëíŕ óńĺ ďŕęĺňű, ˙ęł˙ ćŕäŕĺöĺ\n"
+"óńňŕë˙âŕöü.\n"
+"\n"
+"\n"
+"Âű ěîćŕöĺ đŕçăîđňâŕöü ł çăŕđňŕöü äđýâŕ ďŕęĺňŕ˘, íŕöłńęŕţ÷ű íŕîďöűł\n"
+"ó ëĺâűě ęóöĺ âŕęíŕ ďŕęĺňŕ˘.\n"
+"\n"
+"\n"
+"Ęŕëł âű ćŕäŕĺöĺ áŕ÷űöü ďŕęĺňű ó ŕëôŕâłňíűě ďŕđŕäęó, íŕöłńíłöĺ îďöűţ\n"
+"\"Ńŕđňűđŕâŕöü\".\n"
+"\n"
+"\n"
+"Ęŕëł âű íĺ ćŕäŕĺöĺ ŕňđűěëłâŕöü ďŕď˙đýäćŕííł ŕäíîńíŕ çŕëĺćíŕńö˙˘, \n"
+"íŕöłńíłöĺ \"Çŕëĺćíŕńöł ŕ˘ňŕěŕňű÷íŕ\". Ęŕëł âű çđîáłöĺ ăýňŕ, çŕ˘âŕćöĺ, řňî\n"
+"řňî íĺ âűáŕđ ŕäíŕăî ďŕęĺňó â˙äçĺ äŕ íĺěŕă÷űěŕńöł âűáđŕöü ďŕęĺňű,\n"
+"˙ęł˙ ŕä ˙ăî çŕëĺćŕöü."
-#: ../../help.pm_.c:358
+#: ../../help.pm_.c:364
#, fuzzy
msgid ""
"If you have all the CDs in the list above, click Ok. If you have\n"
@@ -2097,11 +2585,11 @@ msgid ""
"them,\n"
"then click Ok."
msgstr ""
-"Ęŕëi âű ěŕĺöĺ ˘ńĺ CD äűńęi ńŕ ńďińŕ âűřýé, ňî íŕöińíiöĺ íŕ Oę.\n"
-"Ęŕëi íĺ ěŕĺöĺ íi ŕäíŕăî ç ăýňűő CD äűńęŕ˘, äűę íŕöińíiöĺ Ŕäě˙íiöü.\n"
-"Ęŕëi íĺęŕňîđű˙ ç CD äűńęi ńňđŕ÷ŕíű, ŕäě˙íiöĺ iő ďŕçíŕ÷ýííĺ i íŕöińíiöĺ íŕ Îk."
+"Ęŕëi âű ěŕĺöĺ ˘ńĺ CD äűńęi ńŕ ńďińŕ íićýé, íŕöińíiöĺ Îę.\n"
+"Ęŕëi âű íĺ ěŕĺöĺ ŕíi âîäíŕăŕ ç ăýňűő CD äűńęŕ˘, íŕöińíiöĺ Ŕäě˙íiöü.\n"
+"Ęŕëi íĺęŕňîđűő ç CD äűńęࢠíĺ ěŕĺöĺ, ŕäě˙íiöĺ iő âűäç˙ëĺííĺ i íŕöińíiöĺ Îę."
-#: ../../help.pm_.c:363
+#: ../../help.pm_.c:369
msgid ""
"Your new Linux-Mandrake operating system is currently being\n"
"installed. This operation should take a few minutes (it depends on size you\n"
@@ -2110,24 +2598,31 @@ msgid ""
"\n"
"Please be patient."
msgstr ""
+"Âŕřŕ íîâŕ˙ ŕďĺđŕöűéíŕ˙ ńłńňýěŕ Linux-Mandrake çŕđŕç óńňŕ븢âŕĺööŕ.\n"
+"Ăýňŕ ŕďĺđŕöű˙ ŕäűěĺ ďý˘íű ÷ŕń(řňî çŕëĺćűöü ŕä ďŕěĺđó ŕáđŕíŕăŕ ˘ńňŕë˙âŕíí˙ ł "
+"őóňęŕńöł\n"
+" ęŕěď'ţňýđó) .\n"
+"\n"
+"\n"
+"Ęŕëł ëŕńęŕ, ďŕ÷ŕęŕéöĺ."
-#: ../../help.pm_.c:371
+#: ../../help.pm_.c:377
msgid ""
"You can now test your mouse. Use buttons and wheel to verify\n"
"if settings are good. If not, you can click on \"Cancel\" to choose another\n"
"driver."
msgstr ""
+"Çŕđŕç âű ěîćŕöĺ ŕäňýńňŕâŕöü âŕřó ěűř. Íŕöłńęŕéöĺ íŕ ęíîďęł ł\n"
+"đóřöĺ ęîëŕ. Ęŕëł óńňŕë˙âŕííł ďŕěűëęîâű˙ íŕöłńíłöĺ \"Ŕäěĺíŕ\" ęŕá óńňŕë˙âŕöü\n"
+"łířű äđŕéâĺđ."
-#: ../../help.pm_.c:376
-#, fuzzy
+#: ../../help.pm_.c:382
msgid ""
"Please select the correct port. For example, the COM1\n"
"port under MS Windows is named ttyS0 under GNU/Linux."
msgstr ""
-"Ďđŕâiëüíŕ âűá˙đűöĺ ďîđň. Íŕďđűęëŕä, ďîđň COM1 ˘ MS Windows\n"
-"ó Linux ěŕĺ íŕçâó ttyS0."
-#: ../../help.pm_.c:380
+#: ../../help.pm_.c:386
msgid ""
"If you wish to connect your computer to the Internet or\n"
"to a local network please choose the correct option. Please turn on your "
@@ -2144,8 +2639,18 @@ msgid ""
"have\n"
"finished to configure your network connection, choose \"Done\"."
msgstr ""
+"Ęŕëł âű ćŕäŕĺöĺ ďŕäęëţ÷űöü âŕř ęîěď'ţňŕđ äŕ Internet öł ËÂŃ, ęŕëł ëŕńęŕ,\n"
+"ŕá˙đűöĺ ďđŕâłëüíóţ îďöűţ. Óęëţ÷űöĺ âŕřó ďđűëŕäó ďĺđŕä âűáŕđŕě ďđŕâłëüíŕé "
+"îďöűł, DrakXçíîéäçĺ ăýňŕ\n"
+"ŕ˘ňŕěŕňű÷íŕ\n"
+"\n"
+"\n"
+"Ęŕëł âŕě íĺ ďŕňđýáíŕ ďŕäęëţ÷ýííĺ äŕ Internet öł ËÂŃ, íŕöłńíłöĺ\n"
+"\"Ŕäęëţ÷űöü ďŕäňđűěęó ńĺňęł\".\n"
+"Ęŕëł âű ćŕäŕĺöĺ ŕäęŕíôłăóđŕâŕöü ńĺňęó ďŕńë˙ ˘ńňŕë˙âŕíí˙ öł âű ˘ćîńęîí÷űëł\n"
+"˙ĺ ęŕíôłăóđŕâŕííĺ, íŕöłńíłöĺ \"Âűęŕíŕöü\"."
-#: ../../help.pm_.c:393
+#: ../../help.pm_.c:399
msgid ""
"No modem has been detected. Please select the serial port on which it is "
"plugged.\n"
@@ -2154,8 +2659,13 @@ msgid ""
"For information, the first serial port (called \"COM1\" under Microsoft\n"
"Windows) is called \"ttyS0\" under Linux."
msgstr ""
+"Ěŕäýě íĺ çíîéäçĺíű. Ŕá˙đűöĺ ďŕńë˙äî˘íű ďîđň äŕ ˙ęîăŕ ¸í ďŕäęëţ÷ŕíű.\n"
+"\n"
+"\n"
+"Ďĺđřű ďŕńë˙äî˘íű ďîđň (çâŕíű \"COM1\" ó Microsoft Windows) çŕâĺööŕ\n"
+"\"ttyS0\" ó Linux."
-#: ../../help.pm_.c:400
+#: ../../help.pm_.c:406
msgid ""
"You may now enter dialup options. If you don't know\n"
"or are not sure what to enter, the correct informations can be obtained "
@@ -2165,18 +2675,25 @@ msgid ""
"Service\n"
"Provider at connection time."
msgstr ""
+"Çŕđŕç âű ěîćŕöĺ ˘âĺńöł ďŕđŕěĺňđű ŕääŕëĺíŕăŕ ďŕäëţ÷ýíí˙.\n"
+"Ęŕëł âű íĺ âĺäŕĺöĺ öł íĺ ˘ďý˘íĺíű řňî ňđýáŕ ˘âĺńöł, ńďűňŕéöĺń˙ ó "
+"ńâŕéăî˛nternet\n"
+"ďđŕâŕéäýđó. Ęŕëł âű íĺ ˘âîäçłöĺ łíôŕđěŕöűţ ŕá DNS ńĺđâĺđŕő, ˙íŕ áóäçĺ \n"
+"ŕňđűěŕíŕ ďŕä ÷ŕń çëó÷ýíí˙ ç âŕřűě Internet-ďđŕâŕéäýđŕě."
-#: ../../help.pm_.c:407
+#: ../../help.pm_.c:413
msgid ""
"If your modem is an external modem, please turn on it now to let DrakX "
"detect it automatically."
msgstr ""
+"Ęŕëł ˘ âŕń âîíęŕâű ěŕäýě, ęŕëł ëŕńęŕ, óęëţ÷űöĺ ˙ăî, ł ďîňűě DrakXçíîéçĺ ˙ăî "
+"ŕ˘ňŕěŕňű÷íŕ."
-#: ../../help.pm_.c:410
+#: ../../help.pm_.c:416
msgid "Please turn on your modem and choose the correct one."
-msgstr ""
+msgstr "Ęŕëł ëŕńęŕ, óęëţ÷űöĺ ěŕäýě ł ŕá˙đűöĺ ďđŕâłëíű."
-#: ../../help.pm_.c:413
+#: ../../help.pm_.c:419
msgid ""
"If you are not sure if informations above are\n"
"correct or if you don't know or are not sure what to enter, the correct\n"
@@ -2186,8 +2703,14 @@ msgid ""
"obtained\n"
"from your Internet Service Provider at connection time."
msgstr ""
+"Ęŕëł âű íĺ óďý˘íĺíű, öł ç'˙˘ë˙ĺööŕ âűřýé ďđűâĺäçĺíŕ˙\n"
+"łíôŕđěŕöű˙ ęŕđýęňíŕé öł âű íĺ âĺäŕĺöĺ ŕëüáî í˙˘ďý˘íĺíű˙ řňî ňđýáŕ óâĺńöł\n"
+"ďđŕâčëüíŕ˙\n"
+"łíôŕđěŕöű˙ ěîćŕ áűöü ŕňđűěŕíŕ ŕä âŕřŕăŕ ďđŕâŕéäýđó Internet. Ęŕëł âű íĺ\n"
+"˘âîäçłöĺ łíôŕđěŕöűţ ŕá DNS, ăýňŕ˙ łíôŕđěŕöű˙ áóäçĺ ŕňđűěŕíŕ ŕä âŕřŕăŕ\n"
+"ďđŕâŕéäýđó ďŕä ÷ŕń çëó÷ýíí˙."
-#: ../../help.pm_.c:420
+#: ../../help.pm_.c:426
#, fuzzy
msgid ""
"You may now enter your host name if needed. If you\n"
@@ -2196,10 +2719,9 @@ msgid ""
msgstr ""
"Çŕđŕç ěîćíŕ ˘âĺńöi ďŕđŕěĺňđű çëó÷ýíí˙ ďđŕç ěŕäýě (dialup). Ęŕëi âű\n"
"íĺ âĺäŕĺöĺ, řňî ďŕňđýáíŕ ďińŕöü,\n"
-"ďŕńďđŕáóéöĺ ŕňđűěŕöü äŕęëŕäíóţ iíôŕđěŕöűţ ˘ ńâŕéăî ďđŕâŕéäýđŕ Internet (ISP)."
+"ďŕńďđŕáóéöĺ ŕňđűěŕöü äŕęëŕäíóţ iíôŕđěŕöűţ ˘ ńâŕéăî ďđŕâŕéäýđó Internet (ISP)."
-#: ../../help.pm_.c:425
-#, fuzzy
+#: ../../help.pm_.c:431
msgid ""
"You may now configure your network device.\n"
"\n"
@@ -2217,56 +2739,43 @@ msgid ""
" \"IP address\". If you don't know or are not sure if you need to select "
"this option, ask your network administrator."
msgstr ""
-"Ďŕçíŕ÷öĺ:\n"
-"\n"
-" - IP ŕäđŕń: ęŕëi âű ˙ăî íĺ âĺäŕĺöĺ, çŕďűňŕéöĺ ńińňýěíŕăŕ ŕäěiíińňđŕňŕđŕ.\n"
-"\n"
-"\n"
-" - Ěŕńęŕ ńĺňęi: \"255.255.255.0\" çâű÷ŕéíŕ ç'˙˘ë˙ĺööŕ íĺáëŕăiě âűáŕđŕě.\n"
-"Ęŕëi âű íĺ ˘ďý˘íĺíű, çŕďűňŕéöĺ ńińňĺěíŕăŕ ŕäěiíińňđŕňŕđŕ öi ďđŕâŕéäýđŕ.\n"
-"\n"
-"\n"
-" - Ŕ˘ňŕ IP: ęŕëi ˘ âŕřŕé ńĺňöű âűęŕđűńňî˘âŕţööŕ ďđŕňŕęîëű bootp ŕëüáî "
-"dhcp,\n"
-"âűá˙đűöĺ ăýňŕ âŕđű˙íň. Ó ăýňűě âűďŕäęó çŕäŕâŕöü \"IP ŕäđŕń\" íĺďŕňđýáíŕ. \n"
-"Ęŕëi âű íĺ ˘ďý˘íĺíű, çŕďűňŕéöĺ ńińňĺěíŕăŕ ŕäěiíińňđŕňŕđŕ öi ďđŕâŕéäýđŕ.\n"
-#: ../../help.pm_.c:437
+#: ../../help.pm_.c:443
#, fuzzy
msgid ""
"You may now enter your host name if needed. If you\n"
"don't know or are not sure what to enter, ask your network administrator."
msgstr ""
-"Ęŕëi ˘ âŕřŕé ńĺňöű ńęŕđűńňî˘âŕĺööŕ NIS, âűá˙đűöĺ \"Ńęŕđűńňî˘âŕöü NIS\". Ęŕëi "
-"\n"
-"íĺ âĺäŕĺöĺ, çŕďűňŕéöĺ ŕäěiíińňđŕňŕđŕ ńĺňęi."
+"Ęŕëł íĺŕáőîäíŕ, âű ěŕćŕöĺ óâĺńöł łě˙ âŕřŕăŕ őŕńňŕ. Ęŕëł âű\n"
+"íĺ âĺäŕĺöĺ öł íĺ ˘ďĺ˘íĺíű˙, řňî ňđýáŕ ˘âŕäçłöü. Ďŕęłíöĺ ďîëĺ ďóńňűě."
-#: ../../help.pm_.c:441
+#: ../../help.pm_.c:447
msgid ""
"You may now enter your host name if needed. If you\n"
"don't know or are not sure what to enter, leave blank."
msgstr ""
+"Ęŕëł íĺŕáőîäíŕ, âű ěŕćŕöĺ óâĺńöł łě˙ âŕřŕăŕ őŕńňŕ. Ęŕëł âű\n"
+"íĺ âĺäŕĺöĺ öł íĺ ˘ďĺ˘íĺíű˙, řňî ňđýáŕ ˘âŕäçłöü. Ďŕęłíöĺ ďîëĺ ďóńňűě."
-#: ../../help.pm_.c:445
+#: ../../help.pm_.c:451
msgid ""
"You may now enter dialup options. If you're not sure what to enter, the\n"
"correct information can be obtained from your ISP."
msgstr ""
"Çŕđŕç ěîćíŕ ˘âĺńöi ďŕđŕěĺňđű çëó÷ýíí˙ ďđŕç ěŕäýě (dialup). Ęŕëi âű\n"
"íĺ âĺäŕĺöĺ, řňî ďŕňđýáíŕ ďińŕöü,\n"
-"ďŕńďđŕáóéöĺ ŕňđűěŕöü äŕęëŕäíóţ iíôŕđěŕöűţ ˘ ńâŕéăî ďđŕâŕéäýđŕ Internet (ISP)."
+"ďŕńďđŕáóéöĺ ŕňđűěŕöü äŕęëŕäíóţ iíôŕđěŕöűţ ˘ ńâŕéăî ďđŕâŕéäýđó Internet (ISP)."
-#: ../../help.pm_.c:449
+#: ../../help.pm_.c:455
msgid ""
"If you will use proxies, please configure them now. If you don't know if\n"
"you should use proxies, ask your network administrator or your ISP."
msgstr ""
"Ęŕëi âű çáiđŕĺöĺń˙ âűęŕđűńňî˘âŕöü proxy, iő ŕäđŕńű ěîćíŕ ˘âĺńöi çŕđŕç.\n"
"Ęŕëi âű íĺ âĺäŕĺöĺ, ŕá ÷űě iäçĺ đŕçěîâŕ, çâ˙đíiöĺń˙ äŕ ŕäěiíińňđŕňŕđŕ\n"
-"ńĺňęi öi äŕ Internet-ďđŕâŕéäýđŕ."
+"ńĺňęi öi äŕ Internet-ďđŕâŕéäýđó."
-#: ../../help.pm_.c:453
-#, fuzzy
+#: ../../help.pm_.c:459
msgid ""
"You can install cryptographic package if your internet connection has been\n"
"set up correctly. First choose a mirror where you wish to download packages "
@@ -2277,21 +2786,12 @@ msgid ""
"Note you have to select mirror and cryptographic packages according\n"
"to your legislation."
msgstr ""
-"Ęŕëi çëó÷ýííĺ ç Internet íŕńňđîĺíŕ ęŕđýęňíŕ, ěîćíŕ ˘ńňŕíŕâiöü "
-"ęđűďňŕăđŕôi÷íű\n"
-"ďŕęĺň. Ďŕ-ďĺđřŕĺ, âűá˙đűöĺ ëţńňýđęŕ, ç ˙ęîăŕ áóäçĺöĺ áđŕöü ďŕęĺňű i\n"
-"ďŕńë˙ ăýňŕăŕ âűá˙đűöĺ ďŕęĺňű äë˙ ˘ńňŕíî˘ęi.\n"
-"\n"
-"Áóäçüöĺ ˘âŕćëiâű: âűáiđŕöü ëţńňýđęŕ i ďŕęĺňű ďŕňđýáíŕ ç óëięŕě "
-"çŕęŕíŕäŕ˘ńňâŕ\n"
-"âŕřŕé ęđŕiíű."
-#: ../../help.pm_.c:462
+#: ../../help.pm_.c:468
msgid "You can now select your timezone according to where you live."
-msgstr ""
+msgstr "Çŕđŕç âű ěîćŕöĺ ŕáđŕöü ÷ŕńŕâű ďî˙ń çăîäíŕ ç ěĺńöŕě ćűőŕđńňâŕ."
-#: ../../help.pm_.c:465
-#, fuzzy
+#: ../../help.pm_.c:471
msgid ""
"GNU/Linux manages time in GMT (Greenwich Manage\n"
"Time) and translates it in local time according to the time zone you have\n"
@@ -2300,14 +2800,8 @@ msgid ""
"\n"
"If you use Microsoft Windows on this computer, choose \"No\"."
msgstr ""
-"Çŕđŕç âűá˙đűöĺ ÷ŕńŕâű ďî˙ń çăîäíŕ ç ěĺńöŕě ńâŕéăî ďđŕćűâŕíí˙.\n"
-"\n"
-"\n"
-"GNU/Linux ďđŕöóĺ ç ÷ŕńŕě ďŕ Ăđűíâi÷ó (GMT) i ďĺđŕęëŕäŕĺ ˙ăî ˘ ě˙ńöîâű ÷ŕń\n"
-"çăîäíŕ ç ŕáđŕíűě âŕěi ÷ŕńŕâűě ďî˙ńŕě."
-#: ../../help.pm_.c:473
-#, fuzzy
+#: ../../help.pm_.c:479
msgid ""
"You may now choose which services you want to start at boot time.\n"
"\n"
@@ -2323,21 +2817,16 @@ msgid ""
"server.\n"
"In general, select only the services that you really need."
msgstr ""
-"Çŕđŕç âű ěîćŕöĺ âűáđŕöü ńëóćáű, ˙ęi˙ áóäóöü çŕďóńęŕööŕ ďđű çŕăđóçöű "
-"ńińňýěű.\n"
-"Ęŕëi ęóđńîđ ěűři íŕâĺńöi íŕ íŕçâó ńëóćáű, ňî ç'˙âiööŕ ˘ńďëűâŕţ÷ŕ˙ ďŕäęŕçęŕ,\n"
-"˙ęŕ˙ ŕďińâŕĺ đîëţ ăýňŕé ńëóćáű.\n"
-"Ďŕâîäçüöĺ ń˙áĺ ŕńö˙đîćíŕ íŕ ăýňűě ęđîęó, ŕńŕáëiâŕ ęŕëi âű çáiđŕĺöĺń˙ ńâŕţ\n"
-"ěŕřűíó âűęŕđűńňî˘âŕöü ˙ę ńĺđâĺđ: ó ňŕęiě âűďŕäęó âű ěîćŕöĺ ŕäě˙íiöü ńňŕđň \n"
-"ńëóćá, ˙ęi˙ âŕě íĺďŕňđýáíű."
-#: ../../help.pm_.c:486
+#: ../../help.pm_.c:492
msgid ""
"You can configure a local printer (connected to your computer) or remote\n"
"printer (accessible via a Unix, Netware or Microsoft Windows network)."
msgstr ""
+"Âű ěîćŕöĺ ęŕíôłăóđŕâŕöü ëŕęŕëüíű ďđűíňýđ (çëó÷ŕíű ç âŕřűě ęŕěď'ţňŕđŕě)\n"
+"öł ŕääŕëĺíű ďđűíňýđ (äŕńňóďíű ďđŕç Unix, Netware öł ńĺňęó MS Windows)."
-#: ../../help.pm_.c:490
+#: ../../help.pm_.c:496
msgid ""
"If you wish to be able to print, please choose one printing system between\n"
"CUPS and LPR.\n"
@@ -2355,8 +2844,21 @@ msgid ""
"\n"
"If you don't have printer, click on \"None\"."
msgstr ""
+"Ęŕëł âű ćŕäŕĺöĺ ěĺöü äđóę, ęŕëł ëŕńęŕ, ŕá˙đűöĺ ŕäíó ç ńłńňýěࢠäđóęó\n"
+"CUPS öł LPR.\n"
+"\n"
+"\n"
+"CUPS ăýňŕ íîâŕ˙, ěŕăóňíŕ˙ ł ăíóňęŕ˙ ńłńňýěŕ äđóęó äë˙ Unix ńłńňýěࢠ(CUPS\n"
+"- \"Common Unix Printing System\"). Ăýňŕ ńłńňýěŕ äđóęó ďŕ çěî˘÷ŕííţ˘\n"
+"ŕďĺđŕöűéíŕé ńłńňýěĺ Linux-Mandrake.\n"
+"\n"
+"\n"
+"LPR - ńňŕđŕ˙ ńłńňýěŕ äđóęó ˘ ďŕď˙đýäíłő âĺđńł˙ő äűńňđűáţňűâóLinux-Mandrake.\n"
+"\n"
+"\n"
+"Ęŕëł âű íĺ ěŕĺöĺ ďđűíňýđó, íŕöłńíłöĺ \"Í˙ěŕ\"."
-#: ../../help.pm_.c:505
+#: ../../help.pm_.c:511
msgid ""
"GNU/Linux can deal with many types of printer. Each of these types requires\n"
"a different setup.\n"
@@ -2374,8 +2876,22 @@ msgid ""
"machine\n"
"(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
msgstr ""
+"GNU/Linux ěîćŕ ďđŕöŕâŕöü ńŕ řěŕňëłęłěł ňűďŕěł ďđűíňýđŕ˘. Ęîćíű ç ęŕňîđűő\n"
+"ďŕňđŕáóĺ đîçíŕĺ ˘ńňŕë˙âŕííĺ.\n"
+"\n"
+"\n"
+"Ęŕëł ďđűíňŕđ ôłçł÷ŕ ďŕäęëţ÷ŕíű äŕ ęŕěď'ţňĺđó, ŕá˙đűöĺ \"Ëŕęŕëüíű\n"
+"ďđűíňýđ\".\n"
+"\n"
+"\n"
+"Ęŕëł ďđűíňŕđ ďŕäęëţ÷ŕíű äŕ ŕääŕëĺíŕé Unix ěŕřűíű, ŕá˙đűöĺ\n"
+"\"Ŕääŕëĺíű ďđűíňýđ\".\n"
+"\n"
+"\n"
+"Ęŕëł ďđűíňýđ ďŕäęëţ÷ŕíű äŕ ŕääŕëĺíŕé ěŕřűíű Microsoft Windows (öł äŕ Unix\n"
+"ěŕřűíű, ˙ęŕ˙ âűęŕđűńňî˘âŕĺ ďđŕňŕęîë SMB), ŕá˙đűöĺ \"SMB/Windows 95/98/NT\"."
-#: ../../help.pm_.c:521
+#: ../../help.pm_.c:527
msgid ""
"Please turn on your printer before continuing to let DrakX detect it.\n"
"\n"
@@ -2400,8 +2916,31 @@ msgid ""
" printer location, put it here (you are free to write what\n"
" you want, for example \"2nd floor\").\n"
msgstr ""
+"Ęŕëł ëŕńęŕ ˘ęëţ÷űöĺ âŕř ďđűíňŕđ ďĺđŕä ďđŕö˙ăŕě,ł DrakX çíîéäçĺ ˙ăî.\n"
+"\n"
+"Âű ďŕâłííű ˘âĺńüöł íĺęŕňîđóţ łíôŕđěŕöűţ.\n"
+"\n"
+"\n"
+" * ˛ě˙ ďđűíňýđó: ÷ŕđăŕ ďđűíňýđó âűęŕđűńňî˘âŕĺ ďŕ çěî˘÷ŕííţ łě˙ \"lp\"˙ę "
+"łě˙ ďđűíňýđó\n"
+"Ňŕę, âű ďŕâłííű ěĺöü ďđűíňŕđ çâŕíű \"lp\".\n"
+" Ęŕëł âű ěŕĺöĺ ňîëüęł ŕäçłí ďđűíňŕđ, âű ěîćŕöĺ ěĺöü äë˙ ˙ăî "
+"íĺęŕëüęłíŕçâŕ˘. Âű ňîëüęł ďŕâłííű ŕääç˙ëłöü łő ëł÷áŕé ęŕíŕëó ( \"|\").\n"
+" Ňŕę, ęŕëł ëţáłöĺ áîëüř łíôŕđěŕöűéíű˙ íŕçâű, âű ďŕâłííű óńňŕâŕłöü ńď˙đřŕ "
+"˙ĺ , ďđűęë.: \"My printer|lp\".\n"
+" Ďđűíňýđ ç łěĺě \"lp\" áóäçĺ çŕäŕäçĺíű ďđűíňýđŕě ďŕ çěî˘÷ŕííţ.\n"
+"\n"
+"\n"
+" * Ŕďłńŕííĺ: ăýňŕ íĺŕáŕâ˙çęîâŕ, ŕëĺ ěîćŕ áűöü ęŕđűńíŕ, ęŕëł íĺęŕëüęł "
+"ďđűíňýđࢠçëó÷ŕíű çâŕřűě ęŕěď'ţňĺđŕě öł âű íĺ\n"
+" äŕçâŕë˙ĺöĺ äîńňóď łířűě ęŕěď'ţňĺđŕě äŕ ăýňŕăŕ ďđűíňýđó.\n"
+"\n"
+"\n"
+" * Đŕçě˙ř÷ýííĺ: ęŕëł âű ćŕäŕĺöĺ đŕçě˙ńöiöü ďý˘íóţ łíôŕđěŕöűţ ŕäíîńíŕ\n"
+" đŕçě˙ř÷ýíí˙ ďđűíňýđŕ, óńňŕ˘öĺ ˙ĺ ńţäű (âű âîëüíű˙ ďłńŕöü óń¸ řňî\n"
+" çŕ˘ăîäíŕ, íŕďđűęëŕä \"2nd floor\").\n"
-#: ../../help.pm_.c:542
+#: ../../help.pm_.c:548
msgid ""
"You need to enter some informations here.\n"
"\n"
@@ -2434,8 +2973,37 @@ msgid ""
" If you want to acces a printer located on NetWare network, select "
"\"NetWare\".\n"
msgstr ""
+"Ňóň âű ďŕâłííű óâĺńöł íĺęŕňîđóţ łíôŕđěŕöűţ.\n"
+"\n"
+"\n"
+" * ˛ě˙ ÷ŕđăł: âűęŕđűńňî˘âŕĺööŕ \"lp\" ˙ę łě˙ ďđűíňýđó ďŕ çěî˘÷ŕííţ. Ňŕę, "
+"âű ďŕâłííű ěĺöü ďđűíňýđ çâŕíű \"lp\".\n"
+" Ęŕëł âű ěŕĺöĺ ňîëüęł ŕäçłí ďđűíňŕđ, âű ěîćŕöĺ ěĺöü äë˙ ˙ăî "
+"íĺęŕëüęłíŕçâŕ˘. Âű ňîëüęł ďŕâłííű ŕääç˙ëłöü łő ëł÷áŕé ęŕíŕëó ( \"|\").\n"
+" Ňŕę, ęŕëł ëţáłöĺ áîëüř łíôŕđěŕöűéíű˙ íŕçâű, âű ďŕâłííű óńňŕâŕłöü ńď˙đřŕ "
+"˙ĺ , ďđűęë.: \"My printer|lp\".\n"
+" Ďđűíňýđ ç łěĺě \"lp\" áóäçĺ çŕäŕäçĺíű ďđűíňýđŕě ďŕ çěî˘÷ŕííţ.\n"
+"\n"
+" \n"
+" * Äűđűęňîđű˙ spool: ó ¸é çíŕőîäç˙ööŕ çŕěîâű íŕ âűęŕíŕííĺ äđóęó. Çŕőŕâŕéöĺ "
+"ŕáđŕíŕĺ\n"
+" ďŕ çěî˘÷ŕííţ, ęŕëł íĺ âĺäŕĺöĺ ˙ę ăýňűě ęŕđűńňŕööŕ.\n"
+"\n"
+"\n"
+" * Ďŕäęëţ÷ýííĺ ďđűíňýđó: ęŕëł ďđűíňýđ ôłçł÷íŕ çëó÷ŕíű ç ęŕěď'ţňĺđŕě, "
+"ŕá˙đűöĺ \"Ëŕęŕëüíű ďđűíňýđ\".\n"
+" Ęŕëł ďđűíňýđ ďŕäęëţ÷ŕíű äŕ ŕääŕëĺíŕé Unix ěŕřűíű, ŕá˙đűöĺ \"Ŕääŕëĺíű "
+"lpd ďđűíňýđ\".\n"
+"\n"
+"\n"
+" Ęŕëł âű ďđűíňýđ ďŕäęëţ÷ŕíű äŕ ŕääŕëĺíŕé ěŕřűíű MS Windows (öł äŕ Unix "
+"ěŕřűíű, ˙ęŕ˙ âűęŕđűńňî˘âŕĺ ďđŕňŕęîë SMB,\n"
+" ŕá˙đűöĺ \"SMB/Windows 95/98/NT\".\n"
+"\n"
+"\n"
+" Ęŕëł ďđűíňŕđ ďŕäęëţ÷ŕíű äŕ ńĺňęł NetWare, ŕá˙đűöĺ \"NetWare\".\n"
-#: ../../help.pm_.c:567
+#: ../../help.pm_.c:573
msgid ""
"Your printer has not been detected. Please enter the name of the device on\n"
"which it is connected.\n"
@@ -2446,12 +3014,18 @@ msgid ""
"one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
"Windows."
msgstr ""
+"Âŕř ďđűíňŕđ íĺ áű˘ çíîéäçĺíű. Ęŕëł ëŕńęŕ ˘â˙äçłöĺ łě˙ ďđűëŕäű äŕ ˙ęîé ¸í\n"
+"ďŕäęëţ÷ŕíű.\n"
+"\n"
+"\n"
+"Áîëüřŕńü ďđűíňŕđࢠďŕäęëţ÷ŕţööŕ äŕ ďĺđřŕăŕ ďŕđŕëĺëüíŕăŕ ďîđňó.¨í\n"
+"çŕâĺööŕ \"/dev/lp0\" ó GNU/Linux ł \"LPT1\" ó Microsoft Windows."
-#: ../../help.pm_.c:575
+#: ../../help.pm_.c:581
msgid "You must now select your printer in the above list."
-msgstr ""
+msgstr "Âű ďŕâłííű ŕáđŕöü âŕř ďđűíňŕđ ńŕ ńďłńó."
-#: ../../help.pm_.c:578
+#: ../../help.pm_.c:584
msgid ""
"Please select the right options according to your printer.\n"
"Please see its documentation if you don't know what choose here.\n"
@@ -2460,9 +3034,14 @@ msgid ""
"You will be able to test your configuration in next step and you will be "
"able to modify it if it doesn't work as you want."
msgstr ""
+"Ęŕëł ëŕńęŕ, ŕá˙đűöĺ ďđŕâłëíű˙ îďöűł ˘ ŕäďŕâĺäíŕńüöł âŕřŕěó ďđűíňŕđó.\n"
+"Ęŕëł ëŕńęŕ,ăë˙äçłöĺ äŕęóěĺíňŕöűţ ęŕëł íĺ âĺäŕĺöĺ řňî ŕáđŕöü.\n"
+"\n"
+"\n"
+"Ęŕëł âű ćŕäŕĺöĺ, âű áóäçĺöĺ çäîëüíű˙ ďđŕňýńňŕâŕöü âŕřóţ ęŕíôłăóđŕöűţ\n"
+"íŕ íŕńňóďíűě ęđîęó ł çüě˙íłöü ˙ĺ."
-#: ../../help.pm_.c:585
-#, fuzzy
+#: ../../help.pm_.c:591
msgid ""
"You can now enter the root password for your Linux-Mandrake system.\n"
"The password must be entered twice to verify that both password entries are "
@@ -2485,40 +3064,25 @@ msgid ""
"to\n"
"remember it without too much effort."
msgstr ""
-"Óâ˙äçiöĺ ďŕđîëü ńóďĺđęŕđűńňŕëüíięŕ (root) âŕřŕé ńińňýěű Linux-Mandrake.\n"
-"Ďŕđîëü íĺŕáőîäíŕ ˘âĺńöi äâîé÷ű, ęŕá óďý˘íiööŕ, řňî âű íĺ ďŕěűëiëiń˙.\n"
-"\n"
-"\n"
-"Root - ăýňŕ ŕäěiíińňđŕňŕđ ńińňýěű, ňîëüęi ˙ěó äŕçâîëĺíŕ çě˙í˙öü "
-"ęŕíôiăóđŕöűţ\n"
-"ńińňýěű. Dĺëüěi ˘âŕćëiâŕ âűáiđŕéöĺ ďŕđîëü! \n"
-"Íĺëĺăŕëüíŕĺ âűęŕđűńňŕííĺ ăýňŕăŕ ďŕđîë˙ ěîćŕ áűöü âűęëţ÷íŕ\n"
-"řęîäíŕ äë˙ öýëŕńíŕńöi ńińňýěű, äë˙ çíŕőîä˙÷űőń˙ ˘ ¸é äŕäçĺíűő\n"
-"i äë˙ iířűő çëó÷ŕííűő ç ¸é ńińňýě. Ďŕđîëü ďŕâiíĺí áűöü ńňâîđŕíű ç ńóěĺńi\n"
-"ŕëôŕâiňíŕ-öűôđŕâűő ńiěâŕëࢠi ěĺöü äŕ˘ćűíţ íĺ ěĺíř 8 ëiňŕđ. Íięîëi íĺ "
-"çŕďińâŕéöĺ\n"
-"˙ăî!. Ó ňîé ćŕ ÷ŕń íĺ đŕáiöĺ ďŕđîëü çŕíŕäňŕ ďđŕö˙ăëűě ŕëüáî ńęëŕäŕíűě:\n"
-"¸í ďŕâiíĺí çŕďŕěiíŕööŕ áĺç ŕńŕáëiâŕăŕ íŕďđóćŕíí˙."
-#: ../../help.pm_.c:603
+#: ../../help.pm_.c:609
msgid ""
"To enable a more secure system, you should select \"Use shadow file\" and\n"
"\"Use MD5 passwords\"."
msgstr ""
-"Ęŕá óçěŕöíiöü á˙ńďĺęó ńińňýěű, íĺŕáőîäíŕ âűáđŕöü \"Ńęŕđűńňŕöü ńőŕâŕíű "
-"ôŕéë\"\n"
+"Ęŕá óçěŕöíiöü á˙ńďĺęó ńińňýěű, íĺŕáőîäíŕ ŕáđŕöü \"Ńęŕđűńňŕöü ńőŕâŕíű ôŕéë\"\n"
"i \"Ńęŕđűńňŕöü ďŕđîëi MD5\"."
-#: ../../help.pm_.c:607
+#: ../../help.pm_.c:613
msgid ""
"If your network uses NIS, select \"Use NIS\". If you don't know, ask your\n"
"network administrator."
msgstr ""
-"Ęŕëi ˘ âŕřŕé ńĺňöű ńęŕđűńňî˘âŕĺööŕ NIS, âűá˙đűöĺ \"Ńęŕđűńňî˘âŕöü NIS\". Ęŕëi "
-"\n"
+"Ęŕëi ˘ âŕřŕé ńĺňöű âűęŕđűńňî˘âŕĺööŕ NIS, ŕá˙đűöĺ \"Ńęŕđűńňî˘âŕöü NIS\". "
+"Ęŕëi\n"
"íĺ âĺäŕĺöĺ, çŕďűňŕéöĺ ŕäěiíińňđŕňŕđŕ ńĺňęi."
-#: ../../help.pm_.c:611
+#: ../../help.pm_.c:617
msgid ""
"You may now create one or more \"regular\" user account(s), as\n"
"opposed to the \"privileged\" user account, root. You can create\n"
@@ -2550,24 +3114,27 @@ msgstr ""
"ó ˙ęiě çŕőî˘âŕţööŕ ăýňű˙ íŕńňđîéęi.\n"
"\n"
"\n"
-"Ďŕ-ďĺđřŕĺ, ńňâŕđűöĺ ˘âŕőîä äë˙ ńĺá˙! Íŕâŕň ęŕëi âű áóäçĺöĺ ŕäçiíűě\n"
+"Ďŕ-ďĺđřŕĺ, ńňâŕđűöĺ ˘âŕőîä äë˙ ń˙áĺ! Íŕâŕň ęŕëi âű áóäçĺöĺ ŕäçiíűě\n"
"ęŕđűńňŕëüíięŕě ăýňŕé ěŕřűíű, íĺ đýęŕěĺíäóĺööŕ óâŕőîäçiöü ç ďđŕâŕěi\n"
-"ńóďĺđęŕđűńňŕëüíięŕ äë˙ řňîäç¸ííŕé ďđŕöű: ăýňŕ çŕíŕäňŕ â˙ëięŕ˙ ďŕăđîçŕ\n"
+"ńóďĺđęŕđűńňŕëüíięó äë˙ řňîäç¸ííŕé ďđŕöű: ăýňŕ çŕíŕäňŕ â˙ëięŕ˙ ďŕăđîçŕ\n"
"á˙ńďĺęi. Ěŕă÷űěŕ çíiř÷űöü ńińňýěó çâű÷ŕéíŕé ďŕěűëęŕé äđóęó.\n"
"\n"
"\n"
-"Ňŕěó ˘âŕőîäçiöü ó ńińňýěó íĺŕáőîäíŕ ç ďđŕâŕěi çâű÷ŕéíŕăŕ ęŕđűńňŕëüíięŕ,\n"
+"Ňŕěó ˘âŕőîäçiöü ó ńińňýěó íĺŕáőîäíŕ ç ďđŕâŕěi çâű÷ŕéíŕăŕ ęŕđűńňŕëüíięó,\n"
"˙ęîăŕ âű çŕđŕç i ńňâîđűöĺ, ŕ ˘âŕőîäçiöü ç ďđŕâŕěi root íĺŕáőîäíŕ ňîëüęi\n"
"ç ěýňŕěi ŕäěiíińňđűđŕâŕíí˙ i ŕáńëóăî˘âŕíí˙ ńińňýěű."
-#: ../../help.pm_.c:630
+#: ../../help.pm_.c:636
msgid ""
"Creating a boot disk is strongly recommended. If you can't\n"
"boot your computer, it's the only way to rescue your system without\n"
"reinstalling it."
msgstr ""
+"Ńňâŕđýííĺ boot äűńęó ńňđîăŕ đýęŕěĺíäŕâŕíŕ! Ęŕëł âű íĺ çěîćŕöĺ\n"
+"çŕăđóçłöü âŕř ęŕěď'ţňŕđ, äűę ăýňŕ âŕř ŕäçłíű ńďîńŕá ŕäíŕâłöü\n"
+"ńłňýěű áĺç ĺéíŕăŕ ďĺđŕ˘ńňŕë˙âŕíüí˙."
-#: ../../help.pm_.c:635
+#: ../../help.pm_.c:641
msgid ""
"You need to indicate where you wish\n"
"to place the information required to boot to GNU/Linux.\n"
@@ -2581,9 +3148,9 @@ msgstr ""
"\n"
"\n"
"Ęŕëi âű íĺ ŕä÷óâŕĺöĺ ŕáńŕëţňíŕ äŕęëŕäíŕ, řňî âű đîáiöĺ, \n"
-"âűá˙đűöĺ \"Ďĺđřű ńĺęňŕđ íŕ äűńęó (MBR)\"."
+"ŕá˙đűöĺ \"Ďĺđřű ńĺęňŕđ íŕ äűńęó (MBR)\"."
-#: ../../help.pm_.c:643
+#: ../../help.pm_.c:649
msgid ""
"Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
" (primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
@@ -2591,7 +3158,7 @@ msgstr ""
"Ęŕëi âű íĺ âĺäŕĺöĺ äŕęëŕäíŕ, äűę çâű÷ŕéíűě âűáŕđŕě ç'˙˘ë˙ĺööŕ \"/dev/hda\"\n"
"(ďĺđřŕńíű ěŕéńňŕđ IDE äűńę) öi \"/dev/sda\" (ďĺđřű SCSI äűńę)."
-#: ../../help.pm_.c:647
+#: ../../help.pm_.c:653
msgid ""
"LILO (the LInux LOader) and Grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -2613,10 +3180,10 @@ msgstr ""
"\n"
"\n"
"Ňŕęńŕěŕ âű ěîćŕöĺ ďŕćŕäŕöü i íĺ äŕáŕ˘ë˙öü iířű˙ ŕďĺđŕöűéíű˙ ńińňýěű.\n"
-"Ó ňŕęiě âűďŕäęó ďŕňđýáíŕ ˘äŕëiöü ŕäďŕâĺäíű˙ çŕďińű. Ŕëĺ ć ňŕäű âŕě \n"
+"Ó ňŕęiě âűďŕäęó ďŕňđýáíŕ âűäŕëiöü ŕäďŕâĺäíű˙ çŕďińű. Ŕëĺ ć ňŕäű âŕě \n"
"ďŕňđýáíŕ áóäçĺ çŕăđóçŕ÷íŕ˙ äűńęĺňŕ, ęŕá çŕăđóçiööŕ!"
-#: ../../help.pm_.c:659
+#: ../../help.pm_.c:665
#, fuzzy
msgid ""
"LILO and grub main options are:\n"
@@ -2637,29 +3204,161 @@ msgid ""
"\n"
" * normal: select normal 80x25 text mode.\n"
"\n"
-" * <number>: use the corresponding text mode."
+" * <number>: use the corresponding text mode.\n"
+"\n"
+"\n"
+" - Clean \"/tmp\" at each boot: if you want delete all files and "
+"directories\n"
+"stored in \"/tmp\" when you boot your system, select this option.\n"
+"\n"
+"\n"
+" - Precise RAM if needed: unfortunately, there is no standard method to ask "
+"the\n"
+"BIOS about the amount of RAM present in your computer. As consequence, Linux "
+"may\n"
+"fail to detect your amount of RAM correctly. If this is the case, you can\n"
+"specify the correct amount or RAM here. Please note that a difference of 2 "
+"or 4\n"
+"MB between detected memory and memory present in your system is normal."
msgstr ""
-"Ŕńíî˘íű˙ ďŕđŕěĺňđű LILO i Grub:\n"
-" - Ďđűëŕäŕ çŕăđóçęi: Çě˙ř÷ŕĺ iě˙ ďđűëŕäű (íŕďđ. đŕçäçĺë\n"
-"ćîđńňęŕăŕ äűńęŕ), ˙ęŕ˙ çě˙ř÷ŕĺ çŕăđóçŕ÷íű ńĺęňŕđ. Ęŕëi íĺ âĺäŕĺöĺ "
-"ńďĺöűôięi,\n"
-"ňî âűáiđŕéöĺ \"/dev/hda\" (ŕëüáî \"/dev/sda\", ęŕëi ˘ âŕń SCSI-äűńę).\n"
+"Ŕńíî˘íű˙ ďŕđŕěĺňđű SILO:\n"
+" - Óńňŕë˙âŕííĺ çŕăđóç÷űęó: Ŕá˙đűöĺ ěĺńöŕ, äçĺ âű ćŕäŕĺöĺ çěĺńöiöü\n"
+"iíôŕđěŕöűţ, ďŕňđýáíóţ äë˙ çŕăđóçęi GNU/Linux. Ęŕëi íĺ ˘ďý˘íĺíű, řňî\n"
+"đîáiöĺ ďđŕâiëüíŕ, ŕá˙đűöĺ \"Ďĺđřű ńĺęňŕđ äűńęŕ (MBR)\".\n"
+"\n"
+"\n"
+" - Çŕňđűěęŕ ďŕ çěî˘÷ŕííţ ďĺđŕä çŕăđóçęŕé âîáđŕçó: Çŕäŕĺ ÷ŕń ó äç˙ń˙ňűő\n"
+"ńĺęóíäű, íŕ ďđŕö˙ăó ˙ęîăŕ çŕăđóç÷űę ÷ŕęŕĺ ďĺđŕä çŕăđóçęŕé âîáđŕçó ďŕ "
+"çěî˘÷ŕííţ.\n"
+"Ăýňű ďŕđŕěĺňŕđ ęŕđűńíű äë˙ ńińňýěŕ˘, ˙ęi˙ ŕäđŕçó çŕăđóćŕţööŕ ç ćîđńňęŕăŕ\n"
+"äűńęó ŕäđŕçó ŕďŕńë˙ ˘ęëţ÷ýíí˙ ęëŕâi˙ňóđű. Çŕăđóç÷űę íĺ ÷ŕęŕĺ, ęŕëi "
+"\"çŕňđűěęŕ\"\n"
+"\"çŕňđűěęŕ\" íĺ áóäçĺ ďŕçíŕ÷ŕíŕ öi óńňŕë˙âŕíŕ íŕ íîëü."
+
+#: ../../help.pm_.c:697
+msgid ""
+"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able\n"
+"to boot either GNU/Linux, MacOS, or MacOSX, if present on your computer.\n"
+"Normally, these other operating systems are correctly detected and\n"
+"installed. If this is not the case, you can add an entry by hand in this\n"
+"screen. Be careful as to choose the correct parameters.\n"
+"\n"
+"\n"
+"Yaboot main options are:\n"
+"\n"
+"\n"
+" - Init Message: A simple text message that is displayed before the boot\n"
+"prompt.\n"
+"\n"
+"\n"
+" - Boot Device: Indicate where you want to place the information required "
+"to \n"
+"boot to GNU/Linux. Generally, you will have setup a bootstrap partition "
+"earlier \n"
+"to hold this information.\n"
+"\n"
+"\n"
+" - Open Firmware Delay: Unlike LILO, there are two delays available with \n"
+"yaboot. The first delay is measured in seconds and at this point you can \n"
+"choose between CD, OF boot, MacOS, or Linux.\n"
"\n"
"\n"
-" - Çŕňđűěęŕ ďŕ çěî˘÷ŕííţ ďĺđŕä çŕăđóçęŕé âîáđŕçŕ: Çŕäŕĺ ÷ŕń ó äç˙ń˙ňűő\n"
-"ń˙ęóíäű, íŕ ďđŕö˙ăó ˙ęîăŕ çŕăđóç÷űę ÷ŕęŕĺ ďĺđŕä çŕăđóçęŕé çěî˘÷âŕĺěŕăŕ "
-"âîáđŕçŕ.\n"
-"Ăýňű ďŕđŕěĺňđ ęŕđűńíű äë˙ ńińňýě, ˙ęi˙ ŕäđŕçó çŕăđóćŕţööŕ ç ćîđńňęŕăŕ äűńęŕ\n"
-"ŕäđŕçó ďŕńë˙ ˘ęëţ÷ýíí˙ ęëŕâi˙ňóđű. Çŕăđóç÷űę íĺ ÷ŕęŕĺ, ęŕëi \"çŕňđűěęŕ\" \n"
-"íĺ áóäçĺ ďŕçíŕ÷ŕíŕ öi óńňŕë˙âŕíŕ íŕ íîëü.\n"
+" - Kernel Boot Timeout: This timeout is similar to the LILO boot delay. "
+"After \n"
+"selecting Linux, you will have this delay in 0.1 seconds before your "
+"default\n"
+"kernel description is selected.\n"
"\n"
"\n"
-" - Âiäýŕđýćűě: Âűáiđŕĺööŕ ňýęńňŕâű đýćűě VGA, ˙ęi áóäçĺ ˘ńňŕë˙âŕíű\n"
-"ďđű çŕăđóçöű. Ěŕă÷űěű íŕńňóďíű˙ âŕđű˙íňű: \n"
-" * normal: âűáđŕöü ňýęńňŕâű đýćűě 80x25.\n"
-" * <number>: âűáđŕöü ŕäďŕâĺäíű ňýęńňŕâű đýćűě."
+" - Enable CD Boot?: Checking this option will allow you to choose 'C' for "
+"CD at\n"
+"the first boot prompt.\n"
+"\n"
+"\n"
+" - Enable OF Boot?: Checking this option will allow you to choose 'N' for "
+"Open\n"
+"Firmware at the first boot prompt.\n"
+"\n"
+"\n"
+" - Default OS: You can select which OS will boot by default when the Open "
+"Firmware \n"
+"Delay expires."
+msgstr ""
-#: ../../help.pm_.c:680
+#: ../../help.pm_.c:738
+msgid ""
+"You can add additional entries for yaboot, either for other operating "
+"systems,\n"
+"alternate kernels, or for an emergency boot image.\n"
+"\n"
+"\n"
+"For other OS's - the entry consists only of a label and the root partition.\n"
+"\n"
+"\n"
+"For Linux, there are a few possible options: \n"
+"\n"
+"\n"
+" - Label: This is simply the name will type at the yaboot prompt to select "
+"this \n"
+"boot option.\n"
+"\n"
+"\n"
+" - Image: This would be the name of the kernel to boot. Typically vmlinux "
+"or\n"
+"a variation of vmlinux with an extension.\n"
+"\n"
+"\n"
+" - Root: The root device or '/' for your Linux installation.\n"
+"\n"
+"\n"
+" \n"
+" - Append: On Apple hardware, the kernel append option is used quite often "
+"to\n"
+"assist in initializing video hardware, or to enable keyboard mouse button "
+"emulation\n"
+"for the often lacking 2nd and 3rd mouse buttons on a stock Apple mouse. The "
+"following \n"
+"are some examples:\n"
+"\n"
+"\n"
+"\t\t video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+"hda=autotune\n"
+"\n"
+"\t\t video=atyfb:vmode:12,cmode:24 adb_buttons=103,111 \n"
+"\n"
+"\n"
+" \n"
+" - Initrd: This option can be used either to load initial modules, before "
+"the boot \n"
+"device is available, or to load a ramdisk image for an emergency boot "
+"situation.\n"
+"\n"
+"\n"
+" - Initrd-size: The default ramdisk size is generally 4096 bytes. If you "
+"should need\n"
+"to allocate a large ramdisk, this option can be used.\n"
+"\n"
+"\n"
+" - Read-write: Normally the 'root' partition is initially brought up "
+"read-only, to allow\n"
+"a filesystem check before the system becomes 'live'. You can override this "
+"option here.\n"
+"\n"
+"\n"
+" - NoVideo: Should the Apple video hardware prove to be exceptionally "
+"problematic, you can\n"
+"select this option to boot in 'novideo' mode, with native framebuffer "
+"support.\n"
+"\n"
+"\n"
+" - Default: Selects this entry as being the default Linux selection, "
+"selectable by just\n"
+"pressing ENTER at the yaboot prompt. This entry will also be highlighted "
+"with a '*', if you\n"
+"press TAB to see the boot selections."
+msgstr ""
+
+#: ../../help.pm_.c:793
msgid ""
"SILO is a bootloader for SPARC: it is able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -2679,11 +3378,11 @@ msgstr ""
"ńŕěŕńňîéíŕ. Áóäçüöĺ ˘ďý˘íĺíű, řňî âű çŕäŕëi ęŕđýęňíű˙ ďŕđŕěĺňđű.\n"
"\n"
"\n"
-"Ňŕęńŕěŕ âű ěîćŕöĺ ďŕćŕäŕöü i íĺ äŕáŕ˘ë˙öü iířű˙ ŕďĺđŕöűéíű˙ ńińňýěű.\n"
-"Ó ňŕęiě âűďŕäęó ďŕňđýáíŕ ˘äŕëiöü ŕäďŕâĺäíű˙ çŕďińű. Ŕëĺ ć ňŕäű âŕě \n"
-"ďŕňđýáĺí áóäçĺ iíńňŕë˙öűéíű äűńę, ęŕá çŕăđóçiööŕ."
+"Ňŕęńŕěŕ âű ěîćŕöĺ ďŕćŕäŕöü i íĺ äŕäâŕöü iířű˙ ŕďĺđŕöűéíű˙ ńińňýěű.\n"
+"Ó ňŕęiě âűďŕäęó ďŕňđýáíŕ âűäŕëiöü ŕäďŕâĺäíű˙ çŕďińű. Ŕëĺ ć ňŕäű âŕě \n"
+"áóäçĺ ďŕňđýáíű iíńňŕë˙öűéíű äűńę, ęŕá çŕăđóçiööŕ."
-#: ../../help.pm_.c:692
+#: ../../help.pm_.c:805
msgid ""
"SILO main options are:\n"
" - Bootloader installation: Indicate where you want to place the\n"
@@ -2698,19 +3397,20 @@ msgid ""
"omitted or is set to zero."
msgstr ""
"Ŕńíî˘íű˙ ďŕđŕěĺňđű SILO:\n"
-" - Óńňŕ븢ęŕ çŕăđóç÷űęŕ: Âűá˙đűöĺ ěĺńöŕ, ęóäű âű ćŕäŕĺöĺ çě˙ńöiöü\n"
+" - Óńňŕë˙âŕííĺ çŕăđóç÷űęó: Ŕá˙đűöĺ ěĺńöŕ, äçĺ âű ćŕäŕĺöĺ çěĺńöiöü\n"
"iíôŕđěŕöűţ, ďŕňđýáíóţ äë˙ çŕăđóçęi GNU/Linux. Ęŕëi íĺ ˘ďý˘íĺíű, řňî\n"
-"đîáiöĺ ďđŕâiëüíŕ, âűáiđŕéöĺ \"Ďĺđřű ńĺęňŕđ äűńęŕ (MBR)\".\n"
+"đîáiöĺ ďđŕâiëüíŕ, ŕá˙đűöĺ \"Ďĺđřű ńĺęňŕđ äűńęŕ (MBR)\".\n"
"\n"
"\n"
-" - Çŕňđűěęŕ ďŕ çěî˘÷ŕííţ ďĺđŕä çŕăđóçęŕé âîáđŕçŕ: Çŕäŕĺ ÷ŕń ó äç˙ń˙ňűő\n"
-"ń˙ęóíäű, íŕ ďđŕö˙ăó ˙ęîăŕ çŕăđóç÷űę ÷ŕęŕĺ ďĺđŕä çŕăđóçęŕé çěî˘÷âŕĺěŕăŕ "
-"âîáđŕçŕ.\n"
-"Ăýňű ďŕđŕěĺňđ ęŕđűńíű äë˙ ńińňýě, ˙ęi˙ ŕäđŕçó çŕăđóćŕţööŕ ç ćîđńňęŕăŕ äűńęŕ\n"
-"ŕäđŕçó ŕďŕńë˙ ˘ęëţ÷ýíí˙ ęëŕâi˙ňóđű. Çŕăđóç÷űę íĺ ÷ŕęŕĺ, ęŕëi \"çŕňđűěęŕ\"\n"
-"íĺ áóäçĺ ďŕçíŕ÷ŕíŕ öi óńňŕë˙âŕíŕ íŕ íîëü."
+" - Çŕňđűěęŕ ďŕ çěî˘÷ŕííţ ďĺđŕä çŕăđóçęŕé âîáđŕçó: Çŕäŕĺ ÷ŕń ó äç˙ń˙ňűő\n"
+"ńĺęóíäű, íŕ ďđŕö˙ăó ˙ęîăŕ çŕăđóç÷űę ÷ŕęŕĺ ďĺđŕä çŕăđóçęŕé âîáđŕçó ďŕ "
+"çěî˘÷ŕííţ.\n"
+"Ăýňű ďŕđŕěĺňŕđ ęŕđűńíű äë˙ ńińňýěŕ˘, ˙ęi˙ ŕäđŕçó çŕăđóćŕţööŕ ç ćîđńňęŕăŕ\n"
+"äűńęó ŕäđŕçó ŕďŕńë˙ ˘ęëţ÷ýíí˙ ęëŕâi˙ňóđű. Çŕăđóç÷űę íĺ ÷ŕęŕĺ, ęŕëi "
+"\"çŕňđűěęŕ\"\n"
+"\"çŕňđűěęŕ\" íĺ áóäçĺ ďŕçíŕ÷ŕíŕ öi óńňŕë˙âŕíŕ íŕ íîëü."
-#: ../../help.pm_.c:705
+#: ../../help.pm_.c:818
msgid ""
"Now it's time to configure the X Window System, which is the\n"
"core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
@@ -2728,14 +3428,14 @@ msgstr ""
"ŕńíîâŕé Linux GUI (Ăđŕôi÷íű Iíňýđôĺéń Ęŕđűńňŕëüíięŕ). Äçĺë˙ ăýňŕăŕ\n"
"ďŕňđýáíŕ íŕńňđîiöü âiäýŕęŕđňó i ěŕíiňîđ. Áîëüřŕ˙ ÷ŕńňęŕ ăýňűő ęđîęŕ˘\n"
"ŕ˘ňŕěŕňűçŕâŕíŕ, ňŕěó âŕřŕ ďđŕöŕ ěîćŕ çŕęëţ÷ŕööŕ ˘ ďđŕâĺđöű\n"
-"âűíięࢠíŕńňđîéęi i ďŕöâĺđäćýííţ ŕáđŕíűő ďŕđŕěĺňđࢠ:)\n"
+"âűíięࢠíŕńňđîéęi i ďŕäöâĺđäćŕííţ ŕáđŕíűő ďŕđŕěĺňđࢠ:)\n"
"\n"
"Ęŕëi ęŕíôiăóđŕâŕííĺ çŕâĺđřűööŕ, áóäçĺ çŕďóř÷ŕíű X (ęŕëi âű íĺ\n"
"ďŕďđîńiöĺ DrakX íĺ đŕáiöü ăýňŕăŕ), ęŕá âű çěŕăëi ďđŕâĺđűöü, öi çăîäíű\n"
"âű ç íŕńňđîéęŕěi. Ęŕëi íĺ, ňî çŕ˘ń¸äű ěŕă÷űěŕ â˙đíóööŕ i çě˙í˙öü iő\n"
"ęîëüęi âŕě ďŕňđýáíŕ."
-#: ../../help.pm_.c:718
+#: ../../help.pm_.c:831
msgid ""
"If something is wrong in X configuration, use these options to correctly\n"
"configure the X Window System."
@@ -2743,85 +3443,24 @@ msgstr ""
"Ęŕëi íĺřňŕ íĺ ňŕę ç íŕńňđîéęŕé X, ńęŕđűńňŕéöĺ ăýňű˙ ďŕđŕěĺňđű äë˙ \n"
"ęŕđýęňíŕé íŕńňđîéęi X Window System."
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:835
msgid ""
"If you prefer to use a graphical login, select \"Yes\". Otherwise, select\n"
"\"No\"."
msgstr ""
-"Ęŕëi âű ŕääŕĺöĺ ďĺđŕâŕăó ăđŕôi÷íŕěó ˘âŕőîäó (login), âűá˙đűöĺ \"Ňŕę\". Iíŕęř "
+"Ęŕëi âű ŕääŕĺöĺ ďĺđŕâŕăó ăđŕôi÷íŕěó ˘âŕőîäó (login), ŕá˙đűöĺ \"Ňŕę\". Iíŕęř "
"- \n"
"\"Íĺ\"."
-#: ../../help.pm_.c:726
-#, fuzzy
+#: ../../help.pm_.c:839
msgid ""
-"You can now select some miscellaneous options for your system.\n"
-"\n"
-"* Use hard drive optimizations: this option can improve hard disk "
-"performance but is only for advanced users. Some buggy\n"
-" chipsets can ruin your data, so beware. Note that the kernel has a builtin "
-"blacklist of drives and chipsets, but if\n"
-" you want to avoid bad surprises, leave this option unset.\n"
-"\n"
-"\n"
-"* Choose security level: you can choose a security level for your system. "
-"Please refer to the manual for complete\n"
+"You can choose a security level for your system. Please refer to the manual "
+"for complete\n"
" information. Basically, if you don't know what to choose, keep the default "
"option.\n"
-"\n"
-"\n"
-"* Precise RAM if needed: unfortunately, there is no standard method to ask "
-"the BIOS about the amount of RAM present in\n"
-" your computer. As consequence, Linux may fail to detect your amount of RAM "
-"correctly. If this is the case, you can\n"
-" specify the correct amount or RAM here. Please note that a difference of 2 "
-"or 4 MB between detected memory and memory\n"
-" present in your system is normal.\n"
-"\n"
-"\n"
-"* Removable media automounting: if you would prefer not to manually mount "
-"removable media (CD-Rom, floppy, Zip, etc.) by\n"
-" typing \"mount\" and \"umount\", select this option.\n"
-"\n"
-"\n"
-"* Clean \"/tmp\" at each boot: if you want delete all files and directories "
-"stored in \"/tmp\" when you boot your system,\n"
-" select this option.\n"
-"\n"
-"\n"
-"* Enable num lock at startup: if you want NumLock key enabled after booting, "
-"select this option. Please note that you\n"
-" should not enable this option on laptops and that NumLock may or may not "
-"work under X."
msgstr ""
-"Çŕđŕç ěŕă÷űěŕ ŕáđŕöü íĺęŕňîđű˙ äŕäŕňęîâű˙ ďŕđŕěĺňđű ńińňýěű.\n"
-"\n"
-" - Âűęŕđűńňî˘âŕöü ŕďňűěiçŕöűţ ćîđńňęŕăŕ äűńęŕ: Ăýňű ďŕđŕěĺňđ ďŕë˙ďřŕĺ "
-"äîńňóď\n"
-"äŕ ćîđńňęŕăŕ äűńęŕ, ŕëĺ ăýňŕ ňîëüęi äë˙ âîďűňíűő ęŕđűńňŕëüíięŕ˘,\n"
-"ďđű íĺęŕđýęňíűě ęŕđűńňŕííi ěŕă÷űěŕ ďŕđóřýííĺ öýëŕńíŕńöi äŕäçĺííűő.\n"
-" - Âűáđŕöü óçđîâĺíü á˙ńďĺęi: Âű ěîćŕöĺ âűáđŕöü óçđîâĺíü á˙ńďĺęi äë˙ ńâŕ¸é \n"
-"ńińňýěű.\n"
-" Çŕ äŕäŕňęîâŕé iíôŕđěŕöű˙é çâ˙đňŕéöĺń˙ äŕ äŕďŕěîćíięŕ.\n"
-"\n"
-"\n"
-" - Äŕęëŕäíű ďŕěĺđ RAM : Ó íĺęŕňîđűő âűďŕäęŕő Linux íĺ ěîćŕ ęŕđýęňíŕ\n"
-"âű˙âiöü óńţ ŕďĺđŕňű˘íóţ ďŕě˙öü, ˙ęŕ˙ ěŕĺööŕ ˘ ńińňýěĺ. Ó ăýňűě âűďŕäęó\n"
-"ďŕçíŕ÷öĺ äŕęëŕäíű ďŕěĺđ. Óâŕăŕ: đŕńőîäćŕííĺ ˘ 2-4Ěá äŕďóř÷ŕëüíŕ.\n"
-"\n"
-"\n"
-" - Ŕ˘ňŕěŕňű÷íŕĺ ěŕíöiđŕâŕííĺ çěĺííűő íŕęŕďë˙ëüíięŕ˘: Ęŕëi âű ćŕäŕĺöĺ íĺ \n"
-"ěŕíöiđŕâŕöü ńŕěŕńňîéíŕ çěĺííű˙ íŕęŕďë˙ëüíięi, (CD-ROM, Floppy, Zip) "
-"ęŕěŕíäŕěi \"mount\" öi \"umount\", âűá˙đűöĺ ăýňű ďŕđŕěĺňđ. \n"
-"\n"
-"\n"
-" - Óęëţ÷űöü Num Lock ďđű çŕďóńęó: Ęŕëi âű ćŕäŕĺöĺ, ęŕá Number Lock áű˘ "
-"óęëţ÷ŕíű\n"
-"ďŕńë˙ çŕăđóçęi, âűá˙đűöĺ ăýňű ďŕđŕěĺňđ (Óâŕăŕ: Num Lock ěîćŕ áűöü i íĺ "
-"óęëţ÷ŕíű\n"
-"ďŕä X)."
-#: ../../help.pm_.c:755
+#: ../../help.pm_.c:844
msgid ""
"Your system is going to reboot.\n"
"\n"
@@ -2836,107 +3475,142 @@ msgstr ""
"Ęŕëi âű ćŕäŕĺöĺ ďĺđŕçŕăđóçiöŕ ďŕä iířóţ ŕďĺđŕöűéíóţ ńińňýěó, ÷űňŕéöĺ \n"
"äŕäŕňęîâű˙ iíńňđóęöűi."
-#: ../../install2.pm_.c:40
+#: ../../install2.pm_.c:39
msgid "Choose your language"
msgstr "Âűáŕđ ěîâű"
-#: ../../install2.pm_.c:41
+#: ../../install2.pm_.c:40
msgid "Select installation class"
-msgstr "Ęëŕń óńňŕíî˘ęi"
+msgstr "Ęëŕń óńňŕë˙âŕíí˙"
-#: ../../install2.pm_.c:42
+#: ../../install2.pm_.c:41
msgid "Hard drive detection"
-msgstr "Âűçíŕ÷ýííĺ ćîđńňęŕăŕ äűńęŕ"
+msgstr "Âűçíŕ÷ýííĺ ćîđńňęŕăŕ äűńęó"
-#: ../../install2.pm_.c:43
+#: ../../install2.pm_.c:42
msgid "Configure mouse"
-msgstr "Íŕńňđîéęŕ ěűři"
+msgstr "Íŕńňđîéęŕ ěűřű"
-#: ../../install2.pm_.c:44
+#: ../../install2.pm_.c:43
msgid "Choose your keyboard"
msgstr "Âűáŕđ ęëŕâi˙ňóđű"
-#: ../../install2.pm_.c:45 ../../install_steps_interactive.pm_.c:497
-msgid "Miscellaneous"
-msgstr "Đîçíŕĺ"
+#: ../../install2.pm_.c:44
+#, fuzzy
+msgid "Security"
+msgstr "ęó÷ŕđŕâű"
-#: ../../install2.pm_.c:46
+#: ../../install2.pm_.c:45
msgid "Setup filesystems"
msgstr "Íŕńňđ. ôŕéëŕâűő ńińňýěŕ˘"
-#: ../../install2.pm_.c:47
+#: ../../install2.pm_.c:46
msgid "Format partitions"
-msgstr "Ôŕđěŕöiđŕâŕííĺ đŕçäçĺëŕ˘"
+msgstr "Ôŕđěŕňŕâŕííĺ đŕçäçĺëŕ˘"
-#: ../../install2.pm_.c:48
+#: ../../install2.pm_.c:47
msgid "Choose packages to install"
msgstr "Âűáŕđ ďŕęĺňŕ˘"
-#: ../../install2.pm_.c:49
+#: ../../install2.pm_.c:48
msgid "Install system"
-msgstr "Óńňŕíî˘ęŕ ńińňýěű"
+msgstr "Óńňŕë˙âŕííĺ ńińňýěű"
+
+#: ../../install2.pm_.c:49 ../../install_steps_interactive.pm_.c:894
+#: ../../install_steps_interactive.pm_.c:895
+msgid "Set root password"
+msgstr "Ďŕđîëü äë˙ root"
#: ../../install2.pm_.c:50
+msgid "Add a user"
+msgstr "Äŕäŕöü ęŕđűńňŕëüíięŕ"
+
+#: ../../install2.pm_.c:51
msgid "Configure networking"
msgstr "Íŕńňđîéęŕ ńĺňęi"
-#: ../../install2.pm_.c:52
-msgid "Configure timezone"
-msgstr "Íŕńňđîéęŕ ÷ŕńŕâîăŕ ďî˙ńŕ"
+#: ../../install2.pm_.c:53 ../../install_steps_interactive.pm_.c:818
+msgid "Summary"
+msgstr ""
-#: ../../install2.pm_.c:53
+#: ../../install2.pm_.c:54
msgid "Configure services"
msgstr "Íŕńňđîéęŕ ńëóćáŕ˘"
-#: ../../install2.pm_.c:54
-msgid "Configure printer"
-msgstr "Íŕńňđîéęŕ ďđűíňýđŕ"
-
-#: ../../install2.pm_.c:55 ../../install_steps_interactive.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:763
-msgid "Set root password"
-msgstr "Ďŕđîëü äë˙ root"
-
#: ../../install2.pm_.c:56
-msgid "Add a user"
-msgstr "Äŕäŕöü ęŕđűńňŕëüíięŕ"
-
-#: ../../install2.pm_.c:58
msgid "Create a bootdisk"
msgstr "Ńňâŕđűöü çŕăđ. äűńę"
-#: ../../install2.pm_.c:60
+#: ../../install2.pm_.c:58
msgid "Install bootloader"
-msgstr "Óńňŕ븢ęŕ çŕăđóç÷űęŕ"
+msgstr "Óńňŕë˙âŕííĺ çŕăđóç÷űęó"
-#: ../../install2.pm_.c:61
+#: ../../install2.pm_.c:59
msgid "Configure X"
msgstr "Íŕńňđîéęŕ X Window"
-#: ../../install2.pm_.c:63
-msgid "Auto install floppy"
-msgstr "Ŕ˘ňŕ óńňŕ븢ęŕ ôëîďi"
-
-#: ../../install2.pm_.c:65
+#: ../../install2.pm_.c:60
msgid "Exit install"
-msgstr "Çŕęŕí÷ýííĺ ˘ńňŕ븢ęi"
+msgstr "Çŕęŕí÷ýííĺ ˘ńňŕë˙âŕíí˙"
-#: ../../install_any.pm_.c:578
+#: ../../install_any.pm_.c:373
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They don't have any known security\n"
+"issues, but some new could be found. In that case, you must make sure to "
+"upgrade\n"
+"as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+
+#: ../../install_any.pm_.c:404
+msgid "Can't use broadcast with no NIS domain"
+msgstr "Íĺěŕă÷űěŕ âűęŕđűńňî˘âŕöü broadcast áĺç äŕěĺíŕ NIS"
+
+#: ../../install_any.pm_.c:647
+#, fuzzy, c-format
+msgid "Insert a FAT formatted floppy in drive %s"
+msgstr "Óńňŕ˘öĺ äűńęĺňó ˘ äűńęŕâîä %s"
+
+#: ../../install_any.pm_.c:651
+msgid "This floppy is not FAT formatted"
+msgstr ""
+
+#: ../../install_any.pm_.c:661
+msgid ""
+"To use this saved packages selection, boot installation with ``linux "
+"defcfg=floppy''"
+msgstr ""
+
+#: ../../install_any.pm_.c:683
msgid "Error reading file $f"
-msgstr "Ďŕěűëęŕ ÷űňŕíí˙ ôŕéëŕ $f"
+msgstr "Ďŕěűëęŕ ÷űňŕíí˙ ôŕéëó $f"
-#: ../../install_gtk.pm_.c:426
+#: ../../install_gtk.pm_.c:84 ../../install_steps_gtk.pm_.c:310
+#: ../../interactive.pm_.c:95 ../../interactive.pm_.c:110
+#: ../../interactive.pm_.c:265 ../../interactive_newt.pm_.c:166
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:356
+#: ../../my_gtk.pm_.c:616 ../../my_gtk.pm_.c:639
+msgid "Ok"
+msgstr "Îę"
+
+#: ../../install_gtk.pm_.c:423
msgid "Please test the mouse"
msgstr "Ęŕëł ëŕńęŕ, çđŕáłöĺ íĺęŕëüęł đóőࢠěűřřó."
-#: ../../install_gtk.pm_.c:427
+#: ../../install_gtk.pm_.c:424
#, fuzzy
msgid "To activate the mouse,"
msgstr "Ęŕëł ëŕńęŕ, çđŕáłöĺ íĺęŕëüęł đóőࢠěűřřó."
-#: ../../install_gtk.pm_.c:428
+#: ../../install_gtk.pm_.c:425
msgid "MOVE YOUR WHEEL!"
-msgstr ""
+msgstr "Đóřöĺ ęîëŕě ěűřű!"
#: ../../install_interactive.pm_.c:23
#, c-format
@@ -2944,7 +3618,7 @@ msgid ""
"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
"You can find some information about them at: %s"
msgstr ""
-"Íĺęŕňîđŕĺ ŕáńňŕë˙âŕííĺ ďŕňđŕáóĺň ęŕěĺđöűéíűő äđŕéâĺđࢠäë˙ ďđŕöű.\n"
+"Ďý˘íŕĺ ŕáńňŕë˙âŕííĺ ďŕňđŕáóĺ ęŕěĺđöűéíűő äđŕéâĺđࢠäë˙ ďđŕöű.\n"
"×ŕńňęîâŕ łíôŕđěŕöűţ ďđŕ łő ěîćíŕ ŕňđűěŕöü ňóň: %s"
#: ../../install_interactive.pm_.c:41
@@ -2955,7 +3629,7 @@ msgid ""
msgstr ""
"Âű ďŕâiííű ěĺöü ęŕđŕí¸âű đŕçäçĺë.\n"
"Äë˙ ăýňŕăŕ ńňâŕđűöĺ đŕçäçĺë (ŕëüáî ŕäçíŕ÷öĺ ˘ćî ińíóţ÷ű).\n"
-"Ďîňűě âűá˙đűöĺ ``Ęđîďęŕ ěŕíöiđŕâŕíí˙'' i ˘ńňŕíŕâiöĺ ˙ĺ ˘ `/'"
+"Ďîňűě ŕá˙đűöĺ ``Ęđîďęŕ ěŕíöiđŕâŕíí˙'' i ˘ńňŕíŕâiöĺ ˙ĺ ˘ `/'"
#: ../../install_interactive.pm_.c:46 ../../install_steps_graphical.pm_.c:259
msgid "You must have a swap partition"
@@ -2969,7 +3643,7 @@ msgid ""
msgstr ""
"Í˙ěŕ đŕçäçĺëŕ swap.\n"
"\n"
-"Óń¸ đî˘íŕ ďđŕö˙ăâŕöü?"
+"Óń¸ ŕäíî ďđŕö˙ăâŕöü?"
#: ../../install_interactive.pm_.c:68
msgid "Use free space"
@@ -2985,7 +3659,7 @@ msgstr "Âűęŕđűńňî˘âŕöü ińíóţ÷ű đŕçäçĺë"
#: ../../install_interactive.pm_.c:80
msgid "There is no existing partition to use"
-msgstr "Íĺěŕ ińíóţ÷űő đŕçäçĺëŕ˘, ˙ęi˙ ěîćíŕ âűęŕđűńňŕöü"
+msgstr "Í˙ěŕ ińíóţ÷űő đŕçäçĺëŕ˘, ˙ęi˙ ěîćíŕ âűęŕđűńňŕöü"
#: ../../install_interactive.pm_.c:87
msgid "Use the Windows partition for loopback"
@@ -2994,7 +3668,7 @@ msgstr "Âűęŕđűńňî˘âŕöü đŕçäçĺë Windows äë˙ âiđňóŕëüíŕé ôŕéëŕâŕé ńińňýěű"
#: ../../install_interactive.pm_.c:90
#, fuzzy
msgid "Which partition do you want to use for Linux4Win?"
-msgstr "ßęi đŕçäçĺë äűńęŕ ćűäŕĺöĺ âűęŕđűńňî˘âŕöü, ęŕá çě˙ńöiöü linux4Win?"
+msgstr "Ďŕěĺđű ˙ęîăŕ đŕçäçĺëŕ âű ćŕäŕĺöĺ çě˙íiöü?"
#: ../../install_interactive.pm_.c:92
msgid "Choose the sizes"
@@ -3052,7 +3726,7 @@ msgstr ""
"đýçĺđâîâóţ ęîďiţ äŕäçĺíűő, ňî ńďŕ÷ŕňęó ďŕęiíüöĺ ďđŕăđŕěó "
"˘ńňŕë˙âŕíí˙,âűęŕíŕéöĺ scandisk i defrag íŕ ăýňűě đŕçäĺëĺ, çđŕáiöĺ đýçĺđâîâóţ "
"ęîďiţ\n"
-"äŕäçĺíűő i ňîëüęi ďîňűě çíî˘ âĺđíiöĺńü äŕ ďđŕăđŕěű ˘ńňŕë˙âŕíí˙.\n"
+"äŕäçĺíűő i ňîëüęi ďîňűě çíî˘ â˙đíiöĺń˙ äŕ ďđŕăđŕěű ˘ńňŕë˙âŕíí˙.\n"
"Ęŕëi ďŕäđűőňŕâŕëiń˙, íŕöińíiöĺ Ok."
#: ../../install_interactive.pm_.c:123
@@ -3067,7 +3741,7 @@ msgstr "Đŕçäçĺë %s"
#: ../../install_interactive.pm_.c:130
#, c-format
msgid "FAT resizing failed: %s"
-msgstr "Ŕ˘ňŕçě˙íĺííĺ ďŕěĺđࢠíĺ ŕňđűěŕëŕń˙ äë˙ đŕçäçĺëŕ FAT %s"
+msgstr "Ŕ˘ňŕçě˙íĺííĺ ďŕěĺđࢠíĺ ŕňđűěŕëŕń˙ äë˙ đŕçäçĺëó FAT %s"
#: ../../install_interactive.pm_.c:145
msgid ""
@@ -3079,7 +3753,7 @@ msgstr ""
#: ../../install_interactive.pm_.c:151
msgid "Erase entire disk"
-msgstr "Ńöĺđöi äŕäçĺíű˙ íŕ ˘ńiě äűńęó"
+msgstr "Ńö¸đöi äŕäçĺíű˙ íŕ ˘ńiě äűńęó"
#: ../../install_interactive.pm_.c:151
msgid "Remove Windows(TM)"
@@ -3095,12 +3769,9 @@ msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Óńĺ ińíóţ÷ű˙ đŕçäçĺëű íŕ äűńęó %s i äŕäçĺíű˙ íŕ iő áóäóöü ńňđŕ÷ŕíű"
#: ../../install_interactive.pm_.c:165
-msgid "Expert mode"
-msgstr "Đýćűě ýęńďĺđňŕ"
-
-#: ../../install_interactive.pm_.c:165
-msgid "Use diskdrake"
-msgstr "Âűęŕđűńňî˘âŕöü DiskDrake"
+#, fuzzy
+msgid "Custom disk partitioning"
+msgstr "Âűęŕđűńňî˘âŕöü ińíóţ÷ű đŕçäçĺë"
#: ../../install_interactive.pm_.c:169
msgid "Use fdisk"
@@ -3113,47 +3784,47 @@ msgid ""
"When you are done, don't forget to save using `w'"
msgstr ""
"Âű ěîćŕöĺ ö˙ďĺđ đŕçáiöü âŕř äűńę %s\n"
-"Ďŕ çŕęŕí÷ýííi íĺ çŕáóäçüöĺ çŕőŕâŕöü çě˙íĺííi, âűęŕđűńňî˘âŕ˙ `w'"
+"Ďŕ çŕęŕí÷ýííi íĺ çŕáóäçüöĺń˙ çŕőŕâŕöü çě˙íĺííi, ńęŕđűńňŕ˘řű `w'"
-#: ../../install_interactive.pm_.c:196
+#: ../../install_interactive.pm_.c:201
#, fuzzy
msgid "You don't have enough free space on your Windows partition"
msgstr "Âűęŕđűńňî˘âŕöü íĺçŕí˙ňóţ ďđŕńňîđó íŕ đŕçäçĺëĺ Windows"
-#: ../../install_interactive.pm_.c:211
+#: ../../install_interactive.pm_.c:217
#, fuzzy
msgid "I can't find any room for installing"
msgstr "Äŕäŕöü đŕçäçĺë íĺěŕă÷űěŕ"
-#: ../../install_interactive.pm_.c:214
+#: ../../install_interactive.pm_.c:221
msgid "The DrakX Partitioning wizard found the following solutions:"
-msgstr "Ěŕńňŕę ďŕäđűőňî˘ęi đŕçäçĺëࢠDrakX çíŕéřî˘ íŕńňóďíű˙ âŕđű˙íňű:"
+msgstr "Ěŕéńňŕđ ďŕäđűőňî˘ęi đŕçäçĺëࢠDrakX çíŕéřî˘ íŕńňóďíű˙ âŕđű˙íňű:"
-#: ../../install_interactive.pm_.c:219
+#: ../../install_interactive.pm_.c:226
#, c-format
msgid "Partitioning failed: %s"
msgstr "Ďŕäđűőňî˘ęŕ đŕçäĺëࢠíĺ ˘äŕëŕń˙: %s"
-#: ../../install_interactive.pm_.c:234
+#: ../../install_interactive.pm_.c:232
msgid "Bringing up the network"
msgstr "Äŕëó÷ýííĺ äŕ ńĺňęi"
-#: ../../install_interactive.pm_.c:239
+#: ../../install_interactive.pm_.c:237
msgid "Bringing down the network"
msgstr "Ŕäëó÷ýííĺ ŕä ńĺňęi"
-#: ../../install_steps.pm_.c:74
+#: ../../install_steps.pm_.c:73
msgid ""
"An error occurred, but I don't know how to handle it nicely.\n"
"Continue at your own risk."
msgstr ""
"Óçíięëŕ ďŕěűëęŕ, ˙ęóţ íĺ ŕňđűěëłâŕĺööŕ ęŕđýęňíŕ ŕďđŕöŕâŕöü,\n"
-"ňŕěó ďđŕö˙ăâŕéöĺ íŕ ńâîé ńňđŕő i đűçűęó."
+"ňŕěó ďđŕö˙ăâŕéöĺ íŕ ńâŕţ đűçűęó."
-#: ../../install_steps.pm_.c:202
+#: ../../install_steps.pm_.c:203
#, c-format
msgid "Duplicate mount point %s"
-msgstr "Äóáëiđŕâŕííĺ ęđîďęi ěŕíöiđŕâŕíí˙ %s"
+msgstr "Äóáë˙âŕííĺ ďóíęňó ěŕíöiđŕâŕíí˙ %s"
#: ../../install_steps.pm_.c:385
msgid ""
@@ -3164,19 +3835,19 @@ msgid ""
msgstr ""
"Íĺęŕňîđű˙ âŕćíű˙ ďŕęĺňű íĺ áűëi ˘ńňŕë˙âŕíű ęŕđýęňíŕ.\n"
"Äđóăi âŕř cdrom äűńę öi âŕř cdrom ěŕţöü äýôĺęňű.\n"
-"Ďđŕâĺđöĺ cdrom íŕ ˘ńňŕ븢âŕĺěűě ęŕěďóňŕđű, âűęŕđűńňî˘âŕţ÷ű\"rpm -qpl "
+"Ďđŕâĺđöĺ cdrom íŕ âŕřűě ęŕěďóňŕđű, âűęŕđűńňî˘âŕţ÷ű\"rpm -qpl "
"Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:451
#, c-format
msgid "Welcome to %s"
-msgstr "Ńŕđäý÷íŕ çŕďđŕřŕĺě ó %s"
+msgstr "Сардэчна запрашаем у %s"
-#: ../../install_steps.pm_.c:670
+#: ../../install_steps.pm_.c:634
msgid "No floppy drive available"
msgstr "Äűńęŕâîä íĺäŕńňóďíű"
-#: ../../install_steps_auto_install.pm_.c:43
+#: ../../install_steps_auto_install.pm_.c:51
#: ../../install_steps_stdio.pm_.c:23
#, c-format
msgid "Entering step `%s'\n"
@@ -3184,79 +3855,77 @@ msgstr "Ďĺđŕőîä íŕ ęđîę `%s'\n"
#: ../../install_steps_graphical.pm_.c:287
msgid "Choose the size you want to install"
-msgstr "Âűá˙đűöĺ ďŕćŕäŕíű ďŕěĺđ óńňŕ븢ęi"
+msgstr "Ŕá˙đűöĺ ďŕćŕäŕíű ďŕěĺđ óńňŕë˙âŕíí˙"
#: ../../install_steps_graphical.pm_.c:334
msgid "Total size: "
msgstr "Ŕăóëüíű ďŕěĺđ: "
-#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:353
-#: ../../standalone/rpmdrake_.c:136
+#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:437
#, c-format
msgid "Version: %s\n"
msgstr "Âĺđńi˙: %s\n"
-#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:354
-#: ../../standalone/rpmdrake_.c:137
+#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:438
#, c-format
msgid "Size: %d KB\n"
msgstr "Ďŕěĺđ: %d Ká\n"
-#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:260
+#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:520
msgid "Choose the packages you want to install"
-msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕ븢ęi"
+msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
-#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:263
+#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:340
msgid "Info"
msgstr "Iíôŕđěŕöű˙"
-#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:268
-#: ../../install_steps_interactive.pm_.c:216 ../../standalone/rpmdrake_.c:161
+#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_interactive.pm_.c:226
msgid "Install"
msgstr "Óńňŕ븢ęŕ"
-#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:466
-#: ../../install_steps_interactive.pm_.c:594
+#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:558
+#: ../../install_steps_interactive.pm_.c:675
msgid "Installing"
msgstr "Óńňŕ븢âŕĺě"
-#: ../../install_steps_graphical.pm_.c:499 ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_graphical.pm_.c:499
msgid "Please wait, "
msgstr "Ďŕ÷ŕęŕéöĺ, ęŕëi ëŕńęŕ, "
-#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:474
+#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:570
msgid "Time remaining "
msgstr "Çŕńňŕëîń˙ ÷ŕńó "
-#: ../../install_steps_graphical.pm_.c:502 ../../install_steps_gtk.pm_.c:475
+#: ../../install_steps_graphical.pm_.c:502
msgid "Total time "
msgstr "Ŕăóëüíű ÷ŕń "
-#: ../../install_steps_graphical.pm_.c:507 ../../install_steps_gtk.pm_.c:484
-#: ../../install_steps_interactive.pm_.c:594
+#: ../../install_steps_graphical.pm_.c:507
+#: ../../install_steps_interactive.pm_.c:675
msgid "Preparing installation"
-msgstr "Ďŕäđűőňî˘ęŕ ˘ńňŕ븢ęi"
+msgstr "Ďŕäđűőňî˘ęŕ ˘ńňŕë˙âŕíüí˙"
-#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:500
+#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:618
#, c-format
msgid "Installing package %s"
-msgstr "Óńňŕ븢ęŕ ďŕęĺňŕ %s"
+msgstr "Óńňŕë˙âŕííĺ ďŕęĺňó %s"
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:569
-#: ../../install_steps_gtk.pm_.c:573
+#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:695
+#: ../../install_steps_gtk.pm_.c:699
msgid "Go on anyway?"
msgstr "Óń¸ đî˘íŕ ďđŕö˙ăâŕöü?"
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:569
+#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:695
msgid "There was an error ordering packages:"
msgstr "Ŕňđűěŕëŕń˙ ďŕěűëęŕ ˘ďŕđŕäęŕâŕíí˙ ďŕęĺňŕ˘:"
#: ../../install_steps_graphical.pm_.c:577
-#: ../../install_steps_interactive.pm_.c:1003
msgid "Use existing configuration for X11?"
msgstr "Âűęŕđűńňŕöü ińíóţ÷óţ íŕńňđîéęó äë˙ X11?"
-#: ../../install_steps_gtk.pm_.c:136
+#: ../../install_steps_gtk.pm_.c:142
msgid ""
"Your system is low on resource. You may have some problem installing\n"
"Linux-Mandrake. If that occurs, you can try a text install instead. For "
@@ -3268,17 +3937,17 @@ msgstr ""
"ďđŕăđŕěó ˘ńňŕë˙âŕíí˙. Äë˙ ăýňŕăŕ íŕöińíiöĺ `F1' ó ÷ŕń çŕăđóçęi, ŕ ďîňűě\n"
"íŕá˙đűöĺ `text' i íŕöińíiöĺ <ENTER>."
-#: ../../install_steps_gtk.pm_.c:150
+#: ../../install_steps_gtk.pm_.c:156
msgid "Please, choose one of the following classes of installation:"
-msgstr "Ęŕëi ëŕńęŕ, âűá˙đűöĺ ŕäçií ç ęëŕńࢠóńňŕ븢ęi:"
+msgstr "Ęŕëi ëŕńęŕ, ŕá˙đűöĺ ŕäçií ç ęëŕńࢠóńňŕë˙âŕíí˙:"
-#: ../../install_steps_gtk.pm_.c:215
+#: ../../install_steps_gtk.pm_.c:222
#, c-format
msgid ""
"The total size for the groups you have selected is approximately %d MB.\n"
-msgstr "Ŕăóëüíű ďŕěĺđ äë˙ ŕáđŕíűő ăđóď ďđűáëiçíŕ đî˘íű %d Ěá.\n"
+msgstr "Ŕăóëüíű ďŕěĺđ äë˙ ŕáđŕíűő ăđóďࢠďđűáëiçíŕ đî˘íű %d Ěá.\n"
-#: ../../install_steps_gtk.pm_.c:217
+#: ../../install_steps_gtk.pm_.c:224
msgid ""
"If you wish to install less than this size,\n"
"select the percentage of packages that you want to install.\n"
@@ -3287,12 +3956,12 @@ msgid ""
"a percentage of 100%% will install all selected packages."
msgstr ""
"Ęŕëi âű ćŕäŕĺöĺ ˘ńňŕë˙âŕöü ěĺíĺé ăýňŕăó ďŕěĺđó,\n"
-"âűá˙đűöĺ ďđŕöýíň ďŕęĺňŕ˘, ˙ęi âű ćŕäŕĺöĺ ˘ńňŕë˙âŕöü.\n"
+"ŕá˙đűöĺ ŕäńîňŕę ďŕęĺňŕ˘, ˙ęi âű ćŕäŕĺöĺ ˘ńňŕë˙âŕöü.\n"
"\n"
-"Ďđű íiçęiě ďđŕöýíöĺ áóäóöü óńňŕë˙âŕíű ňîëüęi íŕéáîëüř âŕćíű˙ ďŕęĺňű,\n"
+"Ďđű íiçęiě ŕäńîňęó áóäóöü óńňŕë˙âŕíű ňîëüęi íŕéáîëüř âŕćíű˙ ďŕęĺňű,\n"
"ŕ ďđű 100% áóäóöü óńňŕë˙âŕíű ˘ńĺ ŕáđŕíű˙ ďŕęĺňű."
-#: ../../install_steps_gtk.pm_.c:222
+#: ../../install_steps_gtk.pm_.c:229
msgid ""
"You have space on your disk for only %d%% of these packages.\n"
"\n"
@@ -3304,108 +3973,114 @@ msgstr ""
"Íŕ âŕřűě äűńęó ¸ńöü ěĺńöŕ ňîëüęi äë˙ %d%% ăýňűő ďŕęĺňŕ˘.\n"
"\n"
"Ęŕëi âű ćŕäŕĺöĺ ˘ńňŕë˙âŕöü ěĺíĺé ăýňŕăŕ, ňî\n"
-"ďŕçíŕ÷öĺ ďđŕöýíň ďŕęĺňࢠäë˙ ˘ńňŕ븢ęi.\n"
-"Ďđű ěŕëűě ďđŕöýíöĺ áóäóöü óńňŕë˙âŕíű íŕéáîëüř âŕćíű˙ ďŕęĺňű;\n"
-"ďđű ďđŕöýíöĺ %d%% áóäçĺ ˘ńňŕë˙âŕíŕ ńňîëüęi ďŕęĺňࢠęîëüęi ěŕă÷űěŕ."
+"ďŕçíŕ÷öĺ ŕäńîňŕę ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙.\n"
+"Ďđű ěŕëűě ŕäńîňęó áóäóöü óńňŕë˙âŕíű íŕéáîëüř âŕćíű˙ ďŕęĺňű;\n"
+"ďđű ŕäńîňęó %d%% áóäçĺ ˘ńňŕë˙âŕíŕ ńňîëüęi ďŕęĺňࢠęîëüęi ěŕă÷űěŕ."
-#: ../../install_steps_gtk.pm_.c:228
+#: ../../install_steps_gtk.pm_.c:235
msgid "You will be able to choose them more specifically in the next step."
msgstr "Áîëüř äŕęëŕäíű âűáŕđ ěîćíŕ áóäçĺ çđŕáiöü íŕ íŕńňóďíűě ęđîęó."
-#: ../../install_steps_gtk.pm_.c:230
+#: ../../install_steps_gtk.pm_.c:237
msgid "Percentage of packages to install"
-msgstr "Ďđŕöýíň ďŕęĺňࢠäë˙ ˘ńňŕ븢ęi"
+msgstr "Ŕäńîňŕę ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
-#: ../../install_steps_gtk.pm_.c:272
-msgid "Automatic dependencies"
-msgstr "Ďđŕâĺđęŕ çŕëĺćíŕńöĺé"
+#: ../../install_steps_gtk.pm_.c:285 ../../install_steps_interactive.pm_.c:599
+msgid "Package Group Selection"
+msgstr "Âűáŕđ ăđóďű ďŕęĺňŕ˘"
-#: ../../install_steps_gtk.pm_.c:332 ../../standalone/rpmdrake_.c:101
+#: ../../install_steps_gtk.pm_.c:305 ../../install_steps_interactive.pm_.c:614
+msgid "Individual package selection"
+msgstr "Ŕńŕáińňű âűáŕđ ďŕęĺňŕ˘"
+
+#: ../../install_steps_gtk.pm_.c:349
+msgid "Show automatically selected packages"
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:416
msgid "Expand Tree"
-msgstr "Đŕńęđűöü äđýâŕ"
+msgstr "Đŕçăŕđíóöü äđýâŕ"
-#: ../../install_steps_gtk.pm_.c:333 ../../standalone/rpmdrake_.c:102
+#: ../../install_steps_gtk.pm_.c:417
msgid "Collapse Tree"
-msgstr "Çâ˙đíóöü äđýâŕ"
+msgstr "Çăŕđíóöü äđýâŕ"
-#: ../../install_steps_gtk.pm_.c:334
+#: ../../install_steps_gtk.pm_.c:418
msgid "Toggle between flat and group sorted"
msgstr "Ďĺđŕęëţ÷ýííĺ ďŕěić óďŕđŕäęŕâŕííĺě ďŕ ăđóďĺ i ŕńîáęŕő"
-#: ../../install_steps_gtk.pm_.c:351
+#: ../../install_steps_gtk.pm_.c:435
msgid "Bad package"
msgstr "Äđýííű ďŕęĺň"
-#: ../../install_steps_gtk.pm_.c:352
+#: ../../install_steps_gtk.pm_.c:436
#, c-format
msgid "Name: %s\n"
msgstr "Iě˙: %s\n"
-#: ../../install_steps_gtk.pm_.c:355
+#: ../../install_steps_gtk.pm_.c:439
#, c-format
msgid "Importance: %s\n"
msgstr "Çíŕ÷íŕńöü: %s\n"
-#: ../../install_steps_gtk.pm_.c:363
+#: ../../install_steps_gtk.pm_.c:448 ../../install_steps_interactive.pm_.c:578
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Ŕăóëüíű ďŕěĺđ: %d / %d Má"
-#: ../../install_steps_gtk.pm_.c:382
+#: ../../install_steps_gtk.pm_.c:467
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
-"Âű íĺ ěîćŕöĺ âűáđŕöü ăýňű ďŕęĺň, ňŕę ˙ę íĺ őŕďŕĺ ěĺńöŕ äë˙ ˙ăî ˘ńňŕë¸ęi"
+"Âű íĺ ěîćŕöĺ âűáđŕöü ăýňű ďŕęĺň, ňŕěó ˙ę íĺ őŕďŕĺ ěĺńöŕ äë˙ ˙ăî ˘ńňŕë˙âŕíí˙"
-#: ../../install_steps_gtk.pm_.c:386
+#: ../../install_steps_gtk.pm_.c:471
msgid "The following packages are going to be installed"
msgstr "Íŕńňóďíű˙ ďŕęĺňű áóäóöü äŕäŕíű äŕ ńińňýěű"
-#: ../../install_steps_gtk.pm_.c:387
+#: ../../install_steps_gtk.pm_.c:472
msgid "The following packages are going to be removed"
msgstr "Íŕńňóďíű˙ ďŕęĺňű áóäóöü âűäŕëĺíű"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:482
msgid "You can't select/unselect this package"
-msgstr "Âű íĺ ěîćŕöĺ âűäç˙ëiöü/ŕäě˙íiöü âűäç˙ëĺííĺ ăýňŕăŕ ďŕęĺňŕ"
+msgstr "Âű íĺ ěîćŕöĺ âűëó÷ŕöü ł ŕäě˙í˙öü âűëó÷ýííĺ ăýňŕăŕ ďŕęĺňó"
-#: ../../install_steps_gtk.pm_.c:416
+#: ../../install_steps_gtk.pm_.c:501
msgid "This is a mandatory package, it can't be unselected"
-msgstr "Ăýňŕ ŕáŕâ˙çęîâű ďŕęĺň, ˙ăî âűäç˙ëĺííĺ íĺëüăŕ ŕäě˙íiöü"
+msgstr "Ăýňŕ ŕáŕâ˙çęîâű ďŕęĺň, ˙ăî âűëó÷ýííĺ íĺëüăŕ ŕäě˙íiöü"
-#: ../../install_steps_gtk.pm_.c:418
+#: ../../install_steps_gtk.pm_.c:503
msgid "You can't unselect this package. It is already installed"
-msgstr "Âű íĺ ěîćŕöĺ ŕäě˙íiöü âűäç˙ëĺííĺ ăýňŕăŕ ďŕęĺňŕ. ¨í óćî ˘ńňŕë˙âŕíű"
+msgstr "Âű íĺ ěîćŕöĺ ŕäě˙íiöü âűëó÷ýííĺ ăýňŕăŕ ďŕęĺňó. ¨í óćî ˘ńňŕë˙âŕíű"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:507
msgid ""
"This package must be upgraded\n"
"Are you sure you want to deselect it?"
msgstr ""
"Ăýňű ďŕęĺň ďŕâiíĺí áűöü ŕáíî˘ëĺíű\n"
-"Âű ˘ďý˘íĺíű, řňî őî÷ŕöĺ ŕäě˙íiöü âűäç˙ëĺííĺ?"
+"Âű ˘ďý˘íĺíű, řňî őî÷ŕöĺ ŕäě˙íiöü âűëó÷ýííĺ?"
-#: ../../install_steps_gtk.pm_.c:425
+#: ../../install_steps_gtk.pm_.c:510
msgid "You can't unselect this package. It must be upgraded"
-msgstr "Âű íĺ ěîćŕöĺ ŕäě˙íiöü âűäç˙ëĺííĺ ăýňŕăŕ ďŕęĺňŕ. ßăî ďŕňđýáíŕ ŕáíŕâiöü"
+msgstr "Âű íĺ ěîćŕöĺ ŕäě˙íiöü âűëó÷ýííĺ ăýňŕăŕ ďŕęĺňó. ßăî ďŕňđýáíŕ ŕáíŕâiöü"
-#: ../../install_steps_gtk.pm_.c:469
+#: ../../install_steps_gtk.pm_.c:563
msgid "Estimating"
msgstr "×ŕęŕĺööŕ"
-#: ../../install_steps_gtk.pm_.c:481 ../../interactive.pm_.c:86
-#: ../../interactive.pm_.c:249 ../../interactive_newt.pm_.c:51
-#: ../../interactive_newt.pm_.c:99 ../../interactive_stdio.pm_.c:27
-#: ../../my_gtk.pm_.c:246 ../../my_gtk.pm_.c:486
-msgid "Cancel"
-msgstr "Ŕäěĺíŕ"
+#: ../../install_steps_gtk.pm_.c:582
+#, fuzzy
+msgid "Please wait, preparing installation"
+msgstr "Ďŕäđűőňî˘ęŕ ˘ńňŕë˙âŕíüí˙"
-#: ../../install_steps_gtk.pm_.c:495
+#: ../../install_steps_gtk.pm_.c:613
#, c-format
msgid "%d packages"
msgstr "%d ďŕęĺňŕ˘"
-#: ../../install_steps_gtk.pm_.c:531
+#: ../../install_steps_gtk.pm_.c:652
msgid ""
"\n"
"Warning\n"
@@ -3437,11 +4112,15 @@ msgid ""
"copyright laws applicable to software programs.\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+#: ../../install_steps_gtk.pm_.c:680 ../../install_steps_interactive.pm_.c:163
msgid "Accept"
msgstr "Ďđűí˙öü"
-#: ../../install_steps_gtk.pm_.c:559
+#: ../../install_steps_gtk.pm_.c:680 ../../install_steps_interactive.pm_.c:163
+msgid "Refuse"
+msgstr "Ŕäęŕçŕöü"
+
+#: ../../install_steps_gtk.pm_.c:681
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -3452,31 +4131,37 @@ msgid ""
msgstr ""
"Çě˙íiöĺ âŕř Cd-Rom!\n"
"\n"
-"Ęŕëi ëŕńęŕ, óńňŕ˘öĺ Cd-Rom, ďŕěĺ÷ŕíű \"%s\", ó âŕř äűńęŕâîä i íŕöińíiöĺ Oę "
+"Ęŕëi ëŕńęŕ, óńňŕ˘öĺ Cd-Rom, ďŕçíŕ÷ŕíű \"%s\", ó âŕř äűńęŕâîä i íŕöińíiöĺ Oę "
"ďŕńë˙.\n"
-"Ęŕëi âű íĺ ěŕĺöĺ ˙ăî, íŕöińíiöĺ Ŕäě˙íiöü, ęŕá ŕäě˙íiöü óńňŕ븢ęó ç ăýňŕăŕ Cd."
-
-#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
-msgid "Refuse"
-msgstr "Ŕäęŕçŕöü"
+"Ęŕëi âű íĺ ěŕĺöĺ ˙ăî, íŕöińíiöĺ Ŕäě˙íiöü, ęŕá ŕäě˙íiöü óńňŕë˙âŕííĺ ç ăýňŕăŕ "
+"Cd."
-#: ../../install_steps_gtk.pm_.c:573
+#: ../../install_steps_gtk.pm_.c:699
msgid "There was an error installing packages:"
msgstr "Ŕňđűěŕëŕń˙ ďŕěűëęŕ ˘ďŕđŕäęŕâŕíí˙ ďŕęĺňŕ˘:"
-#: ../../install_steps_interactive.pm_.c:38
+#: ../../install_steps_interactive.pm_.c:37
msgid "An error occurred"
msgstr "Ŕäáűëŕń˙ ďŕěűëęŕ"
-#: ../../install_steps_interactive.pm_.c:54
+#: ../../install_steps_interactive.pm_.c:55
msgid "Please, choose a language to use."
-msgstr "Ęŕëi ëŕńęŕ, âűá˙đűöĺ ěîâó äë˙ ęŕđűńňŕíí˙."
+msgstr "Ęŕëi ëŕńęŕ, ŕá˙đűöĺ ěîâó äë˙ ęŕđűńňŕíí˙."
-#: ../../install_steps_interactive.pm_.c:70
+#: ../../install_steps_interactive.pm_.c:56
+msgid "You can choose other languages that will be available after install"
+msgstr "Âű ěîćŕöĺ ŕáđŕöü łířű˙ ěîâű, ˙ęi˙ áóäóöü äŕńňóďíű ďŕńë˙ ˘ńňŕë˙âŕíí˙"
+
+#: ../../install_steps_interactive.pm_.c:68
+#: ../../install_steps_interactive.pm_.c:613
+msgid "All"
+msgstr "Óń¸"
+
+#: ../../install_steps_interactive.pm_.c:86
msgid "License agreement"
-msgstr ""
+msgstr "Ëłöýíçłéíŕ˙ äŕěîâŕ"
-#: ../../install_steps_interactive.pm_.c:71
+#: ../../install_steps_interactive.pm_.c:87
msgid ""
"Introduction\n"
"\n"
@@ -3597,135 +4282,105 @@ msgid ""
"For any question on this document, please contact MandrakeSoft S.A. \n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:154
-#: ../../standalone/keyboarddrake_.c:21
+#: ../../install_steps_interactive.pm_.c:182
+#: ../../install_steps_interactive.pm_.c:822
+#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Ęëŕâi˙ňóđŕ"
-#: ../../install_steps_interactive.pm_.c:155
-#: ../../standalone/keyboarddrake_.c:22
+#: ../../install_steps_interactive.pm_.c:183
+#: ../../standalone/keyboarddrake_.c:29
msgid "Please, choose your keyboard layout."
-msgstr "Ęŕëi ëŕńęŕ, âűá˙đűöĺ ňűď ęëŕâi˙ňóđű."
+msgstr "Ęŕëi ëŕńęŕ, ŕá˙đűöĺ ňűď ęëŕâi˙ňóđű."
-#: ../../install_steps_interactive.pm_.c:166
-msgid "You can choose other languages that will be available after install"
-msgstr "Âű ěîćŕöĺ âűáđŕöü äđóăi˙ ěîâű, ˙ęi˙ áóäóöü äŕńňóďíű ďŕńë˙ ˘ńňŕ븢ęi"
-
-#: ../../install_steps_interactive.pm_.c:173
-#: ../../install_steps_interactive.pm_.c:520
-msgid "All"
+#: ../../install_steps_interactive.pm_.c:184
+msgid "Here is the full list of keyboards available"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:181
-#: ../../install_steps_interactive.pm_.c:227
+#: ../../install_steps_interactive.pm_.c:201
msgid "Install Class"
-msgstr "Ęëŕń Óńňŕ븢ęi"
+msgstr "Ęëŕń Óńňŕë˙âŕíí˙"
-#: ../../install_steps_interactive.pm_.c:181
+#: ../../install_steps_interactive.pm_.c:201
msgid "Which installation class do you want?"
-msgstr "ßęi ęëŕń óńňŕ븢ęi âű ćŕäŕĺöĺ?"
+msgstr "ßęi ęëŕń óńňŕë˙âŕíí˙ âű ćŕäŕĺöĺ?"
-#: ../../install_steps_interactive.pm_.c:183
+#: ../../install_steps_interactive.pm_.c:203
#, fuzzy
msgid "Install/Update"
-msgstr "Óńňŕ븢ęŕ/Ŕáíŕ˘ëĺííĺ"
+msgstr "Óńňŕ븢ęŕ"
-#: ../../install_steps_interactive.pm_.c:183
+#: ../../install_steps_interactive.pm_.c:203
#, fuzzy
msgid "Is this an install or an update?"
-msgstr "Ăýňŕ ˘ńňŕ븢ęŕ öi âűđŕňŕâŕííĺ?"
+msgstr "Ŕá˙đűöĺ ˘ńňŕë˙âŕííĺ öi ŕáíŕ˘ëĺííĺ"
-#: ../../install_steps_interactive.pm_.c:192
+#: ../../install_steps_interactive.pm_.c:212
msgid "Recommended"
-msgstr "Đýęŕěĺíäóĺööŕ"
+msgstr "Đýęŕěĺíäŕâŕíŕ"
-#: ../../install_steps_interactive.pm_.c:195
-#: ../../install_steps_interactive.pm_.c:211
-msgid "Customized"
-msgstr "Ďŕ âűáŕđó"
-
-#: ../../install_steps_interactive.pm_.c:196
-#: ../../install_steps_interactive.pm_.c:211
+#: ../../install_steps_interactive.pm_.c:215
+#: ../../install_steps_interactive.pm_.c:218
msgid "Expert"
msgstr "Ýęńďĺđň"
-#: ../../install_steps_interactive.pm_.c:206
-msgid ""
-"Are you sure you are an expert? \n"
-"You will be allowed to make powerful but dangerous things here.\n"
-"\n"
-"You will be asked questions such as: ``Use shadow file for passwords?'',\n"
-"are you ready to answer that kind of questions?"
-msgstr ""
-"Âű ˘ďý˘íĺíű, řňî çěîćŕöĺ ďđŕö˙ăíóöü ďđŕöýń óńňŕë˙âŕíí˙ ˙ę ýęńďĺđň?\n"
-"Ó ăýňűě âűďŕäęó Âű áóäçĺöĺ ěĺöü áîëüřű ęŕíňđîëü íŕä ďđŕöýńŕě óńňŕë˙âŕíí˙,\n"
-"ŕëĺ âűíięi ďŕěűëęi ěîăóöü áűöü ôŕňŕëüíű˙.\n"
-"\n"
-"Âŕě áóäóöü çŕäŕäçĺíű, íŕďđűęëŕä, ňŕęi˙ ďűňŕííi: ``Öi âűęŕđűńňî˘âŕöü öĺí˙âű\n"
-"ôŕéë ďŕđîë˙˘?'' Öi ďŕäđűőňŕâŕíű âű äŕ ŕäęŕçó íŕ ăýňű˙ ďűňŕííi?"
-
-#: ../../install_steps_interactive.pm_.c:216
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:226
msgid "Update"
-msgstr "Ŕáíŕ˘ëĺííĺ"
-
-#: ../../install_steps_interactive.pm_.c:222
-msgid "Workstation"
-msgstr "Çâű÷ŕéíű"
-
-#: ../../install_steps_interactive.pm_.c:223
-msgid "Development"
-msgstr "Äë˙ đŕńďđŕöî˘ęi"
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Server"
-msgstr "Ńĺđâĺđ"
-
-#: ../../install_steps_interactive.pm_.c:228
-msgid "What is your system used for?"
-msgstr "Äçĺë˙ ÷ŕăî Âű áóäçĺöĺ âűęŕđűńňî˘âŕöü ńłńňýěó?"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:244 ../../standalone/mousedrake_.c:24
+#: ../../install_steps_interactive.pm_.c:238 ../../standalone/mousedrake_.c:31
msgid "Please, choose the type of your mouse."
-msgstr "ęŕëi ëŕńęŕ, ďŕçíŕ÷öĺ ňűď âŕřŕé ěűři."
+msgstr "ęŕëi ëŕńęŕ, ďŕçíŕ÷öĺ ňűď âŕřŕé ěűřű."
-#: ../../install_steps_interactive.pm_.c:251 ../../standalone/mousedrake_.c:40
+#: ../../install_steps_interactive.pm_.c:244 ../../standalone/mousedrake_.c:46
msgid "Mouse Port"
-msgstr "Ďîđň ěűři"
+msgstr "Ďîđň ěűřű"
-#: ../../install_steps_interactive.pm_.c:252
+#: ../../install_steps_interactive.pm_.c:245 ../../standalone/mousedrake_.c:47
msgid "Please choose on which serial port your mouse is connected to."
-msgstr "Ęŕëi ëŕńęŕ, ďŕçíŕ÷öĺ ďîńë˙äî˘íű ďîđň, äŕ ˙ęîăŕ äŕëó÷ŕíŕ âŕřŕ ěűř."
+msgstr "Ęŕëi ëŕńęŕ, ďŕçíŕ÷öĺ ďîńë˙äî˘íű ďîđň, äŕ ˙ęîăŕ ďŕäęëţ÷ŕíŕ âŕřŕ˙ ěűř."
-#: ../../install_steps_interactive.pm_.c:271
+#: ../../install_steps_interactive.pm_.c:253
+msgid "Buttons emulation"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:255
+msgid "Button 2 Emulation"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:256
+msgid "Button 3 Emulation"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:275
msgid "Configuring PCMCIA cards..."
msgstr "Íŕńňđîéęŕ ęŕđň PCMCIA ..."
-#: ../../install_steps_interactive.pm_.c:271
+#: ../../install_steps_interactive.pm_.c:275
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:275
+#: ../../install_steps_interactive.pm_.c:280
msgid "Configuring IDE"
msgstr "Íŕńňđîéęŕ IDE"
-#: ../../install_steps_interactive.pm_.c:275
+#: ../../install_steps_interactive.pm_.c:280
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:288
+#: ../../install_steps_interactive.pm_.c:295
msgid "no available partitions"
msgstr "í˙ěŕ äŕńňóďíűő đŕçäçĺëŕ˘"
-#: ../../install_steps_interactive.pm_.c:291
+#: ../../install_steps_interactive.pm_.c:298
msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:299
+#: ../../install_steps_interactive.pm_.c:306
msgid "Choose the mount points"
-msgstr "Âűá˙đűöĺ ďóíęňű ěŕíöiđŕâŕíí˙"
+msgstr "Ŕá˙đűöĺ ďóíęňű ěŕíöiđŕâŕíí˙"
-#: ../../install_steps_interactive.pm_.c:316
+#: ../../install_steps_interactive.pm_.c:323
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -3735,7 +4390,7 @@ msgid ""
"\n"
"Do you agree to loose all the partitions?\n"
msgstr ""
-"Ňŕáëiöŕ đŕçäçĺëࢠíĺ ÷űňŕĺööŕ, ˙íŕ çŕíŕäňŕ ńďîđ÷ŕíŕ äë˙ ěĺí˙ :(\n"
+"Ňŕáëiöŕ đŕçäçĺëࢠíĺ ÷űňŕĺööŕ, ˙íŕ çŕíŕäňŕ ńŕďńŕâŕíŕ˙ äë˙ ěĺí˙ :(\n"
"Ďŕńďđŕáóţ ińöi äŕëĺé i áóäó ďđŕďóńęŕöü äđýííű˙ đŕçäçĺëű (Óńĺ ÄŔÄĹÇĹÍŰß\n"
"áóäóöü ńňđŕ÷ŕíű!). Iířŕĺ đŕřýííĺ íĺ äŕçâîëiöü DrakX çě˙íiöü ňŕáëiöó "
"đŕçäçĺëŕ˘.\n"
@@ -3743,121 +4398,114 @@ msgstr ""
"\n"
"Öi ćŕäŕĺöĺ ńňđŕöiöü óńĺ đŕçäçĺëű?\n"
-#: ../../install_steps_interactive.pm_.c:329
+#: ../../install_steps_interactive.pm_.c:336
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
msgstr ""
"DiskDrake íĺ çěîă ďđŕâiëüíŕ ďđŕ÷űňŕöü ňŕáëiöó đŕäçĺëŕ˘.\n"
-"Ďđŕö˙ăâŕéöĺ ňîëüęi íŕ ńâîé ńňđŕő i đűçűęó!"
+"Ďđŕö˙ăâŕéöĺ ňîëüęi íŕ ńâŕţ đűçűęó!"
-#: ../../install_steps_interactive.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:361
msgid "Root Partition"
msgstr "Ęŕđŕí¸âű đŕçäçĺë"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:362
msgid "What is the root partition (/) of your system?"
msgstr "ßęi đŕäçĺë ęŕđŕí¸âű (/) äë˙ âŕřŕé ńińňýěű?"
-#: ../../install_steps_interactive.pm_.c:352
+#: ../../install_steps_interactive.pm_.c:376
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Ęŕá ěŕäűôięŕöű˙ ňŕáëiöű đŕçäçĺëࢠçäĺéńíiëŕń˙, ďŕňđýáíŕ ďĺđŕçŕăđóçęŕ."
-#: ../../install_steps_interactive.pm_.c:376
+#: ../../install_steps_interactive.pm_.c:403
msgid "Choose the partitions you want to format"
-msgstr "Âűáŕđ đŕçäçĺëࢠäë˙ ôŕđěŕöiđŕâŕíí˙"
+msgstr "Âűáŕđ đŕçäçĺëࢠäë˙ ôŕđěŕňŕâŕíí˙"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:404
msgid "Check bad blocks?"
msgstr "Ďđŕâĺđűöü íŕ íŕ˙˘íŕńöü äđýííűő áëîęŕ˘?"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:427
msgid "Formatting partitions"
-msgstr "Ôŕđěŕöiđŕâŕííĺ đŕçäçĺëŕ˘"
+msgstr "Ôŕđěŕňŕâŕíí˙ đŕçäçĺëŕ˘"
-#: ../../install_steps_interactive.pm_.c:401
+#: ../../install_steps_interactive.pm_.c:429
#, c-format
msgid "Creating and formatting file %s"
-msgstr "Ńňâŕđýííĺ i ôŕđěŕöiđŕâŕííĺ ôŕéëŕ %s"
+msgstr "Ńňâŕđýííĺ i ôŕđěŕňŕâŕííĺ ôŕéëŕ %s"
-#: ../../install_steps_interactive.pm_.c:404
+#: ../../install_steps_interactive.pm_.c:432
msgid "Not enough swap to fulfill installation, please add some"
-msgstr "Íĺ őŕďŕĺ ěĺńöŕ ˘ áóôĺđű ďŕäęŕ÷ęi (swap) äë˙ ˘ńňŕ븢ęi, ďŕâ˙ëi÷öĺ ˙ăî."
+msgstr ""
+"Íĺ őŕďŕĺ ěĺńöŕ ˘ áóôĺđű ďŕäęŕ÷ęi (swap) äë˙ ˘ńňŕë˙âŕíí˙, ďŕâ˙ëi÷öĺ ˙ăî."
-#: ../../install_steps_interactive.pm_.c:410
+#: ../../install_steps_interactive.pm_.c:438
msgid "Looking for available packages"
msgstr "Ďđŕăë˙ä äŕńňóďíűő ďŕęĺňŕ˘"
-#: ../../install_steps_interactive.pm_.c:416
+#: ../../install_steps_interactive.pm_.c:444
msgid "Finding packages to upgrade"
-msgstr "Ďîřóę ďŕęĺňࢠäë˙ ŕäíŕ˘ëĺíí˙"
+msgstr "Ďîřóę ďŕęĺňࢠäë˙ ŕáíŕ˘ëĺíí˙"
-#: ../../install_steps_interactive.pm_.c:433
+#: ../../install_steps_interactive.pm_.c:461
#, c-format
msgid ""
"Your system has not enough space left for installation or upgrade (%d > %d)"
msgstr ""
-"Âŕřŕ ńińňýěŕ íĺ ěŕĺ äŕńňŕęîâŕ ěĺńöŕ äë˙ ˘ńňŕ븢ęi öi ŕäíŕ˘ëĺíí˙ (%d > %d)"
+"Âŕřŕ ńińňýěŕ íĺ ěŕĺ äŕńňŕęîâŕ ěĺńöŕ äë˙ ˘ńňŕë˙âŕíí˙ öi ŕáíŕ˘ëĺíí˙ (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:449
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid "Complete (%dMB)"
msgstr "Ďî˘íű (%dMá)"
-#: ../../install_steps_interactive.pm_.c:449
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid "Minimum (%dMB)"
msgstr "Ěiíiěŕëüíű (%dMá)"
-#: ../../install_steps_interactive.pm_.c:449
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid "Recommended (%dMB)"
-msgstr "Đýęŕěĺíäóĺööŕ (%dĚá)"
+msgstr "Đýęŕěĺíäŕâŕíŕ (%dĚá)"
-#: ../../install_steps_interactive.pm_.c:455
+#: ../../install_steps_interactive.pm_.c:486
msgid "Custom"
msgstr "Ďŕ âűáŕđó"
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Select the size you want to install"
-msgstr "Âűá˙đűöĺ ďŕćŕäŕíű ďŕěĺđ óńňŕ븢ęi"
-
-#: ../../install_steps_interactive.pm_.c:508
-msgid "Package Group Selection"
-msgstr "Âűáŕđ ăđóďű ďŕęĺňŕ˘"
-
-#: ../../install_steps_interactive.pm_.c:521
-msgid "Individual package selection"
-msgstr "Ŕńŕáińňű âűáŕđ ďŕęĺňŕ˘"
+#: ../../install_steps_interactive.pm_.c:585
+msgid "Selected size is larger than available space"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:570
+#: ../../install_steps_interactive.pm_.c:650
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
"If only some CDs are missing, unselect them, then click Ok."
msgstr ""
"Ęŕëi âű ěŕĺöĺ ˘ńĺ CD äűńęi ńŕ ńďińŕ íićýé, íŕöińíiöĺ Îę.\n"
-"Ęŕëi âű íĺ ěŕĺöĺ íi ŕäíîăî ç ăýňűő CD äűńęŕ˘, íŕöińíiöĺ Ŕäě˙íiöü.\n"
+"Ęŕëi âű íĺ ěŕĺöĺ ŕíi âîäíŕăŕ ç ăýňűő CD äűńęŕ˘, íŕöińíiöĺ Ŕäě˙íiöü.\n"
"Ęŕëi íĺęŕňîđűő ç CD äűńęࢠíĺ ěŕĺöĺ, ŕäě˙íiöĺ iő âűäç˙ëĺííĺ i íŕöińíiöĺ Îę."
-#: ../../install_steps_interactive.pm_.c:575
+#: ../../install_steps_interactive.pm_.c:655
#, c-format
msgid "Cd-Rom labeled \"%s\""
-msgstr "Cd-Rom ďŕěĺ÷ŕíű \"%s\""
+msgstr "Cd-Rom ďŕçíŕ÷ŕíű \"%s\""
-#: ../../install_steps_interactive.pm_.c:603
+#: ../../install_steps_interactive.pm_.c:684
msgid ""
"Installing package %s\n"
"%d%%"
msgstr ""
-"Óńňŕ븢ęŕ ďŕęĺňŕ %s\n"
+"Óńňŕë˙âŕííĺ ďŕęĺňó %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:612
+#: ../../install_steps_interactive.pm_.c:693
msgid "Post-install configuration"
-msgstr "Íŕńňđîéęŕ ďŕńë˙ ˘ńňŕíî˘ęi"
+msgstr "Íŕńňđîéęŕ ďŕńë˙ ˘ńňŕë˙âŕíí˙"
-#: ../../install_steps_interactive.pm_.c:637
+#: ../../install_steps_interactive.pm_.c:718
msgid ""
"You have now the possibility to download software aimed for encryption.\n"
"\n"
@@ -3899,25 +4547,24 @@ msgstr ""
"\n"
"ÓÂŔĂŔ:\n"
"\n"
-"Ç-çŕ ŕăóëüíűő ŕáěĺćŕâŕíí˙˘ íŕ ďđŕăđŕěű ăýňŕăŕ đîäó i đîçíűő ďŕí˙öö˙˘\n"
+"Ç-çŕ ŕăóëüíűő ŕáěĺćŕâŕíí˙˘ íŕ ďđŕăđŕěű ăýňęŕăŕ đîäó i đîçíűő ďŕí˙öö˙˘\n"
"ó đîçíűő çŕęîíŕäŕ˘ńňâŕő, ďđŕäŕâĺö i/ŕëüáî ęŕđűńňŕëüíię ăýňűő ďđŕăđŕě "
"ďŕâiíĺí\n"
-"óäŕńęŕíŕëiööŕ ˘ ňűě, řňî çŕęîíű ˙ăî/iő ńňđŕí äŕçâŕë˙ţöü çŕăđóćŕöü, "
+"óďý˘íiööŕ ˘ ňűě, řňî çŕęîíű ˙ăî/iő äç˙đćŕâࢠäŕçâŕë˙ţöü çŕăđóćŕöü, "
"çŕőî˘âŕöü\n"
"i/ŕëüáî âűęŕđűńňî˘âŕöü ăýňű˙ ďđŕăđŕěű.\n"
"\n"
-"Ŕęđŕě˙ ňŕăî, ďđŕäŕâĺö i/ŕëüáî ęŕđűńňŕëüíię ďŕâiííű áűöü óďĺý˘íĺíű, řňî íĺ "
+"Ŕęđŕě˙ ňŕăî, ďđŕäŕâĺö i/ŕëüáî ęŕđűńňŕëüíię ďŕâiííű áűöü óďý˘íĺíű, řňî íĺ "
"ďŕđóřŕţöü\n"
"çŕęîíࢠńâŕ¸é ęđŕiíű. Ęŕëi ďđŕäŕâĺö i/ŕëüáî ęŕđűńňŕëüíię ďŕđóřŕĺ ăýňű˙\n"
-"çŕęîíű, ˙ęi˙ ěîăóöü áűöü ďđűěĺíĺíű ńóďđîöi˘ ˙ăî, ¸í/˙íű í˙ńĺ ńóđîâóţ "
-"ŕäęŕçíŕńöü.\n"
+"çŕęîíű, ˙ęi˙ ěîăóöü áűöü ńęŕđűńňŕíű˙ ńóďđŕöü ˙ăî, ¸í/˙íű í˙ńĺ ŕäęŕçíŕńöü\n"
"\n"
"Íi ˘ ˙ęiě đŕçĺ íi Mandrakesoft, íi ˙ĺ âűęŕíŕ˘öű i ďŕńňŕ˘ř÷űęi íĺ ŕäęŕçâŕţöü\n"
"çŕ íĺďŕńđýäíóţ, íĺďđŕěóţ ŕëüáî âűďŕäęîâóţ řęîäó (řňî óęëţ÷ŕĺ, ŕëĺ \n"
-"íĺ ŕáě˙ćî˘âŕĺööŕ ńňđŕ÷ŕííŕé ďđűáűëëţ, ďŕđóřýííĺ áiçíýńó, ńňđŕňŕé ęŕěĺđöűéíűő "
-"\n"
+"íĺ ŕáě˙ćî˘âŕĺööŕ ńňđŕ÷ŕíűěł ďđűáűňęŕě, ďŕđóřýííĺ áiçíýńó, ńňđŕňŕé "
+"ęŕěĺđöűéíűő \n"
"äŕäçĺíűő i iířűěi ńňđŕňŕěi, ŕ ňŕęńŕěŕ ěŕă÷űěűěi ńŕíęöű˙ěi i řňđŕôŕěi, ˙ęi˙ \n"
-"íŕëĺćűöü âűďëŕöiöü ďŕ ďŕńňŕíîâĺ ńóäŕ), ˙ęi˙ âűň˙ęŕţöü ç ńęŕđűńňŕíí˙, \n"
+"íŕëĺćűöü âűďëŕöiöü ďŕ ďŕńňŕíîâĺ ńóäó), ˙ęi˙ âűö˙ęŕţöü ç ęŕđűńňŕíí˙, \n"
"âŕëîäŕíí˙, ŕëüáî ďđîńňŕ çŕăđóçęi ç ńĺňęi ďđŕăđŕě, äŕ ˙ęiő ďđŕäŕâĺö ŕëüáî\n"
"ęŕđűńňŕëüíię ŕňđűěŕëi äîńňóď ďŕńë˙ ďŕäďińŕíí˙ ăýňŕăŕ ďŕăŕäíĺíí˙.\n"
"\n"
@@ -3936,145 +4583,98 @@ msgstr ""
"75002 Paris\n"
"FRANCE"
-#: ../../install_steps_interactive.pm_.c:669
+#: ../../install_steps_interactive.pm_.c:750
msgid "Choose a mirror from which to get the packages"
-msgstr "Âűáŕđ ëţńňýđęŕ äë˙ ŕňđűěŕíí˙ ďŕęĺňŕ˘"
+msgstr "Âűáŕđ ëţńňđŕ äë˙ ŕňđűěŕíí˙ ďŕęĺňŕ˘"
-#: ../../install_steps_interactive.pm_.c:680
+#: ../../install_steps_interactive.pm_.c:761
msgid "Contacting the mirror to get the list of available packages"
-msgstr "Ńóâ˙çü ç ëţńňýđęŕě äë˙ ŕňđűěŕíí˙ ńďińŕ äŕńňóďíűő ďŕęĺňŕ˘"
+msgstr "Ńóâ˙çü ç ëţđŕě äë˙ ŕňđűěŕíí˙ ńďińó äŕńňóďíűő ďŕęĺňŕ˘"
-#: ../../install_steps_interactive.pm_.c:683
+#: ../../install_steps_interactive.pm_.c:764
msgid "Please choose the packages you want to install."
-msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕ븢ęi"
+msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
-#: ../../install_steps_interactive.pm_.c:695
+#: ../../install_steps_interactive.pm_.c:776
msgid "Which is your timezone?"
msgstr "ßęi âŕř ÷ŕńŕâű ďî˙ń?"
-#: ../../install_steps_interactive.pm_.c:697
+#: ../../install_steps_interactive.pm_.c:778
msgid "Is your hardware clock set to GMT?"
msgstr "Âŕř ńińňýěíű ăŕäçiííię óńňŕë˙âŕíű íŕ GMT?"
-#: ../../install_steps_interactive.pm_.c:735
-msgid "Which printing system do you want to use?"
-msgstr "ßęóţ ńińňýěó äđóęŕâŕíí˙ Âű ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü?"
+#: ../../install_steps_interactive.pm_.c:806 ../../printer.pm_.c:22
+#: ../../printerdrake.pm_.c:415
+msgid "Remote CUPS server"
+msgstr "Ŕääŕëĺíű ńĺđâĺđ CUPS"
-#: ../../install_steps_interactive.pm_.c:762
-msgid "No password"
-msgstr "Í˙ěŕ ďŕđîë˙"
+#: ../../install_steps_interactive.pm_.c:807
+#, fuzzy
+msgid "No printer"
+msgstr "Iě˙ äđóęŕđęi"
+
+#: ../../install_steps_interactive.pm_.c:821
+#, fuzzy
+msgid "Mouse"
+msgstr "Ďîđň ěűřű"
+
+#: ../../install_steps_interactive.pm_.c:823
+msgid "Timezone"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:824 ../../printerdrake.pm_.c:344
+msgid "Printer"
+msgstr "Ďđűíňýđ"
-#: ../../install_steps_interactive.pm_.c:767
-msgid "Use shadow file"
-msgstr "Ńęŕđűńňî˘âŕöü öĺí˙âű ôŕéë"
+#: ../../install_steps_interactive.pm_.c:826
+#, fuzzy
+msgid "ISDN card"
+msgstr "Óíóňđŕíŕ˙ ISDN ęŕđňŕ"
-#: ../../install_steps_interactive.pm_.c:767
-msgid "shadow"
-msgstr "öĺíü"
+#: ../../install_steps_interactive.pm_.c:829
+#, fuzzy
+msgid "Sound card"
+msgstr "Ńňŕíäŕđňíű"
-#: ../../install_steps_interactive.pm_.c:768
-msgid "MD5"
-msgstr "MD5"
+#: ../../install_steps_interactive.pm_.c:832
+msgid "TV card"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:768
-msgid "Use MD5 passwords"
-msgstr "Ńęŕđűńňî˘âŕöü ďŕđîëi MD5"
+#: ../../install_steps_interactive.pm_.c:862
+msgid "Which printing system do you want to use?"
+msgstr "ßęóţ ńińňýěó äđóęó Âű ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü?"
-#: ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:896
+msgid "No password"
+msgstr "Í˙ěŕ ďŕđîëţ"
+
+#: ../../install_steps_interactive.pm_.c:901
+#, c-format
+msgid "This password is too simple (must be at least %d characters long)"
+msgstr ""
+"Ăýňű ďŕđîëü çŕíŕäňŕ ďđîńňű (˙ăî äŕ˘ćűí˙ ďŕâiííŕ áűöü íĺ ěĺíĺé çŕ %d ëiňŕđŕ˘)"
+
+#: ../../install_steps_interactive.pm_.c:907
msgid "Use NIS"
-msgstr "Ńęŕđűńňî˘âŕöü NIS"
+msgstr "Âűęŕđűńňî˘âŕöü NIS"
-#: ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:907
msgid "yellow pages"
msgstr "ćî˘ňű˙ ńňŕđîíęi"
-#: ../../install_steps_interactive.pm_.c:776
-#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
-msgstr "Ăýňű ďŕđîëü çŕíŕäňŕ ďđîńňű (˙ăî äŕ˘ćűí˙ ďŕâiííŕ áűöü íĺ ěĺíř %d ëiňŕđ)"
-
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:912
msgid "Authentification NIS"
msgstr "Ŕ˘ňýíňűôięŕöű˙ NIS"
-#: ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_interactive.pm_.c:913
msgid "NIS Domain"
msgstr "NIS Domain"
-#: ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_interactive.pm_.c:914
msgid "NIS Server"
msgstr "NIS ńĺđâĺđ:"
-#: ../../install_steps_interactive.pm_.c:809
-#: ../../standalone/adduserdrake_.c:36
-msgid "Accept user"
-msgstr "Ďđűí˙öü ęŕđűńňŕëüíięŕ"
-
-#: ../../install_steps_interactive.pm_.c:809
-#: ../../standalone/adduserdrake_.c:36
-msgid "Add user"
-msgstr "Äŕäŕöü ęŕđűńňŕëüíięŕ"
-
-#: ../../install_steps_interactive.pm_.c:810
-#: ../../standalone/adduserdrake_.c:37
-#, c-format
-msgid "(already added %s)"
-msgstr "(óćî äŕäŕäçĺíŕ %s)"
-
-#: ../../install_steps_interactive.pm_.c:810
-#: ../../standalone/adduserdrake_.c:37
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Óâ˙äçiöĺ iě˙ ęŕđűńňŕëüíięŕ\n"
-"%s"
-
-#: ../../install_steps_interactive.pm_.c:812
-#: ../../standalone/adduserdrake_.c:39
-msgid "Real name"
-msgstr "Óëŕńíŕĺ iě˙"
-
-#: ../../install_steps_interactive.pm_.c:813 ../../printerdrake.pm_.c:93
-#: ../../printerdrake.pm_.c:127 ../../standalone/adduserdrake_.c:40
-msgid "User name"
-msgstr "Iě˙ ęŕđűńňŕëüíięŕ:"
-
-#: ../../install_steps_interactive.pm_.c:818
-#: ../../standalone/adduserdrake_.c:45
-msgid "Shell"
-msgstr "Ŕáŕëîíęŕ:"
-
-#: ../../install_steps_interactive.pm_.c:820
-#: ../../standalone/adduserdrake_.c:47
-msgid "Icon"
-msgstr "Ďięňŕăđŕěŕ"
-
-#: ../../install_steps_interactive.pm_.c:830
-#: ../../standalone/adduserdrake_.c:57
-msgid "This password is too simple"
-msgstr "Ăýňű ďŕđîëü çŕíŕäňŕ ďđîńňű"
-
-#: ../../install_steps_interactive.pm_.c:831
-#: ../../standalone/adduserdrake_.c:58
-msgid "Please give a user name"
-msgstr "Ęŕëi ëŕńęŕ, óâ˙äçiöĺ iě˙ ęŕđűńňŕëüíięŕ"
-
-#: ../../install_steps_interactive.pm_.c:832
-#: ../../standalone/adduserdrake_.c:59
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr ""
-"Iě˙ ęŕđűńňŕëüíięŕ ďŕâiííŕ çě˙ř÷ŕöü ëiňŕđű ňîëüęi íŕ íićíiě đýăińňđű, \n"
-"ëi÷áű, `-' i `_'"
-
-#: ../../install_steps_interactive.pm_.c:833
-#: ../../standalone/adduserdrake_.c:60
-msgid "This user name is already added"
-msgstr "Ăýňŕ iě˙ ęŕđűńňŕëüíięŕ ˘ćî äŕäŕäçĺíŕ"
-
-#: ../../install_steps_interactive.pm_.c:857
+#: ../../install_steps_interactive.pm_.c:948
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 "
@@ -4095,25 +4695,25 @@ msgstr ""
" ńňŕíäŕđňíŕăŕ çŕăđóç÷űęŕ. Ăýňŕ ěîćŕ áűöü ˙ęŕńíŕ, ęŕëi âű íĺ ćŕäŕĺöĺ \n"
"˘ńňŕ븢âŕöü SILO, ęŕëi iířŕ˙ ŕďĺđŕöűéíŕ˙ ńińňýěŕ âűäŕë˙ĺ SILO, öi SILO íĺ \n"
"ěîćŕ ďđŕöŕâŕöü ó âŕřŕé ęŕíôiăóđŕöűi. Çŕăđóçŕ÷íű äűńę ňŕęńŕěŕ ěîćŕ áűöü \n"
-"âűęŕđűńňŕí ńóěĺńíŕ ç đŕěîíňíŕé äűńęĺňŕé Linux Mandrake, ˙ęŕ˙ âĺëüěi \n"
+"âűęŕđűńňŕí ńóěĺńíŕ ç âűđŕňŕâŕëüíŕé äűńęĺňŕé Linux Mandrake, ˙ęŕ˙ âĺëüěi \n"
"ďŕëĺă÷űöü âűđŕňŕâŕííĺ ńińňýěű ďŕńë˙ çáîţ.\n"
"\n"
"Ęŕëi ćŕäŕĺöĺ ńňâŕđűöü çŕăđóçŕ÷íű äűńę çŕđŕç, óńňŕ˘öĺ äűńęĺňó ˘ ďĺđřű\n"
"äűńęŕâîä i íŕöińíiöĺ \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:873
+#: ../../install_steps_interactive.pm_.c:964
msgid "First floppy drive"
msgstr "Ďĺđřű äűńęŕâîä"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:965
msgid "Second floppy drive"
msgstr "Äđóăi äűńęŕâîä"
-#: ../../install_steps_interactive.pm_.c:875
+#: ../../install_steps_interactive.pm_.c:966
msgid "Skip"
msgstr "Ďđŕďóńöiöü"
-#: ../../install_steps_interactive.pm_.c:880
+#: ../../install_steps_interactive.pm_.c:971
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 "
@@ -4126,162 +4726,95 @@ msgid ""
"system\n"
"failures. Would you like to create a bootdisk for your system?"
msgstr ""
-"Ç äŕďŕěîăŕé çŕăđóçŕ÷íŕăŕ äűńęŕ âű çěîćŕöĺ çŕăđóćŕöü Linux ňŕęńŕěŕ ˙ę i \n"
+"Ç äŕďŕěîăŕé çŕăđóçŕ÷íŕăŕ äűńęó âű çěîćŕöĺ çŕăđóćŕöü Linux ňŕęńŕěŕ ˙ę i \n"
"ńňŕíäŕđňíűě çŕăđóç÷űęŕě. Ăýňŕ ěîćŕ áűöü ˙ęŕńíŕ, ęŕëi âű íĺ ćŕäŕĺöĺ \n"
"˘ńňŕ븢âŕöü LILO (öi Grub), ęŕëi iířŕ˙ ŕďĺđŕöűéíŕ˙ ńińňýěŕ âűäŕë˙ĺ LILO,\n"
"öi LILO íĺ ěîćŕ ďđŕöŕâŕöü ó âŕřŕé ęŕíôiăóđŕöűi. Çŕăđóçŕ÷íű äűńę ňŕęńŕěŕ "
"ěîćŕ\n"
-"áűöü âűęŕđűńňŕí ńóěĺńíŕ ç đŕěîíňíŕé äűńęĺňŕé Linux Mandrake, ˙ęŕ˙ âĺëüěi \n"
+"áűöü âűęŕđűńňŕíű ńóěĺńíŕ ç đŕěîíňíŕé äűńęĺňŕé Linux Mandrake, ˙ęŕ˙ âĺëüěi \n"
"ďŕëĺă÷űöü âűđŕňŕâŕííĺ ńińňýěű ďŕńë˙ çáîţ.\n"
"\n"
"Ćŕäŕĺöĺ ńňâŕđűöü çŕăđóçŕ÷íű äűńę çŕđŕç?"
-#: ../../install_steps_interactive.pm_.c:889
+#: ../../install_steps_interactive.pm_.c:980
msgid "Sorry, no floppy drive available"
msgstr "Âűáŕ÷ŕéöĺ, ŕëĺ äűńęŕâîä íĺäŕńňóďíű"
-#: ../../install_steps_interactive.pm_.c:892
+#: ../../install_steps_interactive.pm_.c:984
msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "Âűá˙đűöĺ äűńęŕâîä, ó ˙ęiě áóäçĺ ńňâŕđŕööŕ çŕăđóçŕ÷íŕ˙ äűńęĺňŕ"
+msgstr "Ŕá˙đűöĺ äűńęŕâîä, ó ˙ęiě áóäçĺ ńňâŕđŕööŕ çŕăđóçŕ÷íŕ˙ äűńęĺňŕ"
-#: ../../install_steps_interactive.pm_.c:898
+#: ../../install_steps_interactive.pm_.c:988
#, c-format
msgid "Insert a floppy in drive %s"
msgstr "Óńňŕ˘öĺ äűńęĺňó ˘ äűńęŕâîä %s"
-#: ../../install_steps_interactive.pm_.c:901
+#: ../../install_steps_interactive.pm_.c:991
msgid "Creating bootdisk"
msgstr "Ńňâŕđýííĺ çŕăđóçŕ÷íŕé äűńęĺňű"
-#: ../../install_steps_interactive.pm_.c:908
+#: ../../install_steps_interactive.pm_.c:998
msgid "Preparing bootloader"
msgstr "Ďŕäđűőňî˘ęŕ çŕăđóç÷űęŕ"
-#: ../../install_steps_interactive.pm_.c:917
+#: ../../install_steps_interactive.pm_.c:1007
msgid "Do you want to use aboot?"
msgstr "Âű ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü aboot?"
-#: ../../install_steps_interactive.pm_.c:920
+#: ../../install_steps_interactive.pm_.c:1010
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
-"Ďŕěűëęŕ ˘ńňŕ븢ęi aboot, \n"
-"ńďđŕáŕâŕöü óńňŕ븢âŕöü, íĺăëĺäç˙÷ű íŕ ěŕă÷űěŕńöü ďŕđóřýíí˙ ďĺđřŕăŕ đŕçäĺëŕ?"
+"Ďŕěűëęŕ ˘ńňŕë˙âŕíí˙ ŕboot, \n"
+"ńďđŕáŕâŕöü óńňŕ븢âŕöü, íĺăëĺäç˙÷ű íŕ ěŕă÷űěŕńöü ďŕđóřýíí˙ ďĺđřŕăŕ đŕçäĺëó?"
-#: ../../install_steps_interactive.pm_.c:929
+#: ../../install_steps_interactive.pm_.c:1019
msgid "Installation of bootloader failed. The following error occured:"
-msgstr "Ďđŕöýń óńňŕë˙âŕíí˙ çŕăđóç÷űęŕ íĺ ŕňđűěŕëń˙. Óçíięëŕ íŕńňóďíŕ˙ ďŕěűëęŕ:"
-
-#: ../../install_steps_interactive.pm_.c:943 ../../standalone/draksec_.c:20
-msgid "Welcome To Crackers"
-msgstr "Ńŕđäý÷íŕ çŕďđŕřŕĺě ó Crackers"
+msgstr "Ďđŕöýń óńňŕë˙âŕíí˙ çŕăđóç÷űęŕ íĺ ŕňđűěŕ˘ń˙. Óçíięëŕ íŕńňóďíŕ˙ ďŕěűëęŕ:"
-#: ../../install_steps_interactive.pm_.c:944 ../../standalone/draksec_.c:21
-msgid "Poor"
-msgstr "Çóńłě ńëŕáű"
+#: ../../install_steps_interactive.pm_.c:1027
+msgid ""
+"You may need to change your Open Firmware boot-device to\n"
+" enable the bootloader. If you don't see the bootloader prompt at\n"
+" reboot, hold down Command-Option-O-F at reboot and enter:\n"
+" setenv boot-device $of_boot,\\\\tbxi\n"
+" Then type: shut-down\n"
+"At your next boot you should see the bootloader prompt."
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:945 ../../standalone/draksec_.c:22
+#: ../../install_steps_interactive.pm_.c:1035 ../../standalone/draksec_.c:23
msgid "Low"
msgstr "Ńëŕáű"
-#: ../../install_steps_interactive.pm_.c:946 ../../standalone/draksec_.c:23
+#: ../../install_steps_interactive.pm_.c:1036 ../../standalone/draksec_.c:24
msgid "Medium"
msgstr "Ń˙đýäíi"
-#: ../../install_steps_interactive.pm_.c:947 ../../standalone/draksec_.c:24
+#: ../../install_steps_interactive.pm_.c:1037 ../../standalone/draksec_.c:25
msgid "High"
msgstr "Âűńîęi"
-#: ../../install_steps_interactive.pm_.c:948 ../../standalone/draksec_.c:25
-msgid "Paranoid"
-msgstr "Ďŕđŕíŕiäŕëüíű"
-
-#: ../../install_steps_interactive.pm_.c:962
-msgid "Miscellaneous questions"
-msgstr "Äŕäŕňęîâű˙ ďűňŕííi"
-
-#: ../../install_steps_interactive.pm_.c:963
-msgid "(may cause data corruption)"
-msgstr "(ěîćŕ âűçâŕöü çíiř÷ýííĺ äŕäçĺíűő)"
-
-#: ../../install_steps_interactive.pm_.c:963
-msgid "Use hard drive optimisations?"
-msgstr "Âűęŕđűńňî˘âŕöü ŕďňűěiçŕöűţ ćîđńňęŕăŕ äűńęŕ?"
-
-#: ../../install_steps_interactive.pm_.c:964 ../../standalone/draksec_.c:46
+#: ../../install_steps_interactive.pm_.c:1041 ../../standalone/draksec_.c:49
msgid "Choose security level"
msgstr "Óçđîâĺíü á˙ńďĺęi"
-#: ../../install_steps_interactive.pm_.c:965
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Ďŕçíŕ÷öĺ äŕęëŕäíű ďŕěĺđ RAM (çíîéäçĺíŕ %d Má)"
-
-#: ../../install_steps_interactive.pm_.c:967
-msgid "Removable media automounting"
-msgstr "Ŕ˘ňŕěŕíöiđŕâŕííĺ çěĺííűő íŕęŕďë˙ëüíięŕ˘"
-
-#: ../../install_steps_interactive.pm_.c:969
-msgid "Clean /tmp at each boot"
-msgstr "Ŕ÷űř÷ŕöü /tmp ďđű ęîćíŕé çŕăđóçöű"
-
-#: ../../install_steps_interactive.pm_.c:972
-msgid "Enable multi profiles"
-msgstr "Äŕńňóďíŕ řěŕň ďđîôië˙˘"
-
-#: ../../install_steps_interactive.pm_.c:974
-msgid "Enable num lock at startup"
-msgstr "Óęëţ÷ýííĺ num lock ďđű ńňŕđöĺ"
-
-#: ../../install_steps_interactive.pm_.c:977
-msgid "Give the ram size in MB"
-msgstr "Ďŕçíŕ÷öĺ ďŕěĺđ RAM ó Má"
-
-#: ../../install_steps_interactive.pm_.c:979
-msgid "Can't use supermount in high security level"
-msgstr "Íĺ ěŕăó âűęŕđűńňî˘âŕöü ěŕíöiđŕâŕííĺ ďđű âűńîęiě óçđî˘íi á˙ńďĺęi"
-
-#: ../../install_steps_interactive.pm_.c:981
-msgid ""
-"beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
-"If you want to be root, you have to login as a user and then use \"su\".\n"
-"More generally, do not expect to use your machine for anything but as a "
-"server.\n"
-"You have been warned."
-msgstr ""
-"Ŕńö˙đîăŕ: ĎĐŰ ÂŰŃÎĘIĚ ÓÇĐÎĄÍI ÁßŃĎĹĘI ĄÂŔŐÎÄ ßĘ ROOT Ç ĘŔÍŃÎËI ÍĹ "
-"ÄŔÇÂŔËßĹÖÖŔ!\n"
-"Ęŕëi âű ćŕäŕĺöĺ ˘âŕőîäçiöü ˙ę root, óâŕőîäçüöĺ ˙ę ęŕđűńňŕëüíię, çŕňűě \n"
-"âűęîíâŕéöĺ \"su\".Ó ňŕęiě âűďŕäęó, ěîćŕöĺ âűęŕđűńňî˘âŕöü ěŕřűíó íĺ äë˙ "
-"˘ń˙ăî,\n"
-"ŕ ňîëüęi ˙ę ńĺđâĺđ.\n"
-"Ěŕéöĺ íŕ ˘âŕçĺ, řňî âű áűëi ďŕď˙đýäćŕíű."
-
-#: ../../install_steps_interactive.pm_.c:986
-msgid ""
-"Be carefull, having numlock enabled causes a lot of keystrokes to\n"
-"give digits instead of normal letters (eg: pressing `p' gives `6')"
-msgstr ""
-"Áóäçüöĺ ˘âŕćëiâű, óęëţ÷ýííĺ NumLock ěîćŕ ďđűâĺńöi äŕ ďŕěűëęîâŕé\n"
-"ďđŕöű ęëŕâi˙ňóđű (íŕďđűęëŕä, íŕöińę íŕ `p' äŕĺ `6')."
-
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1074
msgid "Do you want to generate an auto install floppy for linux replication?"
msgstr ""
"Öi ćŕäŕĺöĺ âű ńňâŕđűöü ŕ˘ňŕ˘ńňŕë¸âŕ÷íű ôëîďi-äűńę äë˙ đĺďëięŕöűi linux?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1076
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Óńňŕ˘öĺ äűńęĺňó ˘ äűńęŕâîä %s"
-#: ../../install_steps_interactive.pm_.c:1049
-#: ../../install_steps_interactive.pm_.c:1079
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1122
msgid "Creating auto install floppy"
-msgstr "Ńňâŕđýííĺ äűńęĺňű äë˙ ˘ńňŕ븢ęi"
+msgstr "Ńňâŕđýííĺ äűńęĺňű äë˙ ˘ńňŕë˙âŕíí˙"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1150
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -4290,7 +4823,7 @@ msgstr ""
"Íĺęŕňîđű˙ ęđîęi íĺ çŕâĺđřŕíű.\n"
"Âű ńŕďđŕ˘äű ćŕäŕĺöĺ âűéńöi çŕđŕç?"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -4302,17 +4835,45 @@ msgid ""
"Information on configuring your system is available in the post\n"
"install chapter of the Official Linux-Mandrake User's Guide."
msgstr ""
-"Âiířóĺě, óńňŕ븢ęŕ çŕâĺđřŕíŕ.\n"
+"Âiířóĺě, óńňŕë˙âŕííĺ çŕâĺđřŕíŕ.\n"
"Âűäŕëiöĺ çŕăđóçŕ÷íű äűńę i íŕöińíiöĺ enter äë˙ ďĺđŕçŕăđóçęi.\n"
"Çŕ iíôŕđěŕöű˙é ďđŕ çě˙íĺííi äŕäçĺíŕăŕ âűďóńęó Linux-Mandrake,\n"
"çâ˙đňŕéöĺńü íŕ http://www.linux-mandrake.com/.\n"
-"Iíôŕđěŕöű˙ ďŕ íŕńňđîéęĺ âŕřŕé ńińňýěű ¸ńňü ˘ ďŕńë˙-˘ńňŕíîâŕ÷íŕé\n"
-"ăëŕâĺ âŕřŕăŕ Äŕďŕěîćíięŕ Ęŕđűńňŕëüíięŕ ç Ŕôiöűéíŕăŕ Linux-Mandrake."
+"Iíôŕđěŕöű˙ ďŕ íŕńňđîéęĺ âŕřŕé ńińňýěű ¸ńňü ˘ ďŕńë˙-˘ńňŕë¸âŕ÷íŕé\n"
+"ăëŕâĺ âŕřŕăŕ Äŕďŕěîćíięŕ Ęŕđűńňŕëüíięó ç Ŕôiöűéíŕăŕ Linux-Mandrake."
+
+#: ../../install_steps_interactive.pm_.c:1173
+#, fuzzy
+msgid "Generate auto install floppy"
+msgstr "Ńňâŕđýííĺ äűńęĺňű äë˙ ˘ńňŕë˙âŕíí˙"
+
+#: ../../install_steps_interactive.pm_.c:1175
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1180
+msgid "Automated"
+msgstr "Ŕ˘ňŕěŕňű÷íű"
+
+#: ../../install_steps_interactive.pm_.c:1180
+#, fuzzy
+msgid "Replay"
+msgstr "Ďĺđŕçŕăđóçiöü"
+
+#: ../../install_steps_interactive.pm_.c:1183
+#, fuzzy
+msgid "Save packages selection"
+msgstr "Ŕńŕáińňű âűáŕđ ďŕęĺňŕ˘"
#: ../../install_steps_newt.pm_.c:22
#, c-format
msgid "Linux-Mandrake Installation %s"
-msgstr "Óńňŕ븢ęŕ Linux-Mandrake %s"
+msgstr "Óńňŕë˙âŕííĺ Linux-Mandrake %s"
#: ../../install_steps_newt.pm_.c:33
msgid ""
@@ -4320,14 +4881,22 @@ msgid ""
msgstr ""
" <Tab>/<Alt-Tab> ďŕěić ýëĺěĺíňŕěi | <Space> âűáŕđ | <F12> íŕńňóďíű ýęđŕí "
-#: ../../interactive.pm_.c:273
+#: ../../interactive.pm_.c:65
+msgid "kdesu missing"
+msgstr ""
+
+#: ../../interactive.pm_.c:263
+msgid "Advanced"
+msgstr ""
+
+#: ../../interactive.pm_.c:286
msgid "Please wait"
msgstr "Ęŕëi ëŕńęŕ, ďŕ÷ŕęŕéöĺ"
#: ../../interactive_stdio.pm_.c:35
#, c-format
msgid "Ambiguity (%s), be more precise\n"
-msgstr "Íĺâűçíŕ÷ŕíŕńöü (%s), áóäçüöĺ äŕęëŕäíĺé\n"
+msgstr "Íĺâűçíŕ÷ŕíŕńöü (%s), áóäçüöĺ äŕęëŕäíű˙\n"
#: ../../interactive_stdio.pm_.c:36 ../../interactive_stdio.pm_.c:51
#: ../../interactive_stdio.pm_.c:71
@@ -4349,257 +4918,270 @@ msgstr "Âŕř âűáŕđ? (çěî˘÷ŕííĺ %s) "
msgid "Your choice? (default %s enter `none' for none) "
msgstr "Âŕř âűáŕđ? (çěî˘÷ŕííĺ %s. Óâ˙äçiöĺ `none' ďđű ŕäńóňíŕńöi) "
-#: ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:135
+#: ../../keyboard.pm_.c:124 ../../keyboard.pm_.c:154
msgid "Czech (QWERTZ)"
msgstr "×ĺřńęi (QWERTZ)"
-#: ../../keyboard.pm_.c:106 ../../keyboard.pm_.c:119 ../../keyboard.pm_.c:138
+#: ../../keyboard.pm_.c:125 ../../keyboard.pm_.c:138 ../../keyboard.pm_.c:157
msgid "German"
msgstr "Í˙ěĺöęi"
-#: ../../keyboard.pm_.c:107
+#: ../../keyboard.pm_.c:126
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:108 ../../keyboard.pm_.c:144
+#: ../../keyboard.pm_.c:127 ../../keyboard.pm_.c:163
msgid "Spanish"
msgstr "Ińďŕíńęi"
-#: ../../keyboard.pm_.c:109 ../../keyboard.pm_.c:145
+#: ../../keyboard.pm_.c:128 ../../keyboard.pm_.c:164
msgid "Finnish"
msgstr "Ôiíńęi"
-#: ../../keyboard.pm_.c:110 ../../keyboard.pm_.c:120 ../../keyboard.pm_.c:146
+#: ../../keyboard.pm_.c:129 ../../keyboard.pm_.c:139 ../../keyboard.pm_.c:165
msgid "French"
msgstr "Ôđŕíöóçńęi"
-#: ../../keyboard.pm_.c:111 ../../keyboard.pm_.c:166
+#: ../../keyboard.pm_.c:130 ../../keyboard.pm_.c:186
msgid "Norwegian"
msgstr "Íŕđâĺćńęi"
-#: ../../keyboard.pm_.c:112
+#: ../../keyboard.pm_.c:131
msgid "Polish"
msgstr "Ďîëüńęi"
-#: ../../keyboard.pm_.c:113 ../../keyboard.pm_.c:171
+#: ../../keyboard.pm_.c:132 ../../keyboard.pm_.c:191
msgid "Russian"
msgstr "Đóńęi"
-#: ../../keyboard.pm_.c:114 ../../keyboard.pm_.c:182
+#: ../../keyboard.pm_.c:133 ../../keyboard.pm_.c:202
msgid "UK keyboard"
msgstr "UK ęëŕâi˙ňóđŕ"
-#: ../../keyboard.pm_.c:115 ../../keyboard.pm_.c:118 ../../keyboard.pm_.c:183
+#: ../../keyboard.pm_.c:134 ../../keyboard.pm_.c:137 ../../keyboard.pm_.c:203
msgid "US keyboard"
msgstr "US ęëŕâi˙ňóđŕ"
-#: ../../keyboard.pm_.c:122
+#: ../../keyboard.pm_.c:141
msgid "Armenian (old)"
msgstr "Ŕđě˙íńęi (ńňŕđű)"
-#: ../../keyboard.pm_.c:123
+#: ../../keyboard.pm_.c:142
msgid "Armenian (typewriter)"
msgstr "Ŕđě˙íńęi (typewriter)"
-#: ../../keyboard.pm_.c:124
+#: ../../keyboard.pm_.c:143
msgid "Armenian (phonetic)"
msgstr "Ŕđě˙íńęi (ôŕíĺňű÷íű)"
-#: ../../keyboard.pm_.c:127
+#: ../../keyboard.pm_.c:146
msgid "Azerbaidjani (latin)"
msgstr "Ŕçĺđáŕéäćŕíńęł (latin)"
-#: ../../keyboard.pm_.c:128
+#: ../../keyboard.pm_.c:147
msgid "Azerbaidjani (cyrillic)"
msgstr "Ŕçĺđáŕéäćŕíńęł (ęłđűëłöŕ)"
-#: ../../keyboard.pm_.c:129
+#: ../../keyboard.pm_.c:148
msgid "Belgian"
msgstr "Áĺëüăiéńęi"
-#: ../../keyboard.pm_.c:130
+#: ../../keyboard.pm_.c:149
msgid "Bulgarian"
msgstr "Áŕëăŕđńęi"
-#: ../../keyboard.pm_.c:131
+#: ../../keyboard.pm_.c:150
msgid "Brazilian (ABNT-2)"
msgstr "Áđŕçiëüńęi (ABNT-2)"
-#: ../../keyboard.pm_.c:132
+#: ../../keyboard.pm_.c:151
msgid "Belarusian"
msgstr "Áĺëŕđóńęł"
-#: ../../keyboard.pm_.c:133
+#: ../../keyboard.pm_.c:152
msgid "Swiss (German layout)"
msgstr "Řâĺéöŕđńęi (Í˙ěĺöęŕ˙ đŕńęëŕäęŕ)"
-#: ../../keyboard.pm_.c:134
+#: ../../keyboard.pm_.c:153
msgid "Swiss (French layout)"
msgstr "Řâĺéöŕđńęi (Ôđŕíöóçńęŕ˙ đŕńęëŕäęŕ)"
-#: ../../keyboard.pm_.c:136
+#: ../../keyboard.pm_.c:155
msgid "Czech (QWERTY)"
msgstr "×ĺřńęi (QWERTY)"
-#: ../../keyboard.pm_.c:137
+#: ../../keyboard.pm_.c:156
msgid "Czech (Programmers)"
msgstr ""
-#: ../../keyboard.pm_.c:139
+#: ../../keyboard.pm_.c:158
msgid "German (no dead keys)"
msgstr "Í˙ěĺöęi (í˙ěŕ çŕáëŕęiđŕâŕíűő ęëŕâiř)"
-#: ../../keyboard.pm_.c:140
+#: ../../keyboard.pm_.c:159
msgid "Danish"
msgstr "Äŕöęi"
-#: ../../keyboard.pm_.c:141
+#: ../../keyboard.pm_.c:160
msgid "Dvorak (US)"
msgstr "Dvorak (US)"
-#: ../../keyboard.pm_.c:142
+#: ../../keyboard.pm_.c:161
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Íŕđâĺćńęi)"
-#: ../../keyboard.pm_.c:143
+#: ../../keyboard.pm_.c:162
msgid "Estonian"
msgstr "Ýńňîíńęi"
-#: ../../keyboard.pm_.c:147
+#: ../../keyboard.pm_.c:166
msgid "Georgian (\"Russian\" layout)"
msgstr "Ăđóçiíńęi (\"Đóńęŕ˙\" đŕńęëŕäęŕ)"
-#: ../../keyboard.pm_.c:148
+#: ../../keyboard.pm_.c:167
msgid "Georgian (\"Latin\" layout)"
msgstr "Ăđóçiíńęi (\"Ëŕöiíńęŕ˙\" đŕńęëŕäęŕ)"
-#: ../../keyboard.pm_.c:149
+#: ../../keyboard.pm_.c:168
msgid "Greek"
msgstr "Ăđý÷ŕńęi"
-#: ../../keyboard.pm_.c:150
+#: ../../keyboard.pm_.c:169
msgid "Hungarian"
msgstr "Ěŕäü˙đńęi"
-#: ../../keyboard.pm_.c:151
+#: ../../keyboard.pm_.c:170
msgid "Croatian"
msgstr "Őŕđâŕöęi"
-#: ../../keyboard.pm_.c:152
+#: ../../keyboard.pm_.c:171
msgid "Israeli"
msgstr "I˘đűň"
-#: ../../keyboard.pm_.c:153
+#: ../../keyboard.pm_.c:172
msgid "Israeli (Phonetic)"
msgstr "I˘đűň (ôŕíĺňű÷íű)"
-#: ../../keyboard.pm_.c:154
+#: ../../keyboard.pm_.c:173
msgid "Iranian"
msgstr "Iđŕíńęi"
-#: ../../keyboard.pm_.c:155
+#: ../../keyboard.pm_.c:174
msgid "Icelandic"
msgstr "Ińëŕíäńęi"
-#: ../../keyboard.pm_.c:156
+#: ../../keyboard.pm_.c:175
msgid "Italian"
msgstr "Iňŕëü˙íńęi"
-#: ../../keyboard.pm_.c:157
+#: ../../keyboard.pm_.c:176
msgid "Japanese 106 keys"
msgstr "ßďîíńęi 106 ęëŕâiř"
-#: ../../keyboard.pm_.c:158
+#: ../../keyboard.pm_.c:177
+#, fuzzy
+msgid "Korean keyboard"
+msgstr "UK ęëŕâi˙ňóđŕ"
+
+#: ../../keyboard.pm_.c:178
msgid "Latin American"
msgstr "Ëŕöiíŕ-Ŕěĺđűęŕíńęi"
-#: ../../keyboard.pm_.c:160
+#: ../../keyboard.pm_.c:179
+msgid "Macedonian"
+msgstr ""
+
+#: ../../keyboard.pm_.c:180
msgid "Dutch"
msgstr "Ăŕëŕíäńęi"
-#: ../../keyboard.pm_.c:161
+#: ../../keyboard.pm_.c:181
msgid "Lithuanian AZERTY (old)"
msgstr "Ëiňî˘ńęi AZERTY (ńňŕđű)"
-#: ../../keyboard.pm_.c:163
+#: ../../keyboard.pm_.c:183
msgid "Lithuanian AZERTY (new)"
msgstr "Ëiňî˘ńęi AZERTY (íîâű)"
-#: ../../keyboard.pm_.c:164
+#: ../../keyboard.pm_.c:184
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Ëiňî˘ńęi \"íóěŕđ đŕäęŕ\" QWERTY"
-#: ../../keyboard.pm_.c:165
+#: ../../keyboard.pm_.c:185
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Ëiňî˘ńęi \"ôŕíĺňű÷íű\" QWERTY"
-#: ../../keyboard.pm_.c:167
+#: ../../keyboard.pm_.c:187
msgid "Polish (qwerty layout)"
msgstr "Ďîëüńęi (ńňŕíäŕđňíŕ˙ đŕńęëŕäęŕ)"
-#: ../../keyboard.pm_.c:168
+#: ../../keyboard.pm_.c:188
msgid "Polish (qwertz layout)"
msgstr "Ďîëüńęi (qwertz đŕńęëŕäęŕ)"
-#: ../../keyboard.pm_.c:169
+#: ../../keyboard.pm_.c:189
msgid "Portuguese"
msgstr "Ďŕđňóăŕëüńęi"
-#: ../../keyboard.pm_.c:170
+#: ../../keyboard.pm_.c:190
msgid "Canadian (Quebec)"
msgstr "Ęŕíŕäńęi (Ęâĺáýę)"
-#: ../../keyboard.pm_.c:172
+#: ../../keyboard.pm_.c:192
msgid "Russian (Yawerty)"
msgstr "Đóńęi (ß-Â-Ĺ-Đ-Ň-Č)"
-#: ../../keyboard.pm_.c:173
+#: ../../keyboard.pm_.c:193
msgid "Swedish"
msgstr "Řâĺöęi"
-#: ../../keyboard.pm_.c:174
+#: ../../keyboard.pm_.c:194
msgid "Slovenian"
msgstr "Ńëŕâĺíńęi"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:195
msgid "Slovakian (QWERTZ)"
msgstr "Ńëŕâŕöęi (QWERTZ)"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:196
msgid "Slovakian (QWERTY)"
msgstr "Ńëŕâŕöęi (QWERTY)"
-#: ../../keyboard.pm_.c:177
+#: ../../keyboard.pm_.c:197
msgid "Slovakian (Programmers)"
msgstr ""
-#: ../../keyboard.pm_.c:178
+#: ../../keyboard.pm_.c:198
msgid "Thai keyboard"
msgstr "Ňŕéńęŕ˙ ęëŕâi˙ňóđŕ"
-#: ../../keyboard.pm_.c:179
+#: ../../keyboard.pm_.c:199
msgid "Turkish (traditional \"F\" model)"
msgstr "Ňóđýöęi (ňđŕäűöű¸íŕ˙ \"F\" ěŕäýëü)"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:200
msgid "Turkish (modern \"Q\" model)"
msgstr "Ňóđýöęi (ńó÷ŕńíŕ˙ \"Q\" ěŕäýëü)"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:201
msgid "Ukrainian"
msgstr "Óęđŕiíńęi"
-#: ../../keyboard.pm_.c:184
+#: ../../keyboard.pm_.c:204
msgid "US keyboard (international)"
msgstr "US ęëŕâi˙ňóđŕ (ěićíŕđîäíŕ˙)"
-#: ../../keyboard.pm_.c:185
+#: ../../keyboard.pm_.c:205
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Âüĺňíŕěńęi \"íóěŕđ đŕäęŕ\" QWERTY"
-#: ../../keyboard.pm_.c:186
-msgid "Yugoslavian (latin layout)"
-msgstr "Ţăŕńëŕ˘ńęi (ëŕöiíńęŕ˙ đŕńęëŕäęŕ)"
+#: ../../keyboard.pm_.c:206
+msgid "Yugoslavian (latin/cyrillic)"
+msgstr ""
+
+#: ../../lvm.pm_.c:70
+msgid "Remove the logical volumes first\n"
+msgstr ""
#: ../../mouse.pm_.c:25
msgid "Sun - Mouse"
@@ -4622,11 +5204,11 @@ msgstr "Çâű÷ŕéíŕ˙ ěűř ç 2 ęíîďęŕěł"
msgid "GlidePoint"
msgstr "GlidePoint"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:62
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:58
msgid "Genius NetMouse"
msgstr "Genius NetMouse"
@@ -4634,237 +5216,252 @@ msgstr "Genius NetMouse"
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:43
+#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:67
+#, fuzzy
+msgid "1 button"
+msgstr "2 ęíîďęi"
+
+#: ../../mouse.pm_.c:44
msgid "Generic"
msgstr "Ŕăóëüíű"
-#: ../../mouse.pm_.c:44
+#: ../../mouse.pm_.c:45
msgid "Wheel"
msgstr "Ç ęîëŕě"
-#: ../../mouse.pm_.c:47
+#: ../../mouse.pm_.c:48
msgid "serial"
msgstr "ďŕńë˙äî˘íŕ˙"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:50
msgid "Generic 2 Button Mouse"
msgstr "Çâű÷ŕéíŕ˙ ěűř ç 2 ęíîďęŕěł"
-#: ../../mouse.pm_.c:50
+#: ../../mouse.pm_.c:51
msgid "Generic 3 Button Mouse"
msgstr "Çâű÷ŕéíŕ˙ ěűř ç 3 ęíîďęŕěł"
-#: ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:52
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:53
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:54
msgid "Mouse Systems"
msgstr "Mouse Systems"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:56
msgid "Logitech CC Series"
msgstr "Logitech CC Series"
-#: ../../mouse.pm_.c:56
+#: ../../mouse.pm_.c:57
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:59
msgid "MM Series"
msgstr "MM Series"
-#: ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:60
msgid "MM HitTablet"
msgstr "MM HitTablet"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:61
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Logitech Mouse (ďŕńë˙äî˘íŕ˙, ńňŕđű ňűď C7)"
-#: ../../mouse.pm_.c:64
+#: ../../mouse.pm_.c:65
#, fuzzy
msgid "busmouse"
msgstr "Í˙ěŕ ěűřű"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
msgid "2 buttons"
msgstr "2 ęíîďęi"
-#: ../../mouse.pm_.c:67
+#: ../../mouse.pm_.c:69
msgid "3 buttons"
msgstr "3 ęíîďęi"
-#: ../../mouse.pm_.c:70
+#: ../../mouse.pm_.c:72
msgid "none"
msgstr "í˙ěŕ"
-#: ../../mouse.pm_.c:72
+#: ../../mouse.pm_.c:74
msgid "No mouse"
msgstr "Í˙ěŕ ěűřű"
-#: ../../my_gtk.pm_.c:243
+#: ../../my_gtk.pm_.c:356
+#, fuzzy
+msgid "Finish"
+msgstr "Ôiíńęi"
+
+#: ../../my_gtk.pm_.c:356
msgid "Next ->"
msgstr "Äŕëĺé ->"
-#: ../../my_gtk.pm_.c:486
+#: ../../my_gtk.pm_.c:357
+msgid "<- Previous"
+msgstr ""
+
+#: ../../my_gtk.pm_.c:616
msgid "Is this correct?"
msgstr "Ăýňŕ äŕęëŕäíŕ?"
-#: ../../netconnect.pm_.c:93 ../../netconnect_new.pm_.c:151
+#: ../../netconnect.pm_.c:141
msgid "Internet configuration"
-msgstr "Íŕńňđîéęŕ çëó÷ýíí˙ Iíňýđíýň"
+msgstr "Íŕńňđîéęŕ çëó÷ýíí˙ ç Iíňýđíýňŕě"
-#: ../../netconnect.pm_.c:94 ../../netconnect_new.pm_.c:152
+#: ../../netconnect.pm_.c:142
msgid "Do you want to try to connect to the Internet now?"
-msgstr "Öi ćŕäŕĺöĺ çŕđŕç ďŕńďđŕáŕâŕöü äŕëó÷űööŕ äŕ Iíňýđíýň?"
+msgstr "Öi ćŕäŕĺöĺ çŕđŕç ďŕńďđŕáŕâŕöü äŕëó÷űööŕ äŕ Iíňýđíýňó?"
-#: ../../netconnect.pm_.c:101 ../../netconnect_new.pm_.c:159
+#: ../../netconnect.pm_.c:146
#, fuzzy
msgid "Testing your connection..."
-msgstr "Íŕńňđîéęŕ iíňýđíýň çëó÷ýíí˙"
+msgstr "ßęi ňűď âŕřŕăŕ ISDN çëó÷ýíí˙?"
-#: ../../netconnect.pm_.c:106 ../../netconnect_new.pm_.c:164
+#: ../../netconnect.pm_.c:152 ../../standalone/draknet_.c:196
#, fuzzy
msgid "The system is now connected to Internet."
-msgstr "Íĺ äŕëó÷ŕööŕ äŕ iíňýđíýň"
+msgstr "ßę âű ďëŕíóĺöĺ äŕëó÷űööŕ äŕ Iíňýđíýňó?"
-#: ../../netconnect.pm_.c:107 ../../netconnect_new.pm_.c:165
+#: ../../netconnect.pm_.c:153
+msgid "For Security reason, it will be disconnected now."
+msgstr ""
+
+#: ../../netconnect.pm_.c:154 ../../standalone/draknet_.c:196
#, fuzzy
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
-msgstr "Äŕëó÷űööŕ äŕ Iíňýđíýň / Ęŕíôiăóđŕâŕöü ńĺňęó"
+msgstr ""
+"\n"
+"Âű ěîćŕöĺ ŕäęëţ÷űööŕ öł ďĺđŕęŕíôłăóđŕâŕöü âŕřŕĺ çëó÷ýííĺ."
+
+#: ../../netconnect.pm_.c:159 ../../netconnect.pm_.c:901
+#: ../../netconnect.pm_.c:930 ../../netconnect.pm_.c:1008
+msgid "Network Configuration"
+msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
-#: ../../netconnect.pm_.c:141 ../../netconnect.pm_.c:213
-#: ../../netconnect.pm_.c:232 ../../netconnect.pm_.c:244
-#: ../../netconnect.pm_.c:256 ../../netconnect_new.pm_.c:226
-#: ../../netconnect_new.pm_.c:300 ../../netconnect_new.pm_.c:319
-#: ../../netconnect_new.pm_.c:331 ../../netconnect_new.pm_.c:343
+#: ../../netconnect.pm_.c:220 ../../netconnect.pm_.c:264
+#: ../../netconnect.pm_.c:274 ../../netconnect.pm_.c:281
+#: ../../netconnect.pm_.c:291
msgid "ISDN Configuration"
msgstr "Íŕńňđîéęŕ ISDN"
-#: ../../netconnect.pm_.c:141 ../../netconnect_new.pm_.c:226
+#: ../../netconnect.pm_.c:220
msgid ""
"Select your provider.\n"
" If it's not in the list, choose Unlisted"
msgstr ""
-"Âűá˙đűöĺ âŕřŕăŕ ďđŕâŕéäŕđŕ.\n"
-"ęŕëi ˙ăî í˙ěŕ ˘ ăýňűě ńďińĺ, âűá˙đűöĺ ňűď ``Iířű''"
+"Ŕá˙đűöĺ âŕřŕăŕ ďđŕâŕéäŕđŕ.\n"
+"ęŕëi ˙ăî í˙ěŕ ˘ ăýňűě ńďińĺ, ŕá˙đűöĺ ňűď ``Iířű''"
-#: ../../netconnect.pm_.c:158 ../../netconnect_new.pm_.c:245
+#: ../../netconnect.pm_.c:234
msgid "Connection Configuration"
-msgstr "Íŕńňđîéęŕ äŕëó÷ýíí˙ äŕ Iíňýđíýň"
+msgstr "Íŕńňđîéęŕ äŕëó÷ýíí˙ äŕ Iíňýđíýňó"
-#: ../../netconnect.pm_.c:159 ../../netconnect_new.pm_.c:246
+#: ../../netconnect.pm_.c:235
msgid "Please fill or check the field below"
msgstr "Ęŕëi ëŕńęŕ, çŕďî˘íiöĺ öi ďŕçíŕ÷öĺ ďîëĺ íićýé"
-#: ../../netconnect.pm_.c:161 ../../netconnect_new.pm_.c:248
+#: ../../netconnect.pm_.c:237 ../../standalone/draknet_.c:550
msgid "Card IRQ"
msgstr "IRQ ęŕđňű"
-#: ../../netconnect.pm_.c:162 ../../netconnect_new.pm_.c:249
+#: ../../netconnect.pm_.c:238 ../../standalone/draknet_.c:551
msgid "Card mem (DMA)"
-msgstr "Ŕäđýńŕ ďŕě˙öł ęŕđňű (DMA)"
+msgstr "Ŕäđŕńű ďŕě˙öł ęŕđňű (DMA)"
-#: ../../netconnect.pm_.c:163 ../../netconnect_new.pm_.c:250
+#: ../../netconnect.pm_.c:239 ../../standalone/draknet_.c:552
msgid "Card IO"
msgstr "IO ęŕđňű"
-#: ../../netconnect.pm_.c:164 ../../netconnect_new.pm_.c:251
+#: ../../netconnect.pm_.c:240 ../../standalone/draknet_.c:553
msgid "Card IO_0"
msgstr "IO_0 ęŕđňű"
-#: ../../netconnect.pm_.c:165 ../../netconnect_new.pm_.c:252
+#: ../../netconnect.pm_.c:241 ../../standalone/draknet_.c:554
msgid "Card IO_1"
msgstr "IO_1 ęŕđňű"
-#: ../../netconnect.pm_.c:166 ../../netconnect_new.pm_.c:253
+#: ../../netconnect.pm_.c:242 ../../standalone/draknet_.c:555
msgid "Your personal phone number"
msgstr "Âŕř ŕńŕáińňű ňýëĺôîííű íóěŕđ"
-#: ../../netconnect.pm_.c:168 ../../netconnect_new.pm_.c:255
+#: ../../netconnect.pm_.c:243 ../../standalone/draknet_.c:556
msgid "Provider name (ex provider.net)"
-msgstr "Iě˙ ďđŕâŕéäŕđŕ, íŕďđűęëŕä ďđŕâŕéäŕđ.net"
+msgstr "Iě˙ ďđŕâŕéäŕđó, íŕďđűęëŕä ďđŕâŕéäŕđ.net"
-#: ../../netconnect.pm_.c:169 ../../netconnect_new.pm_.c:256
+#: ../../netconnect.pm_.c:244 ../../standalone/draknet_.c:557
msgid "Provider phone number"
-msgstr "Íóěŕđ ňýëĺôîíŕ ďđŕâŕéäŕđŕ"
+msgstr "Íóěŕđ ňýëĺôîíó ďđŕâŕéäŕđŕ"
-#: ../../netconnect.pm_.c:170 ../../netconnect_new.pm_.c:257
+#: ../../netconnect.pm_.c:245
msgid "Provider dns 1"
-msgstr "DNS 1 ďđŕâŕéäŕđŕ"
+msgstr "DNS 1 ďđŕâŕéäŕđó"
-#: ../../netconnect.pm_.c:171 ../../netconnect_new.pm_.c:258
+#: ../../netconnect.pm_.c:246
msgid "Provider dns 2"
-msgstr "DNS 2 ďđŕâŕéäŕđŕ"
+msgstr "DNS 2 ďđŕâŕéäŕđó"
-#: ../../netconnect.pm_.c:172 ../../netconnect_new.pm_.c:259
+#: ../../netconnect.pm_.c:247 ../../standalone/draknet_.c:562
msgid "Dialing mode"
msgstr "Đýćűě çëó÷ýíí˙"
-#: ../../netconnect.pm_.c:174 ../../netconnect_new.pm_.c:261
+#: ../../netconnect.pm_.c:248 ../../standalone/draknet_.c:560
msgid "Account Login (user name)"
-msgstr "Iě˙ äë˙ ˘âŕőîäó (iě˙ ęŕđűńňŕëüíięŕ)"
+msgstr "Iě˙ äë˙ ˘âŕőîäó (iě˙ ęŕđűńňŕëüíięó)"
-#: ../../netconnect.pm_.c:175 ../../netconnect_new.pm_.c:262
+#: ../../netconnect.pm_.c:249 ../../standalone/draknet_.c:561
msgid "Account Password"
msgstr "Ďŕđîëü äë˙ ˘âŕőîäó"
-#: ../../netconnect.pm_.c:176 ../../netconnect_new.pm_.c:263
-msgid "Confirm Password"
-msgstr "Ďŕäöâĺđäçiöü ďŕđîëü"
-
-#: ../../netconnect.pm_.c:208 ../../netconnect_new.pm_.c:295
+#: ../../netconnect.pm_.c:259
msgid "Europe"
-msgstr "ݢđîďŕ"
+msgstr "Ţđîďŕ"
-#: ../../netconnect.pm_.c:208 ../../netconnect_new.pm_.c:295
+#: ../../netconnect.pm_.c:259
msgid "Europe (EDSS1)"
-msgstr "ݢđîďŕ (EDSS1)"
+msgstr "Ţđîďŕ (EDSS1)"
-#: ../../netconnect.pm_.c:210 ../../netconnect_new.pm_.c:297
+#: ../../netconnect.pm_.c:261
msgid "Rest of the world"
msgstr "Ďŕäęëţ÷ýííĺ"
-#: ../../netconnect.pm_.c:210 ../../netconnect_new.pm_.c:297
-msgid "Rest of the world - no D-Channel (leased lines)"
-msgstr "Ďŕäęëţ÷ýííĺ - íĺ ďđŕç D-ęŕíŕë (âűäç˙ëĺíű˙ ęŕíŕëű)"
+#: ../../netconnect.pm_.c:261
+msgid ""
+"Rest of the world \n"
+" no D-Channel (leased lines)"
+msgstr ""
+"Ďŕäęëţ÷ýííĺ \n"
+" íĺ ďđŕç D-ęŕíŕë (âűëó÷ŕíű˙ ęŕíŕëű)"
-#: ../../netconnect.pm_.c:214 ../../netconnect_new.pm_.c:301
+#: ../../netconnect.pm_.c:265
msgid "Which protocol do you want to use ?"
msgstr "ßęi ďđŕňŕęîë âű ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü?"
-#: ../../netconnect.pm_.c:224 ../../netconnect_new.pm_.c:311
+#: ../../netconnect.pm_.c:275
+msgid "What kind of card do you have?"
+msgstr "ßęi ňűď ęŕđňű âű ěŕĺöĺ?"
+
+#: ../../netconnect.pm_.c:276
+msgid "I don't know"
+msgstr "Íĺ â˙äîěŕ"
+
+#: ../../netconnect.pm_.c:276
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"
-#: ../../netconnect.pm_.c:226 ../../netconnect_new.pm_.c:313
+#: ../../netconnect.pm_.c:276
msgid "PCI"
msgstr "PCI"
-#: ../../netconnect.pm_.c:228 ../../netconnect_new.pm_.c:315
-msgid "I don't know"
-msgstr "Íĺ âĺäîěŕ"
-
-#: ../../netconnect.pm_.c:233 ../../netconnect_new.pm_.c:320
-msgid "What kind of card do you have?"
-msgstr "ßęi ňűď ęŕđňű âű ěŕĺöĺ?"
-
-#: ../../netconnect.pm_.c:239 ../../netconnect_new.pm_.c:326
-msgid "Continue"
-msgstr "Ďđŕö˙ăíóöü"
-
-#: ../../netconnect.pm_.c:241 ../../netconnect_new.pm_.c:328
-msgid "Abort"
-msgstr "Ŕäě˙íiöü"
-
-#: ../../netconnect.pm_.c:245 ../../netconnect_new.pm_.c:332
+#: ../../netconnect.pm_.c:282
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -4877,15 +5474,19 @@ msgstr ""
"\n"
"Ęŕëi âű ěŕĺöĺ PCMCIA ęŕđňó, âű ďŕâiííű âĺäŕöü irq i io âŕřŕé ęŕđňű.\n"
-#: ../../netconnect.pm_.c:257 ../../netconnect_new.pm_.c:344
+#: ../../netconnect.pm_.c:286
+msgid "Abort"
+msgstr "Ŕäě˙íiöü"
+
+#: ../../netconnect.pm_.c:286
+msgid "Continue"
+msgstr "Ďđŕö˙ăíóöü"
+
+#: ../../netconnect.pm_.c:292
msgid "Which is your ISDN card ?"
msgstr "ßęŕ˙ ˘ âŕń ISDN ęŕđňŕ?"
-#: ../../netconnect.pm_.c:282
-msgid "I have found an ISDN Card:\n"
-msgstr "Çíŕéřëi ISDN ęŕđňó:\n"
-
-#: ../../netconnect.pm_.c:288 ../../netconnect_new.pm_.c:367
+#: ../../netconnect.pm_.c:312
msgid ""
"I have detected an ISDN PCI Card, but I don't know the type. Please select "
"one PCI card on the next screen."
@@ -4893,322 +5494,335 @@ msgstr ""
"Âűçíŕ÷ŕíŕ ISDN PCI ęŕđňŕ, ŕëĺ íĺâ˙äîěű ˙ĺ ňűď. Ęŕëi ëŕńęŕ, ďŕçíŕ÷öĺ PCI "
"ęŕđňó íŕ íŕńňóďíűě ýęđŕíĺ."
-#: ../../netconnect.pm_.c:300 ../../netconnect_new.pm_.c:379
+#: ../../netconnect.pm_.c:321
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr "Ęŕđňŕ ISDN PCI íĺ çíîéäçĺíŕ. Ęŕëi ëŕńęŕ, ďŕçíŕ÷öĺ íŕ íŕńňóďíűě ýęđŕíĺ."
-#: ../../netconnect.pm_.c:336 ../../netconnect_new.pm_.c:412
+#: ../../netconnect.pm_.c:369
#, fuzzy
msgid ""
"No ethernet network adapter has been detected on your system.\n"
"I cannot set up this connection type."
msgstr ""
-"Íi ŕäçií ethernet ńĺňęŕâŕíű ŕäŕďňŕđ ó âŕřŕé ńińňýěĺ íĺ âűçíŕ÷ŕíű. Ęŕëi "
-"ëŕńęŕ, ńęŕđűńňŕéöĺ ęŕíôiăóđŕöűéíű iíńňđóěýíň."
+"Íi âîäíű ethernet ńĺňęŕâű ŕäŕďňŕđ ó âŕřŕé ńińňýěĺ íĺ âűçíŕ÷ŕíű. Ęŕëi ëŕńęŕ, "
+"ńęŕđűńňŕéöĺ ęŕíôiăóđŕöűéíű iíńňđóěýíň."
-#: ../../netconnect.pm_.c:340 ../../netconnect_new.pm_.c:417
-#: ../../standalone/drakgw_.c:222
+#: ../../netconnect.pm_.c:373 ../../standalone/drakgw_.c:232
msgid "Choose the network interface"
msgstr "Ďŕçíŕ÷öĺ ńĺňęŕâű iíňýđôĺéń"
-#: ../../netconnect.pm_.c:341 ../../netconnect_new.pm_.c:418
+#: ../../netconnect.pm_.c:374
msgid ""
"Please choose which network adapter you want to use to connect to Internet"
msgstr ""
"Ęŕëi ëŕńęŕ, ďŕçíŕ÷öĺ ńĺňęŕâű ŕäŕďňŕđ, ˙ęi ďëŕíóĺöĺ âűęŕđűńňî˘âŕöü äë˙ "
"äŕëó÷ýíí˙ äŕ iíňýđíýň"
-#: ../../netconnect.pm_.c:356 ../../netconnect.pm_.c:635
-#: ../../netconnect.pm_.c:766 ../../netconnect_new.pm_.c:425
-#: ../../netconnect_new.pm_.c:777 ../../netconnect_new.pm_.c:908
-#: ../../standalone/drakgw_.c:217
+#: ../../netconnect.pm_.c:383 ../../netconnect.pm_.c:697
+#: ../../netconnect.pm_.c:842 ../../standalone/drakgw_.c:223
msgid "Network interface"
msgstr "Ńĺňęŕâű iíňýđôĺéń"
-#: ../../netconnect.pm_.c:357 ../../netconnect_new.pm_.c:426
+#: ../../netconnect.pm_.c:384
msgid ""
"\n"
"Do you agree?"
msgstr ""
+"\n"
+"Âű çăîäíű˙?"
-#: ../../netconnect.pm_.c:357 ../../netconnect_new.pm_.c:426
-#, fuzzy
+#: ../../netconnect.pm_.c:384
msgid "I'm about to restart the network device:\n"
-msgstr "Ďĺđŕçŕăđóçiöü ńĺňęŕâű iíňýđôĺéń. Çăîäíű?"
+msgstr ""
-#: ../../netconnect.pm_.c:473 ../../netconnect_new.pm_.c:512
+#: ../../netconnect.pm_.c:482
msgid "ADSL configuration"
msgstr "Íŕńňđîéęŕ ADSL"
-#: ../../netconnect.pm_.c:474 ../../netconnect_new.pm_.c:513
+#: ../../netconnect.pm_.c:483
msgid "Do you want to start your connection at boot?"
msgstr "Âű ćŕäŕĺöĺ, ęŕá ăýňŕĺ çëó÷ýííĺ ńňŕđňŕâŕëŕ ďđű çŕăđóçöű?"
-#: ../../netconnect.pm_.c:541 ../../netconnect_new.pm_.c:672
-msgid "Try to find a modem?"
-msgstr "Ďŕńďđŕáŕâŕöü çíŕéńöi ěŕäýě?"
-
-#: ../../netconnect.pm_.c:551 ../../netconnect_new.pm_.c:677
+#: ../../netconnect.pm_.c:618
msgid "Please choose which serial port your modem is connected to."
-msgstr "Äŕ ˙ęîăŕ ďŕńë˙äî˘íŕăŕ ďîđňŕ äŕëó÷ŕíű ěŕäýě?"
+msgstr "Äŕ ˙ęîăŕ ďŕńë˙äî˘íŕăŕ ďîđňó äŕëó÷ŕíű ěŕäýě?"
-#: ../../netconnect.pm_.c:556 ../../netconnect_new.pm_.c:682
+#: ../../netconnect.pm_.c:623
msgid "Dialup options"
msgstr "Ďŕđŕěĺňđű ęŕěóňŕâŕíŕăŕ çëó÷ýíí˙ (Dialup)"
-#: ../../netconnect.pm_.c:557 ../../netconnect_new.pm_.c:683
+#: ../../netconnect.pm_.c:624 ../../standalone/draknet_.c:564
msgid "Connection name"
msgstr "Iě˙ çëó÷ýíí˙"
-#: ../../netconnect.pm_.c:558 ../../netconnect_new.pm_.c:684
+#: ../../netconnect.pm_.c:625 ../../standalone/draknet_.c:565
msgid "Phone number"
-msgstr "Íóěŕđ ňýëĺôîíŕ"
+msgstr "Íóěŕđ ňýëĺôîíó"
-#: ../../netconnect.pm_.c:559 ../../netconnect_new.pm_.c:685
+#: ../../netconnect.pm_.c:626 ../../standalone/draknet_.c:566
msgid "Login ID"
msgstr "Iě˙ (login ID)"
-#: ../../netconnect.pm_.c:561 ../../netconnect_new.pm_.c:687
+#: ../../netconnect.pm_.c:628 ../../standalone/draknet_.c:568
msgid "Authentication"
msgstr "Ŕ˘ňýíňűôięŕöű˙"
-#: ../../netconnect.pm_.c:561 ../../netconnect_new.pm_.c:687
+#: ../../netconnect.pm_.c:628 ../../standalone/draknet_.c:568
msgid "PAP"
msgstr "PAP"
-#: ../../netconnect.pm_.c:561 ../../netconnect_new.pm_.c:687
+#: ../../netconnect.pm_.c:628 ../../standalone/draknet_.c:568
msgid "Script-based"
-msgstr "íŕ ŕńíîâĺ ńęđűďňŕ"
+msgstr "íŕ ŕńíîâĺ ńęđűďňó"
-#: ../../netconnect.pm_.c:561 ../../netconnect_new.pm_.c:687
+#: ../../netconnect.pm_.c:628 ../../standalone/draknet_.c:568
msgid "Terminal-based"
-msgstr "íŕ ŕńíîâĺ ňýđěiíŕëŕ"
+msgstr "íŕ ŕńíîâĺ ňýđěiíŕëó"
-#: ../../netconnect.pm_.c:562 ../../netconnect_new.pm_.c:688
+#: ../../netconnect.pm_.c:629 ../../standalone/draknet_.c:569
msgid "Domain name"
-msgstr "Iě˙ äŕěĺíŕ"
+msgstr "Iě˙ äŕěĺíó"
-#: ../../netconnect.pm_.c:564 ../../netconnect_new.pm_.c:690
-msgid "First DNS Server"
+#: ../../netconnect.pm_.c:630 ../../standalone/draknet_.c:570
+#, fuzzy
+msgid "First DNS Server (optional)"
msgstr "Ďĺđřű ńĺđâĺđ DNS"
-#: ../../netconnect.pm_.c:565 ../../netconnect_new.pm_.c:691
-msgid "Second DNS Server"
+#: ../../netconnect.pm_.c:631 ../../standalone/draknet_.c:571
+#, fuzzy
+msgid "Second DNS Server (optional)"
msgstr "Äđóăi ńĺđâĺđ DNS:"
-#: ../../netconnect.pm_.c:594 ../../netconnect_new.pm_.c:736
-#, fuzzy
+#: ../../netconnect.pm_.c:698
+msgid ""
+"I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"
+msgstr ""
+
+#: ../../netconnect.pm_.c:742
msgid ""
"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr "Äŕëó÷űööŕ äŕ Iíňýđíýň / Ęŕíôiăóđŕâŕöü ńĺňęó"
+"You can disconnect or reconfigure your connection."
+msgstr ""
+"\n"
+"Âű ěîćŕöĺ ŕäęëţ÷űööŕ öł ďĺđŕęŕíôłăóđŕâŕöü âŕřŕĺ çëó÷ýííĺ."
-#: ../../netconnect.pm_.c:594 ../../netconnect.pm_.c:598
-#: ../../netconnect_new.pm_.c:736 ../../netconnect_new.pm_.c:740
+#: ../../netconnect.pm_.c:742 ../../netconnect.pm_.c:745
#, fuzzy
msgid ""
"\n"
"You can reconfigure your connection."
-msgstr "Íŕńňđîéęŕ iíňýđíýň çëó÷ýíí˙"
+msgstr ""
+"\n"
+"Âű ěîćŕöĺ ŕäęëţ÷űööŕ öł ďĺđŕęŕíôłăóđŕâŕöü âŕřŕĺ çëó÷ýííĺ."
-#: ../../netconnect.pm_.c:594 ../../netconnect_new.pm_.c:736
+#: ../../netconnect.pm_.c:742
#, fuzzy
-msgid "You are not currently connected to Internet."
-msgstr "Íĺ äŕëó÷ŕööŕ äŕ iíňýđíýň"
+msgid "You are currently connected to internet."
+msgstr "ßę âű ďëŕíóĺöĺ äŕëó÷űööŕ äŕ Iíňýđíýňó?"
-#: ../../netconnect.pm_.c:598 ../../netconnect_new.pm_.c:740
+#: ../../netconnect.pm_.c:745
+#, fuzzy
msgid ""
"\n"
-"You can disconnect or reconfigure your connection."
+"You can connect to Internet or reconfigure your connection."
msgstr ""
+"\n"
+"Âű ěîćŕöĺ ŕäęëţ÷űööŕ öł ďĺđŕęŕíôłăóđŕâŕöü âŕřŕĺ çëó÷ýííĺ."
-#: ../../netconnect.pm_.c:598 ../../netconnect_new.pm_.c:740
+#: ../../netconnect.pm_.c:745
#, fuzzy
-msgid "You are currently connected to internet."
-msgstr "Íĺ äŕëó÷ŕööŕ äŕ iíňýđíýň"
+msgid "You are not currently connected to Internet."
+msgstr "ßę âű ďëŕíóĺöĺ äŕëó÷űööŕ äŕ Iíňýđíýňó?"
-#: ../../netconnect.pm_.c:602 ../../netconnect_new.pm_.c:744
+#: ../../netconnect.pm_.c:749 ../../standalone/net_monitor_.c:81
#, fuzzy
msgid "Connect to Internet"
-msgstr "Çëó÷ýííĺ ç Iíňýđíýň"
+msgstr "Äŕëó÷ýííĺ äŕ Iíňýđíýňó"
-#: ../../netconnect.pm_.c:604 ../../netconnect_new.pm_.c:746
+#: ../../netconnect.pm_.c:751
#, fuzzy
msgid "Disconnect from Internet"
-msgstr "Đŕçŕđâŕöü çëó÷ýííĺ ç iíňýđíýň"
+msgstr "Äŕëó÷ýííĺ äŕ Iíňýđíýňó"
-#: ../../netconnect.pm_.c:606 ../../netconnect_new.pm_.c:748
-#, fuzzy
+#: ../../netconnect.pm_.c:753
msgid "Configure network connection (LAN or Internet)"
-msgstr "Íŕńňđîéęŕ iíňýđíýň çëó÷ýíí˙"
+msgstr ""
-#: ../../netconnect.pm_.c:609 ../../netconnect_new.pm_.c:751
+#: ../../netconnect.pm_.c:756
msgid "Internet connection & configuration"
msgstr "Iíňýđíýň çëó÷ýííĺ i ęŕíôiăóđŕöű˙"
-#: ../../netconnect.pm_.c:636 ../../netconnect.pm_.c:767
-#: ../../netconnect_new.pm_.c:778 ../../netconnect_new.pm_.c:909
+#: ../../netconnect.pm_.c:808 ../../netconnect.pm_.c:957
+#: ../../netconnect.pm_.c:967 ../../netconnect.pm_.c:982
#, fuzzy
-msgid ""
-"I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"
-msgstr "Ďĺđŕçŕăđóçiöü ńĺňęŕâű iíňýđôĺéń. Çăîäíű?"
-
-#: ../../netconnect.pm_.c:653 ../../netconnect_new.pm_.c:795
-#, fuzzy
-msgid "Configure a normal modem connection"
-msgstr "Íŕńňđîéęŕ iíňýđíýň çëó÷ýíí˙"
+msgid "Network Configuration Wizard"
+msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
-#: ../../netconnect.pm_.c:673 ../../netconnect_new.pm_.c:815
+#: ../../netconnect.pm_.c:809
#, fuzzy
-msgid "Configure an ISDN connection"
-msgstr "Íŕńňđîéęŕ iíňýđíýň çëó÷ýíí˙"
+msgid "External ISDN modem"
+msgstr "Óíóňđŕíŕ˙ ISDN ęŕđňŕ"
-#: ../../netconnect.pm_.c:678 ../../netconnect_new.pm_.c:820
+#: ../../netconnect.pm_.c:809
msgid "Internal ISDN card"
msgstr "Óíóňđŕíŕ˙ ISDN ęŕđňŕ"
-#: ../../netconnect.pm_.c:680 ../../netconnect_new.pm_.c:822
-#, fuzzy
-msgid "External ISDN modem"
-msgstr "Çíĺříi ěŕäýě"
-
-#: ../../netconnect.pm_.c:683 ../../netconnect.pm_.c:717
-#: ../../netconnect.pm_.c:729 ../../netconnect.pm_.c:753
-#: ../../netconnect.pm_.c:798 ../../netconnect_new.pm_.c:825
-#: ../../netconnect_new.pm_.c:859 ../../netconnect_new.pm_.c:871
-#: ../../netconnect_new.pm_.c:895 ../../netconnect_new.pm_.c:940
-msgid "Connect to the Internet"
-msgstr "Äŕëó÷ýííĺ äŕ Iíňýđíýň"
-
-#: ../../netconnect.pm_.c:684 ../../netconnect_new.pm_.c:826
+#: ../../netconnect.pm_.c:809
msgid "What kind is your ISDN connection?"
msgstr "ßęi ňűď âŕřŕăŕ ISDN çëó÷ýíí˙?"
-#: ../../netconnect.pm_.c:703 ../../netconnect_new.pm_.c:845
-#, fuzzy
-msgid "Configure a DSL (or ADSL) connection"
-msgstr "Íŕńňđîéęŕ iíňýđíýň çëó÷ýíí˙"
-
-#: ../../netconnect.pm_.c:712 ../../netconnect_new.pm_.c:854
-msgid "France"
-msgstr "Ôđŕíöű˙"
-
-#: ../../netconnect.pm_.c:714 ../../netconnect_new.pm_.c:856
-msgid "Other countries"
-msgstr "Iířű˙ ęđŕiíű"
-
-#: ../../netconnect.pm_.c:718 ../../netconnect_new.pm_.c:860
-msgid "In which country are you located ?"
-msgstr "ßęŕ˙ ęđŕiíŕ âŕřŕăŕ đŕçě˙ř÷ýíí˙?"
-
-#: ../../netconnect.pm_.c:724 ../../netconnect_new.pm_.c:866
-msgid "Alcatel modem"
-msgstr "Ěŕäýě Alcatel"
+#: ../../netconnect.pm_.c:830 ../../netconnect.pm_.c:879
+msgid "Connect to the Internet"
+msgstr "Äŕëó÷ýííĺ äŕ Iíňýđíýňó"
-#: ../../netconnect.pm_.c:726 ../../netconnect_new.pm_.c:868
-msgid "ECI modem"
-msgstr "Ěŕäýě ECI"
+#: ../../netconnect.pm_.c:831
+msgid ""
+"The most common way to connect with adsl is pppoe.\n"
+"Some connections use pptp, a few ones use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
+msgstr ""
-#: ../../netconnect.pm_.c:730 ../../netconnect_new.pm_.c:872
-msgid "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
+#: ../../netconnect.pm_.c:833
+msgid "use dhcp"
msgstr ""
-"Ęŕëi âŕř ADSL ěŕäýě ŕäíŕ ç ěŕäýë˙˘ Alcatel, ďŕçíŕ÷öĺ Alcatel. Ó iířűě "
-"âűďŕäęó - ECI."
-#: ../../netconnect.pm_.c:748 ../../netconnect_new.pm_.c:890
+#: ../../netconnect.pm_.c:833
msgid "use pppoe"
msgstr "âűęŕđűńňî˘âŕöü pppoe"
-#: ../../netconnect.pm_.c:750 ../../netconnect_new.pm_.c:892
-msgid "don't use pppoe"
-msgstr "íĺ âűęŕđűńňî˘âŕöü pppoe"
+#: ../../netconnect.pm_.c:833
+#, fuzzy
+msgid "use pptp"
+msgstr "âűęŕđűńňî˘âŕöü pppoe"
-#: ../../netconnect.pm_.c:754 ../../netconnect_new.pm_.c:896
-msgid ""
-"The most common way to connect with adsl is dhcp + pppoe.\n"
-"However, some connections only use dhcp.\n"
-"If you don't know, choose 'use pppoe'"
+#: ../../netconnect.pm_.c:843
+#, c-format
+msgid "I'm about to restart the network device %s. Do you agree?"
msgstr ""
-"Íŕéáîëüř ŕăóëüíű íŕęiđóíŕę çëó÷ŕööŕ ďđŕç adsl ăýňŕ dhcp i pppoe.\n"
-"Ŕëĺ ć, ăýňŕ çëó÷ýííĺ ěîćíŕ ńňâŕđűöü ňîëüęi ęŕëi ńęŕđűńňî˘âŕöü dhcp.\n"
-"Ęŕëi íĺ âĺäŕĺöĺ, řňî đŕáiöü, âűáiđŕéöĺ 'ńęŕđűńňŕöü pppoe'"
-#: ../../netconnect.pm_.c:777 ../../netconnect_new.pm_.c:919
-#, fuzzy
-msgid "Configure a cable connection"
-msgstr "Íŕńňđîéęŕ iíňýđíýň çëó÷ýíí˙"
-
-#: ../../netconnect.pm_.c:799 ../../netconnect_new.pm_.c:941
+#: ../../netconnect.pm_.c:880
msgid ""
"Which dhcp client do you want to use?\n"
-"Default is dhcpd"
+"Default is dhcpcd"
msgstr ""
-"ßęi dhcp ęëiĺíň âű ďëŕíóĺöĺ ńęŕđűńňî˘âŕöü?\n"
-"Ďŕ çěî˘÷ŕííţ, ăýňŕ dhcpd"
-
-#: ../../netconnect.pm_.c:812 ../../netconnect_new.pm_.c:954
-#, fuzzy
-msgid "Disable Internet Connection"
-msgstr "Íŕńňđîéęŕ iíňýđíýň çëó÷ýíí˙"
-
-#: ../../netconnect.pm_.c:823 ../../netconnect_new.pm_.c:965
-msgid "Configure local network"
-msgstr "Íŕńňđîéęŕ ëŕęŕëüíŕé ńĺňęi"
+"ßęi dhcp ęëiĺíň âű ďëŕíóĺöĺ âűęŕđűńňî˘âŕöü?\n"
+"Ďŕ çěî˘÷ŕííţ, ăýňŕ dhcpcd"
-#: ../../netconnect.pm_.c:827 ../../netconnect_new.pm_.c:969
+#: ../../netconnect.pm_.c:897
#, fuzzy
msgid "Network configuration"
msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
-#: ../../netconnect.pm_.c:828 ../../netconnect_new.pm_.c:970
+#: ../../netconnect.pm_.c:898
#, fuzzy
msgid "Do you want to restart the network"
msgstr "Öi ćŕäŕĺöĺ ďđŕňýńöiđŕâŕöü íŕńňđîéęi?"
-#: ../../netconnect.pm_.c:836 ../../netconnect_new.pm_.c:978
-msgid "Disable networking"
-msgstr "Çđŕáiöü íĺŕęňű˘íűě ńĺňęŕâŕĺ çëó÷ýííĺ"
+#: ../../netconnect.pm_.c:901
+#, fuzzy, c-format
+msgid ""
+"A problem occured while restarting the network: \n"
+"\n"
+"%s"
+msgstr "Öi ćŕäŕĺöĺ ďđŕňýńöiđŕâŕöü íŕńňđîéęi?"
-#: ../../netconnect.pm_.c:846 ../../netconnect_new.pm_.c:988
-#, fuzzy
-msgid "Configure the Internet connection / Configure local Network"
-msgstr "Äŕëó÷űööŕ äŕ Iíňýđíýň / Ęŕíôiăóđŕâŕöü ńĺňęó"
+#: ../../netconnect.pm_.c:931
+msgid ""
+"Because you are doing a network installation, your network is already "
+"configured.\n"
+"Click on Ok to keep your configuration, or cancel to reconfigure your "
+"Internet & Network connection.\n"
+msgstr ""
-#: ../../netconnect.pm_.c:847 ../../netconnect_new.pm_.c:989
+#: ../../netconnect.pm_.c:958
msgid ""
-"Local networking has already been configured.\n"
-"Do you want to:"
+"Welcome to The Network Configuration Wizard\n"
+"\n"
+"We are about to configure your internet/network connection.\n"
+"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
-"Íŕńňđîéęi ëŕęŕëüíŕé ńĺňęi óćî çŕäŕäçĺíű.\n"
-"Öi ćŕäŕĺöĺ Âű:"
-#: ../../netconnect.pm_.c:848 ../../netconnect_new.pm_.c:990
-msgid "How do you want to connect to the Internet?"
-msgstr "ßę âű ďëŕíóĺöĺ äŕëó÷űööŕ äŕ Iíňýđíýň?"
+#: ../../netconnect.pm_.c:960
+#, fuzzy
+msgid "Choose the profile to configure"
+msgstr "Ŕá˙đűöĺ ŕńíî˘íŕăŕ ęŕđűńňŕëüíięŕ:"
-#: ../../netconnect.pm_.c:870 ../../netconnect_new.pm_.c:1012
-msgid "Network Configuration"
-msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
+#: ../../netconnect.pm_.c:961
+msgid "Use auto detection"
+msgstr ""
+
+#: ../../netconnect.pm_.c:967 ../../printerdrake.pm_.c:19
+msgid "Detecting devices..."
+msgstr "Âűçíŕ÷ýííĺ ďđűëŕäŕ˘..."
+
+#: ../../netconnect.pm_.c:974
+msgid "Normal modem connection"
+msgstr ""
+
+#: ../../netconnect.pm_.c:974
+#, fuzzy, c-format
+msgid "detected on port %s"
+msgstr "Äóáë˙âŕííĺ ďóíęňó ěŕíöiđŕâŕíí˙ %s"
-#: ../../netconnect.pm_.c:871 ../../netconnect_new.pm_.c:1013
+#: ../../netconnect.pm_.c:975
+#, fuzzy
+msgid "ISDN connection"
+msgstr "Íŕńňđîéęŕ ISDN"
+
+#: ../../netconnect.pm_.c:975
+#, c-format
+msgid "detected %s"
+msgstr ""
+
+#: ../../netconnect.pm_.c:976
+msgid "DSL (or ADSL) connection"
+msgstr ""
+
+#: ../../netconnect.pm_.c:976
+#, fuzzy, c-format
+msgid "detected on interface %s"
+msgstr "Ńĺňęŕâű iíňýđôĺéń"
+
+#: ../../netconnect.pm_.c:977
+#, fuzzy
+msgid "Cable connection"
+msgstr "Çëó÷ýííĺ ďđűíňýđó"
+
+#: ../../netconnect.pm_.c:978
+#, fuzzy
+msgid "LAN connection"
+msgstr "Đŕçěĺđęŕâŕííĺ"
+
+#: ../../netconnect.pm_.c:978
+msgid "ethernet card(s) detected"
+msgstr ""
+
+#: ../../netconnect.pm_.c:983
+msgid "How do you want to connect to the Internet?"
+msgstr "ßę âű ďëŕíóĺöĺ äŕëó÷űööŕ äŕ Iíňýđíýňó?"
+
+#: ../../netconnect.pm_.c:1000
msgid ""
-"Now that your Internet connection is configured,\n"
-"your computer can be configured to share its Internet connection.\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN).\n"
+"Congratulation, The network and internet configuration is finished.\n"
"\n"
-"Would you like to setup the Internet Connection Sharing?\n"
+"The configuration will now be applied to your system."
+msgstr ""
+
+#: ../../netconnect.pm_.c:1003
+msgid ""
+"After that is done, we recommend you to restart your X\n"
+"environnement to avoid hostname changing problem."
msgstr ""
#: ../../network.pm_.c:253
msgid "no network card found"
msgstr "ńĺňęŕâŕ˙ ęŕđňŕ íĺ çíîéäçĺíŕ"
-#: ../../network.pm_.c:273 ../../network.pm_.c:340
+#: ../../network.pm_.c:277 ../../network.pm_.c:387
msgid "Configuring network"
msgstr "Íŕńňđîéęŕ ńĺňęi"
-#: ../../network.pm_.c:274
+#: ../../network.pm_.c:278
msgid ""
"Please enter your host name if you know it.\n"
"Some DHCP servers require the hostname to work.\n"
@@ -5218,21 +5832,21 @@ msgstr ""
"Óâ˙äçiöĺ iě˙ ńâŕ¸é ěŕřűíű (host).\n"
"Iě˙ âŕřŕé ěŕřűíű ďŕâiííŕ áűöü çŕäŕäçĺíŕ ďî˘íŕńöţ,\n"
"íŕďđűęëŕä ``mybox.mylab.myco.com''.\n"
-"Âű ěîćŕöĺ ňŕęńŕěŕ ˘âĺńöi IP ŕäđŕń řëţçŕ, ęŕëi ¸í ó âŕń ¸ńöü."
+"Âű ěîćŕöĺ ňŕęńŕěŕ ˘âĺńöi IP ŕäđŕń řëţçó, ęŕëi ¸í ó âŕń ¸ńöü."
-#: ../../network.pm_.c:278 ../../network.pm_.c:345
+#: ../../network.pm_.c:282 ../../network.pm_.c:392
msgid "Host name"
msgstr "Iě˙ ěŕřűíű"
-#: ../../network.pm_.c:297
+#: ../../network.pm_.c:319
msgid ""
"WARNING: This device has been previously configured to connect to the "
"Internet.\n"
-"Simply press OK to keep this device configured.\n"
+"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
msgstr ""
-#: ../../network.pm_.c:302
+#: ../../network.pm_.c:324
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -5242,33 +5856,38 @@ msgstr ""
"Ęîćíű ďóíęň ďŕâiíĺí áűöü çŕďî˘íĺíű ˙ę IP ŕäđŕń ˘ äçĺń˙ňęîâŕ-ęđîďęŕâŕé \n"
"íŕňŕöűi (íŕďđűęëŕä, 1.2.3.4)."
-#: ../../network.pm_.c:311 ../../network.pm_.c:312
+#: ../../network.pm_.c:333 ../../network.pm_.c:334
#, c-format
msgid "Configuring network device %s"
msgstr "Íŕńňđîéęŕ ńĺňęŕâŕé ďđűëŕäű %s"
-#: ../../network.pm_.c:314
-msgid "Automatic IP"
-msgstr "Ŕ˘ňŕěŕňű÷íű IP"
+#: ../../network.pm_.c:334
+msgid " (driver $module)"
+msgstr ""
-#: ../../network.pm_.c:314
+#: ../../network.pm_.c:336 ../../standalone/draknet_.c:231
+#: ../../standalone/draknet_.c:425
msgid "IP address"
msgstr "IP ŕäđŕń"
-#: ../../network.pm_.c:314
+#: ../../network.pm_.c:337 ../../standalone/draknet_.c:426
msgid "Netmask"
msgstr "Ěŕńęŕ ńĺňęi"
-#: ../../network.pm_.c:315
+#: ../../network.pm_.c:338
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network.pm_.c:321 ../../printerdrake.pm_.c:98
-#: ../../printerdrake.pm_.c:420
+#: ../../network.pm_.c:338
+msgid "Automatic IP"
+msgstr "Ŕ˘ňŕěŕňű÷íű IP"
+
+#: ../../network.pm_.c:359 ../../printerdrake.pm_.c:102
+#: ../../printerdrake.pm_.c:425
msgid "IP address should be in format 1.2.3.4"
msgstr "IP ŕäđŕń ďŕâiíĺí áűöü ó ôŕđěŕöĺ 1.2.3.4"
-#: ../../network.pm_.c:341
+#: ../../network.pm_.c:388
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -5278,45 +5897,45 @@ msgstr ""
"Óâ˙äçiöĺ iě˙ ńâŕ¸é ěŕřűíű (host).\n"
"Iě˙ âŕřŕé ěŕřűíű ďŕâiííŕ áűöü çŕäŕäçĺíŕ ďî˘íŕńöţ,\n"
"íŕďđűęëŕä ``mybox.mylab.myco.com''.\n"
-"Âű ěîćŕöĺ ňŕęńŕěŕ ˘âĺńöi IP ŕäđŕń řëţçŕ, ęŕëi ¸í ó âŕń ¸ńöü."
+"Âű ěîćŕöĺ ňŕęńŕěŕ ˘âĺńöi IP ŕäđŕń řëţçó, ęŕëi ¸í ó âŕń ¸ńöü."
-#: ../../network.pm_.c:346
+#: ../../network.pm_.c:393
msgid "DNS server"
msgstr "DNS ńĺđâĺđ"
-#: ../../network.pm_.c:347
+#: ../../network.pm_.c:394 ../../standalone/draknet_.c:563
msgid "Gateway"
msgstr "Řëţç"
-#: ../../network.pm_.c:348
+#: ../../network.pm_.c:396
msgid "Gateway device"
msgstr "Ďđűëŕäŕ-řëţç"
-#: ../../network.pm_.c:358
+#: ../../network.pm_.c:407
msgid "Proxies configuration"
-msgstr "Íŕńňđîéęŕ proxy ęýřűđóţ÷űő ńĺđâ˙đî˘"
+msgstr "Íŕńňđîéęŕ proxy ęýřóţ÷űő ńĺđâĺđŕ˘"
-#: ../../network.pm_.c:359
+#: ../../network.pm_.c:408
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network.pm_.c:360
+#: ../../network.pm_.c:409
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network.pm_.c:366
+#: ../../network.pm_.c:412
msgid "Proxy should be http://..."
msgstr "Proxy ďŕâiíĺí áűöü http://..."
-#: ../../network.pm_.c:367
+#: ../../network.pm_.c:413
msgid "Proxy should be ftp://..."
msgstr "Proxy ďŕâiíĺí áűöü ftp://..."
-#: ../../partition_table.pm_.c:540
+#: ../../partition_table.pm_.c:560
msgid "Extended partition not supported on this platform"
msgstr "Ďŕřűđŕíű đŕçäçĺë íĺ ďŕäňđűěëiâŕĺööŕ ăýňŕé ďëŕňôîđěŕé"
-#: ../../partition_table.pm_.c:558
+#: ../../partition_table.pm_.c:578
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -5326,117 +5945,95 @@ msgstr ""
"Ŕäçiíű âűőŕä ó ňűě, ęŕá ďĺđŕě˙ńöiöü ďĺđřŕńíű˙ đŕçäçĺëű ňŕę, ęŕá äçiđęŕ iřëŕ\n"
"ŕäđŕçó çŕ ďŕřűđŕíűě (extended) đŕçäçĺëŕě"
-#: ../../partition_table.pm_.c:651
+#: ../../partition_table.pm_.c:672
#, c-format
msgid "Error reading file %s"
-msgstr "Ďŕěűëęŕ ÷űňŕíí˙ ôŕéëŕ %s"
+msgstr "Ďŕěűëęŕ ÷űňŕíí˙ ôŕéëó %s"
-#: ../../partition_table.pm_.c:658
+#: ../../partition_table.pm_.c:679
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Ŕäíŕ˘ëĺííĺ ç ôŕéëŕ %s íĺ ŕňđűěŕëŕń˙: %s"
-#: ../../partition_table.pm_.c:660
+#: ../../partition_table.pm_.c:681
msgid "Bad backup file"
msgstr "Äđýííű ôŕéë đýçĺđâîâŕé ęîďii"
-#: ../../partition_table.pm_.c:681
+#: ../../partition_table.pm_.c:703
#, c-format
msgid "Error writing to file %s"
msgstr "Ďŕěűëęŕ çŕďińó ˘ ôŕéë %s"
-#: ../../pkgs.pm_.c:20
-msgid "mandatory"
-msgstr "ŕáŕâ˙çęîâŕ"
+#: ../../partition_table_raw.pm_.c:161
+msgid ""
+"Something bad is happening on your 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 trash"
+msgstr ""
-#: ../../pkgs.pm_.c:21
+#: ../../pkgs.pm_.c:24
msgid "must have"
msgstr "ďŕâiííű ěĺöü"
-#: ../../pkgs.pm_.c:22
+#: ../../pkgs.pm_.c:25
msgid "important"
msgstr "âŕćíŕ"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "very nice"
msgstr "âĺëüěi äîáđŕ"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "nice"
msgstr "äîáđŕ"
-#: ../../pkgs.pm_.c:26 ../../pkgs.pm_.c:27
-msgid "interesting"
-msgstr "öięŕâŕ"
-
-#: ../../pkgs.pm_.c:28 ../../pkgs.pm_.c:29 ../../pkgs.pm_.c:30
-#: ../../pkgs.pm_.c:31
+#: ../../pkgs.pm_.c:28
msgid "maybe"
msgstr "ěîćŕ áűöü"
-#: ../../pkgs.pm_.c:34
-msgid "i18n (important)"
-msgstr "i18n (âŕćíŕ)"
-
-#: ../../pkgs.pm_.c:35
-msgid "i18n (very nice)"
-msgstr "i18n (âĺëüěi äîáđŕ)"
-
-#: ../../pkgs.pm_.c:36
-msgid "i18n (nice)"
-msgstr "i18n (äîáđŕ)"
-
-#: ../../printer.pm_.c:19
+#: ../../printer.pm_.c:20
msgid "Local printer"
msgstr "Ëŕęŕëüíű ďđűíňýđ"
-#: ../../printer.pm_.c:20
+#: ../../printer.pm_.c:21
msgid "Remote printer"
msgstr "Ŕääŕëĺíű ďđűíňýđ"
-#: ../../printer.pm_.c:21 ../../printerdrake.pm_.c:410
-msgid "Remote CUPS server"
-msgstr "Ŕääŕëĺíű ńĺđâĺđ CUPS"
-
-#: ../../printer.pm_.c:22
+#: ../../printer.pm_.c:23
msgid "Remote lpd server"
msgstr "Ŕääŕëĺíű ńĺđâĺđ lpd"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:24
msgid "Network printer (socket)"
msgstr "Ńĺňęŕâű ďđűíňýđ (socket)"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:25
msgid "SMB/Windows 95/98/NT"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:26
msgid "NetWare"
msgstr "NetWare"
-#: ../../printer.pm_.c:26 ../../printerdrake.pm_.c:154
-#: ../../printerdrake.pm_.c:156
+#: ../../printer.pm_.c:27 ../../printerdrake.pm_.c:158
+#: ../../printerdrake.pm_.c:160
msgid "Printer Device URI"
-msgstr "URI ďđűíňýđŕ"
-
-#: ../../printerdrake.pm_.c:19
-msgid "Detecting devices..."
-msgstr "Âűçíŕ÷ýííĺ ďđűëŕä..."
+msgstr "URI ďđűíňýđó"
#: ../../printerdrake.pm_.c:19
msgid "Test ports"
msgstr "Ďđŕâĺđęŕ ďŕđňî˘"
-#: ../../printerdrake.pm_.c:35
+#: ../../printerdrake.pm_.c:40
#, c-format
msgid "A printer, model \"%s\", has been detected on "
msgstr "Ďđűíňýđ ěŕäýëi \"%s\" çíîéäçĺíű íŕ "
-#: ../../printerdrake.pm_.c:48
+#: ../../printerdrake.pm_.c:52
msgid "Local Printer Device"
msgstr "Ëŕęŕëüíű ďđűíňýđ"
-#: ../../printerdrake.pm_.c:49
+#: ../../printerdrake.pm_.c:53
msgid ""
"What device is your printer connected to \n"
"(note that /dev/lp0 is equivalent to LPT1:)?\n"
@@ -5444,15 +6041,15 @@ msgstr ""
"Äŕ ˙ęîăŕ ďîđňó äŕëó÷ŕíű âŕř ďđűíňýđ \n"
"(/dev/lp0 ýęâiâŕëĺíňíű LPT1:)?\n"
-#: ../../printerdrake.pm_.c:51
+#: ../../printerdrake.pm_.c:55
msgid "Printer Device"
-msgstr "Ďîđň ďđűíňýđŕ"
+msgstr "Ďîđň ďđűíňýđó"
-#: ../../printerdrake.pm_.c:70
+#: ../../printerdrake.pm_.c:74
msgid "Remote lpd Printer Options"
-msgstr "Îďöűi ŕääŕëĺíŕăŕ ďđűíňýđŕ lpd"
+msgstr "Îďöűi ŕääŕëĺíŕăŕ ďđűíňýđó lpd"
-#: ../../printerdrake.pm_.c:71
+#: ../../printerdrake.pm_.c:75
msgid ""
"To use a remote lpd print queue, you need to supply\n"
"the hostname of the printer server and the queue name\n"
@@ -5462,19 +6059,19 @@ msgstr ""
"ďŕçíŕ÷űöü iě˙ ŕääŕëĺíŕăŕ ńĺđâĺđŕ i iě˙ ÷ŕđăi äđóęó,\n"
"ó ˙ęóţ ŕääŕëĺíű ńĺđâĺđ áóäçĺ ŕäďđŕ˘ë˙öü çŕäŕííi."
-#: ../../printerdrake.pm_.c:74
+#: ../../printerdrake.pm_.c:78
msgid "Remote hostname"
msgstr "Ŕääŕëĺíű âóçĺë"
-#: ../../printerdrake.pm_.c:75
+#: ../../printerdrake.pm_.c:79
msgid "Remote queue"
msgstr "Ŕääŕëĺíŕ˙ ÷ŕđăŕ äđóęó"
-#: ../../printerdrake.pm_.c:84
+#: ../../printerdrake.pm_.c:88
msgid "SMB (Windows 9x/NT) Printer Options"
-msgstr "Îďöűi ďđűíňýđŕ SMB (Windows 9x/NT)"
+msgstr "Îďöűi ďđűíňýđó SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:85
+#: ../../printerdrake.pm_.c:89
msgid ""
"To print to a SMB printer, you need to provide the\n"
"SMB host name (Note! It may be different from its\n"
@@ -5482,87 +6079,87 @@ msgid ""
"well as the share name for the printer you wish to access and any\n"
"applicable user name, password, and workgroup information."
msgstr ""
-"Äë˙ äđóęó íŕ ďđűíňýđű SMB íĺŕáőîäíŕ ďŕçíŕ÷űöü iě˙ őŕńňŕ SMB (íĺ çŕ˘ń¸äű "
+"Äë˙ äđóęó íŕ ďđűíňýđű SMB íĺŕáőîäíŕ ďŕçíŕ÷űöü iě˙ őîńňó SMB (íĺ çŕ˘ń¸äű "
"ńóďŕäŕĺ ç iěĺíĺě ó ńĺňöű TCP/IP) i ŕäđŕń IP ńĺđâĺđŕ äđóęó, ŕ ňŕęńŕěŕ iě˙ "
-"đýńóđńŕ, ˙ęi ńďŕëó÷ŕíű ç âűáđŕíűě ďđűíňýđŕě, iě˙ ęŕđűńňŕëüíięŕ, ďŕđîëü i "
-"iíôŕđěŕöűţ ŕá đŕáî÷ŕé ăđóďĺ."
+"đýńóđńó, ˙ęi ńďŕëó÷ŕíű ç âűáđŕíűě ďđűíňýđŕě, iě˙ ęŕđűńňŕëüíięó, ďŕđîëü i "
+"iíôŕđěŕöűţ ŕá ďđŕöî˘íŕé ăđóďĺ."
-#: ../../printerdrake.pm_.c:90
+#: ../../printerdrake.pm_.c:94
msgid "SMB server host"
-msgstr "Iě˙ ńĺđâĺđŕ SMB"
+msgstr "Iě˙ ńĺđâĺđó SMB"
-#: ../../printerdrake.pm_.c:91
+#: ../../printerdrake.pm_.c:95
msgid "SMB server IP"
msgstr "IP ńĺđâĺđŕ SMB"
-#: ../../printerdrake.pm_.c:92
+#: ../../printerdrake.pm_.c:96
msgid "Share name"
-msgstr "Iě˙ äë˙ đŕçěĺđęŕâŕíŕăŕ đýńóđńŕ"
+msgstr "Iě˙ äë˙ đŕçěĺđęŕâŕíŕăŕ đýńóđńó"
-#: ../../printerdrake.pm_.c:95
+#: ../../printerdrake.pm_.c:99
msgid "Workgroup"
-msgstr "Đŕáî÷ŕ˙ ăđóďŕ"
+msgstr "Ďđŕöî˘íŕ˙ ăđóďŕ"
-#: ../../printerdrake.pm_.c:120
+#: ../../printerdrake.pm_.c:124
msgid "NetWare Printer Options"
-msgstr "Îďöűi ďđűíňýđŕ NetWare"
+msgstr "Îďöűi ďđűíňýđó NetWare"
-#: ../../printerdrake.pm_.c:121
+#: ../../printerdrake.pm_.c:125
msgid ""
"To print to a NetWare printer, you need to provide the\n"
"NetWare print server name (Note! it may be different from its\n"
"TCP/IP hostname!) as well as the print queue name for the printer you\n"
"wish to access and any applicable user name and password."
msgstr ""
-"Äë˙ äđóęó íŕ ďđűíňýđ NetWare íĺŕáőîäíŕ ďŕçíŕ÷űöü iě˙ ńĺđâĺđŕ äđóęó NetWare "
+"Äë˙ äđóęó íŕ ďđűíňýđű NetWare íĺŕáőîäíŕ ďŕçíŕ÷űöü iě˙ ńĺđâĺđó äđóęó NetWare "
"(íĺ çŕ˘ń¸äű ńóďŕäŕĺ ç iěĺíĺě ó ńĺňöű TCP/IP) i iě˙ ÷ŕđăi äđóęó, ˙ęŕ˙ "
-"ŕäďŕâ˙äŕĺ âűáđŕíŕěó ďđűíňýđó, ŕ ňŕęńŕěŕ iě˙ ęŕđűńňŕëüíięŕ i ďŕđîëü."
+"ŕäďŕâ˙äŕĺ ŕáđŕíŕěó ďđűíňýđó, ŕ ňŕęńŕěŕ iě˙ ęŕđűńňŕëüíięó i ďŕđîëü."
-#: ../../printerdrake.pm_.c:125
+#: ../../printerdrake.pm_.c:129
msgid "Printer Server"
msgstr "Ńĺđâĺđ äđóęó"
-#: ../../printerdrake.pm_.c:126
+#: ../../printerdrake.pm_.c:130
msgid "Print Queue Name"
msgstr "Iě˙ ÷ŕđăi äđóęó"
-#: ../../printerdrake.pm_.c:138
+#: ../../printerdrake.pm_.c:142
msgid "Socket Printer Options"
-msgstr "Îďöűi ńîęĺňó ďđűíňýđŕ"
+msgstr "Îďöűi ńîęĺňó ďđűíňýđó"
-#: ../../printerdrake.pm_.c:139
+#: ../../printerdrake.pm_.c:143
msgid ""
"To print to a socket printer, you need to provide the\n"
"hostname of the printer and optionally the port number."
msgstr ""
"Ęŕá äđóęŕâŕöü ďđŕç ńîęĺň äđóęŕđęi, âŕě íĺŕáőîäíŕ çŕá˙ńďĺ÷űöü\n"
-"iě˙ ďđűíňýđŕ i ěŕă÷űěŕ ˙ăî íóěŕđ ďîđňó."
+"iě˙ ďđűíňýđó i ěŕă÷űěŕ ˙ăî íóěŕđ ďîđňó."
-#: ../../printerdrake.pm_.c:141
+#: ../../printerdrake.pm_.c:145
msgid "Printer Hostname"
-msgstr "Iě˙ ďđűíňýđŕ"
+msgstr "Iě˙ ďđűíňýđó"
-#: ../../printerdrake.pm_.c:142 ../../printerdrake.pm_.c:417
+#: ../../printerdrake.pm_.c:146 ../../printerdrake.pm_.c:422
msgid "Port"
msgstr "Ďîđň"
-#: ../../printerdrake.pm_.c:155
+#: ../../printerdrake.pm_.c:159
msgid "You can specify directly the URI to access the printer with CUPS."
-msgstr "Âű ěîćŕöĺ âűçíŕ÷űöü íŕďđŕěóţ URI ęŕá äŕëó÷űööŕ äŕ äđóęŕđęi ç CUPS."
+msgstr "Âű ěîćŕöĺ âűçíŕ÷űöü íŕ˘ďđîńň URI ęŕá äŕëó÷űööŕ äŕ äđóęŕđęi ç CUPS."
-#: ../../printerdrake.pm_.c:188 ../../printerdrake.pm_.c:240
+#: ../../printerdrake.pm_.c:192 ../../printerdrake.pm_.c:244
msgid "What type of printer do you have?"
msgstr "ßęi ňűď äđóęŕđęi âű ěŕĺöĺ?"
-#: ../../printerdrake.pm_.c:200 ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:204 ../../printerdrake.pm_.c:305
msgid "Do you want to test printing?"
msgstr "Ćŕäŕĺöĺ ďđŕňýńöiđŕâŕöü äđóę?"
-#: ../../printerdrake.pm_.c:203 ../../printerdrake.pm_.c:318
+#: ../../printerdrake.pm_.c:207 ../../printerdrake.pm_.c:316
msgid "Printing test page(s)..."
msgstr "Äđóę ňýńňŕâűő ńňŕđîíŕę"
-#: ../../printerdrake.pm_.c:210 ../../printerdrake.pm_.c:326
+#: ../../printerdrake.pm_.c:214 ../../printerdrake.pm_.c:324
#, c-format
msgid ""
"Test page(s) have been sent to the printer daemon.\n"
@@ -5573,99 +6170,95 @@ msgid ""
"Does it work properly?"
msgstr ""
"Ňýńňŕâű˙ ńňŕđîíęi ŕäďđŕ˘ëĺíű äýěŕíó äđóęó.\n"
-"Ďĺđŕä ňűě, ˙ę ďđűíňýđ çŕďđŕöóĺ, ěîćŕ ďđŕéńöi íĺęŕňîđű ÷ŕń.\n"
+"Ďĺđŕä ňűě, ˙ę ďđűíňýđ çŕďđŕöóĺ, ěîćŕ ďđŕéńöi ďý˘íű ÷ŕń.\n"
"Ńňŕňóń äđóęó:\n"
"%s\n"
"\n"
"¨í ďđŕöóĺ íŕđěŕëüíŕ?"
-#: ../../printerdrake.pm_.c:214 ../../printerdrake.pm_.c:330
+#: ../../printerdrake.pm_.c:218 ../../printerdrake.pm_.c:328
msgid ""
"Test page(s) have been sent to the printer daemon.\n"
"This may take a little time before printer start.\n"
"Does it work properly?"
msgstr ""
"Ňýńňŕâű˙ ńňŕđîíęi ŕäďđŕ˘ëĺíű äýěŕíó äđóęó.\n"
-"Ďĺđŕä ňűě, ˙ę ďđűíňýđ çŕďđŕöóĺ, ěîćŕ ďđŕéńöi íĺęŕňîđű ÷ŕń.\n"
+"Ďĺđŕä ňűě, ˙ę ďđűíňýđ çŕďđŕöóĺ, ěîćŕ ďđŕéńöi ďý˘íű ÷ŕń.\n"
"¨í ďđŕöóĺ íŕđěŕëüíŕ?"
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:234
msgid "Yes, print ASCII test page"
-msgstr "Ňŕę, íŕäđóęŕâŕöü ńňŕđîíęó ňýęńňŕ ASCII"
+msgstr "Ňŕę, íŕäđóęŕâŕöü ńňŕđîíęó ňýęńňó ASCII"
-#: ../../printerdrake.pm_.c:231
+#: ../../printerdrake.pm_.c:235
msgid "Yes, print PostScript test page"
-msgstr "Ňŕę, íŕäđóęŕâŕöü ńňŕđîíęó ňýęńňŕ PostScript"
+msgstr "Ňŕę, íŕäđóęŕâŕöü ńňŕđîíęó ňýęńňó PostScript"
-#: ../../printerdrake.pm_.c:232
+#: ../../printerdrake.pm_.c:236
msgid "Yes, print both test pages"
-msgstr "Ňŕę, íŕäđóęŕâŕöü ŕáîäâĺ ńňŕđîíęi ňýęńňŕ"
+msgstr "Ňŕę, íŕäđóęŕâŕöü ŕáĺäçâĺ ńňŕđîíęi ňýęńňó"
-#: ../../printerdrake.pm_.c:239
+#: ../../printerdrake.pm_.c:243
msgid "Configure Printer"
-msgstr "Íŕńňđîéęŕ ďđűíňýđŕ"
+msgstr "Íŕńňđîéęŕ ďđűíňýđó"
-#: ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:273
msgid "Printer options"
-msgstr "Îďöűi ďđűíňýđŕ"
+msgstr "Îďöűi ďđűíňýđó"
-#: ../../printerdrake.pm_.c:273
+#: ../../printerdrake.pm_.c:274
msgid "Paper Size"
msgstr "Ďŕěĺđű ďŕďĺđű"
-#: ../../printerdrake.pm_.c:274
+#: ../../printerdrake.pm_.c:275
msgid "Eject page after job?"
msgstr "Âűřňóđőâŕöü ďŕďĺđó ďŕńë˙ äđóęó?"
-#: ../../printerdrake.pm_.c:279
+#: ../../printerdrake.pm_.c:280
msgid "Uniprint driver options"
-msgstr "Ďŕđŕěĺňđű äđŕéâĺđŕ Uniprint"
+msgstr "Ďŕđŕěĺňđű äđŕéâĺđó Uniprint"
-#: ../../printerdrake.pm_.c:280
+#: ../../printerdrake.pm_.c:281
msgid "Color depth options"
msgstr "Ďŕđŕěĺňđű ăëűáiíi ęîëĺđó"
-#: ../../printerdrake.pm_.c:282
+#: ../../printerdrake.pm_.c:283
msgid "Print text as PostScript?"
msgstr "Äđóęŕâŕöü ňýęńň ˙ę PostScript?"
-#: ../../printerdrake.pm_.c:283
-msgid "Reverse page order"
-msgstr "Ŕäâŕđîňíű ďŕđŕäŕę ńňŕđîíŕę"
-
#: ../../printerdrake.pm_.c:285
msgid "Fix stair-stepping text?"
msgstr "Ęŕđýęňŕâŕöü ďđűńňóďęŕâű ňýęńň?"
-#: ../../printerdrake.pm_.c:288
+#: ../../printerdrake.pm_.c:287
msgid "Number of pages per output pages"
msgstr "Íóěŕđ ńňŕđîíęi ŕä ęîëüęŕńöi íŕäđóęŕâŕíűő ńňŕđîíŕę"
-#: ../../printerdrake.pm_.c:289
+#: ../../printerdrake.pm_.c:288
msgid "Right/Left margins in points (1/72 of inch)"
msgstr "Ďđŕâŕĺ/ëĺâŕĺ ďŕëi ˘ ęđîďęŕő (1/72 äçţéěŕ)"
-#: ../../printerdrake.pm_.c:290
+#: ../../printerdrake.pm_.c:289
msgid "Top/Bottom margins in points (1/72 of inch)"
msgstr "Âĺđőí˙ĺ/Íićí˙ĺ ďŕëi ˘ ęđîďęŕő (1/72 äçţéěŕ)"
-#: ../../printerdrake.pm_.c:293
+#: ../../printerdrake.pm_.c:291
msgid "Extra GhostScript options"
msgstr "Äŕäŕňęîâű˙ îďöűi GhostScript"
-#: ../../printerdrake.pm_.c:296
+#: ../../printerdrake.pm_.c:293
msgid "Extra Text options"
msgstr "Äŕäŕňęîâű˙ ďŕđŕěĺňđű ňýęńňó"
-#: ../../printerdrake.pm_.c:346
-msgid "Printer"
-msgstr "Ďđűíňýđ"
+#: ../../printerdrake.pm_.c:295
+msgid "Reverse page order"
+msgstr "Ŕäâŕđîňíű ďŕđŕäŕę ńňŕđîíŕę"
-#: ../../printerdrake.pm_.c:347
+#: ../../printerdrake.pm_.c:345
msgid "Would you like to configure a printer?"
msgstr "Ćŕäŕĺöĺ íŕńňđîiöü ďđűíňýđ?"
-#: ../../printerdrake.pm_.c:350
+#: ../../printerdrake.pm_.c:351
msgid ""
"Here are the following print queues.\n"
"You can add some more or change the existing ones."
@@ -5673,39 +6266,39 @@ msgstr ""
"Ňóň çě˙ř÷ŕţööŕ ÷ýđăi äđóęó.\n"
"Âű ěîćŕöĺ äŕäŕöü ˙ř÷ý, ŕëüáî çě˙íiöü ińíóţ÷ű˙."
-#: ../../printerdrake.pm_.c:365
+#: ../../printerdrake.pm_.c:370
#, fuzzy
msgid "CUPS starting"
msgstr "×ŕęŕĺööŕ"
-#: ../../printerdrake.pm_.c:365
+#: ../../printerdrake.pm_.c:370
msgid "Reading CUPS drivers database..."
-msgstr ""
+msgstr "×űňŕţ áŕçó äŕäçĺíűő äđŕéâĺđî˘ CUPS"
-#: ../../printerdrake.pm_.c:379 ../../printerdrake.pm_.c:444
-#: ../../printerdrake.pm_.c:457 ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:384 ../../printerdrake.pm_.c:450
+#: ../../printerdrake.pm_.c:471 ../../printerdrake.pm_.c:479
msgid "Select Printer Connection"
-msgstr "Âűáŕđ ňűďó çëó÷ýíí˙ ďđűíňýđŕ"
+msgstr "Âűáŕđ ňűďó çëó÷ýíí˙ ďđűíňýđó"
-#: ../../printerdrake.pm_.c:380 ../../printerdrake.pm_.c:458
+#: ../../printerdrake.pm_.c:385 ../../printerdrake.pm_.c:472
msgid "How is the printer connected?"
msgstr "ßę ďđűíňŕđ äŕëó÷ŕíű?"
-#: ../../printerdrake.pm_.c:387
+#: ../../printerdrake.pm_.c:392
msgid "Select Remote Printer Connection"
msgstr "Âűáŕđ ňűďó çëó÷ýíí˙ ç ŕääŕëĺíűě ďđűíňýđŕě"
-#: ../../printerdrake.pm_.c:388
+#: ../../printerdrake.pm_.c:393
msgid ""
"With a remote CUPS server, you do not have to configure\n"
"any printer here; printers will be automatically detected.\n"
"In case of doubt, select \"Remote CUPS server\"."
msgstr ""
-"Ŕääŕëĺíű CUPS ńĺđâĺđ íĺ ďŕňđŕáóĺ ŕä Âŕń íŕńňđîéęł ďđűíňýđŕ\n"
+"Ŕääŕëĺíű CUPS ńĺđâĺđ íĺ ďŕňđŕáóĺ ŕä Âŕń íŕńňđîéęł ďđűíňýđó\n"
"íŕ ăýňŕé ěŕřűíĺ, ¸í áóäçĺ çíîéäçĺíű ŕ˘ňŕěŕňű÷íŕ.\n"
-"Ęŕëł Âű íĺ ˘ďý˘íĺíű, âűáĺđűöĺ \"Ŕääŕëĺíű ńĺđâĺđ CUPS\"."
+"Ęŕëł Âű íĺ ˘ďý˘íĺíű, ŕá˙đűöĺ \"Ŕääŕëĺíű ńĺđâĺđ CUPS\"."
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:416
#, fuzzy
msgid ""
"With a remote CUPS server, you do not have to configure\n"
@@ -5714,24 +6307,29 @@ msgid ""
"latter case, you have to give the CUPS server IP address\n"
"and optionally the port number."
msgstr ""
-"Ŕääŕëĺíű CUPS ńĺđâĺđ íĺ ďŕňđŕáóĺ ŕä Âŕń íŕńňđîéęł ďđűíňýđŕ\n"
+"Ŕääŕëĺíű CUPS ńĺđâĺđ íĺ ďŕňđŕáóĺ ŕä Âŕń íŕńňđîéęł ďđűíňýđó\n"
"íŕ ăýňŕé ěŕřűíĺ, ¸í áóäçĺ çíîéäçĺíű ŕ˘ňŕěŕňű÷íŕ.\n"
-"Ęŕëł Âű íĺ ˘ďý˘íĺíű, âűáĺđűöĺ \"Ŕääŕëĺíű ńĺđâĺđ CUPS\"."
+"Ęŕëł Âű íĺ ˘ďý˘íĺíű, ŕá˙đűöĺ \"Ŕääŕëĺíű ńĺđâĺđ CUPS\"."
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:421
#, fuzzy
msgid "CUPS server IP"
msgstr "IP ńĺđâĺđŕ SMB"
-#: ../../printerdrake.pm_.c:424
+#: ../../printerdrake.pm_.c:429
msgid "Port number should be numeric"
msgstr ""
-#: ../../printerdrake.pm_.c:445 ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:451 ../../printerdrake.pm_.c:480
msgid "Remove queue"
msgstr "Âűäŕëiöü ÷ŕđăó äđóęó"
-#: ../../printerdrake.pm_.c:446
+#: ../../printerdrake.pm_.c:454
+msgid ""
+"Name of printer should contains only letters, numbers and the underscore"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:461
msgid ""
"Every printer need a name (for example lp).\n"
"Other parameters such as the description of the printer or its location\n"
@@ -5744,19 +6342,19 @@ msgstr ""
" ˙ăî đŕçěĺđęŕâŕííĺ, ěîăóöü áűöü ďŕçíŕ÷ŕíű. ßęîĺ iě˙ äŕ äđŕęóđęi âű áóäçĺöĺ\n"
"ńęŕđűńňî˘âŕöü i ˙ę ăýňŕ˙ äđóęŕđęŕ äŕëó÷ŕĺööŕ?"
-#: ../../printerdrake.pm_.c:450
+#: ../../printerdrake.pm_.c:465
msgid "Name of printer"
msgstr "Iě˙ äđóęŕđęi"
-#: ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:466
msgid "Description"
msgstr "Ŕďińŕííĺ"
-#: ../../printerdrake.pm_.c:452
+#: ../../printerdrake.pm_.c:467
msgid "Location"
msgstr "Đŕçěĺđęŕâŕííĺ"
-#: ../../printerdrake.pm_.c:465
+#: ../../printerdrake.pm_.c:482
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"
@@ -5764,48 +6362,52 @@ msgid ""
"connected?"
msgstr ""
"Ęîćíŕ˙ ÷ŕđăŕ äđóęó, ó ˙ęóţ ŕäďđŕ˘ë˙ţööŕ çŕäŕííi äë˙ äđóęó, ďŕňđŕáóĺ "
-"ďŕçíŕ÷ýíí˙ iě˙ (çâű÷ŕéíŕ lp) i ńďŕëó÷ŕíŕăŕ ç ¸ţ ęŕňŕëîăŕ ńďóëiíăŕ. Ďŕçíŕ÷öĺ "
+"ďŕçíŕ÷ýíí˙ iě˙ (çâű÷ŕéíŕ lp) i ńďŕëó÷ŕíŕăŕ ç ¸ţ ęŕňŕëîăó ńďóëiíăó. Ďŕçíŕ÷öĺ "
"iě˙ i ęŕňŕëîă äë˙ ÷ŕđăi."
-#: ../../printerdrake.pm_.c:468
+#: ../../printerdrake.pm_.c:489
msgid "Name of queue"
msgstr "Iě˙ ÷ŕđăi äđóęó"
-#: ../../printerdrake.pm_.c:469
+#: ../../printerdrake.pm_.c:490
msgid "Spool directory"
-msgstr "Äűđýęňîđű˙ ńďóëiíăŕ"
+msgstr "Äűđýęňîđű˙ ńďóëiíăó"
-#: ../../printerdrake.pm_.c:470
+#: ../../printerdrake.pm_.c:491
msgid "Printer Connection"
-msgstr "Çëó÷ýííĺ ďđűíňýđŕ"
+msgstr "Çëó÷ýííĺ ďđűíňýđó"
-#: ../../raid.pm_.c:32
+#: ../../raid.pm_.c:33
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Íĺ ŕňđűěëiâŕĺööŕ äŕäŕöü đŕçäçĺë íŕ _ŕäôŕđěŕöiđŕâŕíű_ RAID md%d"
-#: ../../raid.pm_.c:102
+#: ../../raid.pm_.c:103
msgid "Can't write file $file"
msgstr "Íĺ ŕňđűěëiâŕĺööŕ çŕďiń ó ôŕéë $file"
-#: ../../raid.pm_.c:127
+#: ../../raid.pm_.c:128
msgid "mkraid failed"
msgstr "mkraid íĺ ďđŕöŕçäîëüíű"
-#: ../../raid.pm_.c:127
+#: ../../raid.pm_.c:128
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid íĺ ďđŕöŕçäîëüíű (ěîćŕ raid ďđűëŕäű ŕäńóňíi÷ŕţöü?)"
-#: ../../raid.pm_.c:143
+#: ../../raid.pm_.c:144
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Íĺäŕńňŕňęîâŕ đŕçäçĺëࢠäë˙ RAID óçđî˘í˙ %d\n"
-#: ../../services.pm_.c:15
+#: ../../services.pm_.c:16
+msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
+msgstr ""
+
+#: ../../services.pm_.c:17
msgid "Anacron a periodic command scheduler."
msgstr "Anacron, ďĺđű˙äű÷íű ęŕěŕíäíű ďëŕíŕâŕëüíię."
-#: ../../services.pm_.c:16
+#: ../../services.pm_.c:18
msgid ""
"apmd is used for monitoring batery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
@@ -5814,15 +6416,15 @@ msgstr ""
"ńňŕňűńňűęi.\n"
"ßăî ěîćíŕ âűęŕđűńňî˘âŕöü äë˙ âűęëţ÷ýíí˙ ěŕřűíű ďđű íiçęiě çŕđŕäçĺ áŕňŕđýi."
-#: ../../services.pm_.c:18
+#: ../../services.pm_.c:20
msgid ""
"Runs commands scheduled by the at command at the time specified when\n"
"at was run, and runs batch commands when the load average is low enough."
msgstr ""
-"Ęŕěŕíäű, ˙ęi˙ âűęîíâŕţööŕ, ôięńóţööŕ ďŕ ęŕěŕíäçĺ i ÷ŕńó ˙ĺ âűęŕíŕíí˙\n"
+"Ęŕěŕíäű, ˙ęi˙ âűęîíâŕţööŕ, ôięńóţööŕ ďŕ ęŕěŕíäçĺ i ÷ŕńĺ ˙ĺ âűęŕíŕíí˙\n"
"i âűęîíâŕţööŕ ăđóďű ęŕěŕíä, ęŕëi çŕăđóçęŕ ďŕě˙öi íićýé äŕńňŕňęîâŕé."
-#: ../../services.pm_.c:20
+#: ../../services.pm_.c:22
msgid ""
"cron is a standard UNIX program that runs user-specified programs\n"
"at periodic scheduled times. vixie cron adds a number of features to the "
@@ -5834,19 +6436,25 @@ msgstr ""
"ńňŕíäŕđňíŕăŕ\n"
"UNIX cron, óęëţ÷ŕţ÷ű ëĺďřű ˘çđîâĺíü á˙ńďĺęi i ěîöíű˙ ęŕíôiăóđŕöűéíű˙ îďöűi."
-#: ../../services.pm_.c:23
+#: ../../services.pm_.c:25
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
"operations,\n"
"and includes support for pop-up menus on the console."
msgstr ""
-"GPM äŕäŕĺ ďŕäňđűěęó ěűři äŕ ďđŕăđŕěŕ˘, ˙ęi˙ ďđŕöóţöü ó ňýęńňŕâűě đýćűěĺ,\n"
+"GPM äŕäŕĺ ďŕäňđűěęó ěűřű äŕ ďđŕăđŕěŕ˘, ˙ęi˙ ďđŕöóţöü ó ňýęńňŕâűě đýćűěĺ,\n"
"ňŕęiő ˙ę Midnight Commander. Ăýňŕ äŕçâŕë˙ĺ âűęŕđűńňî˘âŕöü ěűř ďđű "
"ęŕďiđŕâŕííi i ˘ńňŕ˘öű,\n"
"i ˘ęëţ÷ŕĺ ďŕäňđűěęó ˘ńďëűâŕţ÷űő (pop-up) ěĺíţ ˘ ňýęńňŕâűě đýćűěĺ."
-#: ../../services.pm_.c:26
+#: ../../services.pm_.c:28
+msgid ""
+"HardDrake runs a hardware probe, and optionally configures\n"
+"new/changed hardware."
+msgstr ""
+
+#: ../../services.pm_.c:30
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files\n"
"and CGI."
@@ -5854,7 +6462,7 @@ msgstr ""
"Apache - ăýňŕ World Wide Web ńĺđâĺđ. ¨í âűęŕđűńňî˘çâŕĺöŕ äë˙ ŕáńëóăî˘âŕíí˙\n"
"HTML ôŕéëࢠi CGI."
-#: ../../services.pm_.c:28
+#: ../../services.pm_.c:32
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
@@ -5863,14 +6471,20 @@ msgid ""
"disables\n"
"all of the services it is responsible for."
msgstr ""
-"Iíňýđíýň ńóďĺđńĺđâĺđ-äýěŕí (íŕçűâŕĺööŕ inetd) çŕďóńęŕĺ ďđű ńňŕđöĺ \n"
+"Iíňýđíýň ńóďĺđńĺđâĺđ-äýěŕí (çŕâĺööŕ inetd) çŕďóńęŕĺ ďđű ńňŕđöĺ \n"
"ęîëüęŕńöü đîçíűő iíňýđíýň ńëóćáŕ˘, ˙ęi˙ íĺŕáőîäíű. ßăî ěîćíŕ âűęŕđűńňî˘âŕöü "
"äë˙ ďóńęó\n"
-"ěíîăiő ńëóćáŕ˘, óęëţ÷ŕţ÷ű telnet, ftp, rsh i rlogin. Áëŕęiđó˙ inetd, "
-"áëŕęiđóĺě\n"
+"řěŕňëłęłő ńëóćáŕ˘, óęëţ÷ŕţ÷ű telnet, ftp, rsh i rlogin. Áëŕęóţ÷ű inetd, "
+"áëŕęóĺě\n"
"óńĺ ńëóćáű, çŕ ˙ęi˙ ¸í ŕäęŕçâŕĺ."
-#: ../../services.pm_.c:32
+#: ../../services.pm_.c:36
+msgid ""
+"Launch packet filtering for Linux kernel 2.2 series, to set\n"
+"up a firewall to protect your machine from network attacks."
+msgstr ""
+
+#: ../../services.pm_.c:38
msgid ""
"This package loads the selected keyboard map as set in\n"
"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
@@ -5879,9 +6493,25 @@ msgstr ""
"Ăýňű ďŕęĺň çŕăđóćŕĺ ŕáđŕíóţ đŕńęëŕäęó ęëŕâi˙ňóđű ˙ę íŕáîđ ç\n"
"/etc/sysconfig/keyboard. ¨íŕ ěîćŕ áűöü ŕáđŕíŕ ňŕęńŕěŕ ç äŕďŕěîăŕé "
"kbdconfig.\n"
-"Âű ěîćŕöĺ çđŕáiöü äŕńňóďíŕé ˙ĺ äë˙ ěíîăiő ěŕřűí."
+"Âű ěîćŕöĺ çđŕáiöü äŕńňóďíŕé ˙ĺ äë˙ řěŕňëłęłő ěŕřűíŕ˘."
-#: ../../services.pm_.c:35
+#: ../../services.pm_.c:41
+msgid ""
+"Automatic regeneration of kernel header in /boot for\n"
+"/usr/include/linux/{autoconf,version}.h"
+msgstr ""
+
+#: ../../services.pm_.c:43
+msgid "Automatic detection and configuration of hardware at boot."
+msgstr ""
+
+#: ../../services.pm_.c:44
+msgid ""
+"Linuxconf will sometimes arrange to perform various tasks\n"
+"at boot-time to maintain the system configuration."
+msgstr ""
+
+#: ../../services.pm_.c:46
msgid ""
"lpd is the print daemon required for lpr to work properly. It is\n"
"basically a server that arbitrates print jobs to printer(s)."
@@ -5889,7 +6519,13 @@ msgstr ""
"lpd - ăýňű äýěŕí äđóęó, ďŕňđýáíű äë˙ ęŕđýęňíŕé ďđŕöű lpr. Ăýňŕ\n"
"ńĺđâĺđ, ˙ęi ęiđóĺ ďđŕöŕé ďđűíňýđó(ŕ˘)."
-#: ../../services.pm_.c:37
+#: ../../services.pm_.c:48
+msgid ""
+"Linux Virtual Server, used to build a high-performance and highly\n"
+"available server."
+msgstr ""
+
+#: ../../services.pm_.c:50
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
"host names to IP addresses."
@@ -5897,15 +6533,15 @@ msgstr ""
"named (BIND) - ăýňŕ ńĺđâĺđ äŕěĺííűő iě¸íŕ˘, ˙ęi âűęŕđűńňî˘âŕĺööŕ äë˙\n"
"ďĺđŕęëŕäŕíí˙ iě¸í âóçëî˘ ó IP ŕäđŕńű."
-#: ../../services.pm_.c:39
+#: ../../services.pm_.c:52
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
msgstr ""
"Ěŕíöiđŕâŕöü i đŕçěŕíöiđŕâŕöü óńĺ ńĺňęŕâű˙ ôŕéëŕâű˙ ńińňýěű (NFS),\n"
-" SMB (Lan Manager/Windows) i NCP (Netware) ęđîďęi ěŕíöiđŕâŕíí˙."
+" SMB (Lan Manager/Windows) i NCP (Netware) ďóíęňű ěŕíöiđŕâŕíí˙."
-#: ../../services.pm_.c:41
+#: ../../services.pm_.c:54
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
@@ -5913,7 +6549,7 @@ msgstr ""
"Ŕęňűâiçŕâŕöü/äýŕęňűâiçŕâŕöü óńĺ ńĺňęŕâű˙ iíňýđôĺéńű, ńęŕíôiăóđŕâŕíű˙ äë˙\n"
"ńňŕđňó ďđű çŕăđóçöű ńińňýěű."
-#: ../../services.pm_.c:43
+#: ../../services.pm_.c:56
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
"This service provides NFS server functionality, which is configured via the\n"
@@ -5923,15 +6559,25 @@ msgstr ""
"Ăýňŕ˙ ńëóćáŕ çŕá˙ńďĺ÷âŕĺööŕ NFS ńĺđâĺđŕě, ˙ęi ęŕíôiăóđűđóĺöŕ ďđŕç\n"
"/etc/exports ôŕéë."
-#: ../../services.pm_.c:46
+#: ../../services.pm_.c:59
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP\n"
"networks. This service provides NFS file locking functionality."
msgstr ""
-"NFS - ăýňŕ â˙äćîěű ďđŕňŕęîë äë˙ äîńňóďó äŕ ôŕéëࢠďđŕç TCP/IP\n"
+"NFS - ăýňŕ â˙äîěű ďđŕňŕęîë äë˙ äîńňóďó äŕ ôŕéëࢠďđŕç TCP/IP\n"
"ńĺňęi. Ăýňŕ˙ ńëóćáŕ ˘ďëűâŕĺ íŕ íŕ˙˘íŕńöü ńóâ˙çi ďŕěić NFS ôŕéëŕěi."
-#: ../../services.pm_.c:48
+#: ../../services.pm_.c:61
+msgid ""
+"Automatically switch on numlock key locker under console\n"
+"and XFree at boot."
+msgstr ""
+
+#: ../../services.pm_.c:63
+msgid "Support the OKI 4w and compatible winprinters."
+msgstr ""
+
+#: ../../services.pm_.c:64
msgid ""
"PCMCIA support is usually to support things like ethernet and\n"
"modems in laptops. It won't get started unless configured so it is safe to "
@@ -5942,7 +6588,7 @@ msgstr ""
"ěŕäýěű ˘ íŕ˘ňáóęŕő. Âŕě í˙ěŕ íĺŕáőîäíŕńöi ęŕíôiăóđŕâŕöü iő, ęŕëi íŕ âŕřŕé\n"
"ěŕřűíĺ iő í˙ěŕ, öi ˙íŕ íĺ íŕ˘ňáóę."
-#: ../../services.pm_.c:51
+#: ../../services.pm_.c:67
msgid ""
"The portmapper manages RPC connections, which are used by\n"
"protocols such as NFS and NIS. The portmap server must be running on "
@@ -5954,15 +6600,15 @@ msgstr ""
"âűęîíâŕööŕ\n"
"íŕ ěŕřűíŕő ˙ęi˙ ďđŕöóţöü ˙ę ńĺđâĺđű äë˙ ďđŕňŕęîëŕ˘, ˙ęi˙ ńęŕđűńňî˘âŕţöü RPC."
-#: ../../services.pm_.c:54
+#: ../../services.pm_.c:70
msgid ""
"Postfix is a Mail Transport Agent, which is the program that\n"
"moves mail from one machine to another."
msgstr ""
-"Postfix - ăýňŕ ďŕřňîâű ňđŕíńďŕđňíű ŕăĺíň, ďđŕăđŕěŕ, ęŕňîđŕ˙\n"
-"ďĺđŕě˙ř÷ŕĺ ďîřňó ç ŕäíîé ěŕřűíű íŕ äđóăóţ."
+"Postfix - ăýňŕ ďŕřňîâű ňđŕíńďŕđňíű ŕăĺíň, ďđŕăđŕěŕ, ˙ęŕ˙\n"
+"ďĺđŕě˙ř÷ŕĺ ďîřňó ç ŕäíîé ěŕřűíű íŕ éířóţ."
-#: ../../services.pm_.c:56
+#: ../../services.pm_.c:72
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
@@ -5970,17 +6616,23 @@ msgstr ""
"Çŕőŕâŕöü i ŕäíŕâiöü ńińňýěíű ýíňđŕďiéíű ďóë äë˙ âűńîęŕé ˙ęŕńöi\n"
"ăĺíĺđŕöűł âűďŕäęîâűő ëłęŕ˘."
-#: ../../services.pm_.c:58
+#: ../../services.pm_.c:74
+msgid ""
+"Assign raw devices to block devices (such as hard drive\n"
+"partitions), for the use of applications such as Oracle"
+msgstr ""
+
+#: ../../services.pm_.c:76
msgid ""
"The routed daemon allows for automatic IP router table updated via\n"
"the RIP protocol. While RIP is widely used on small networks, more complex\n"
"routing protocols are needed for complex networks."
msgstr ""
-"Äýěŕí ěŕđřđóňűçŕöűi äŕçâŕë˙ĺ äë˙ äűíŕěi÷íűő ňŕáëiö IP ěŕđřđóňűçŕöűi\n"
+"Äýěŕí ěŕđřđóňűçŕöűi äŕçâŕë˙ĺ äűíŕěi÷íűě ňŕáëiöŕě IP ěŕđřđóňűçŕöűi\n"
"ŕäíŕ˘ë˙ööŕ ďđŕç RIP ďđŕňŕęîë. RIP âűęŕđűńňî˘âŕĺööŕ ˘ ěŕëűő ńĺňęŕő, áîëüř\n"
"ńęëŕäŕíű˙ ďđŕňŕęîëű ěŕđřđóňűçŕöűi - ó â˙ëięiő ńĺňęŕő."
-#: ../../services.pm_.c:61
+#: ../../services.pm_.c:79
msgid ""
"The rstat protocol allows users on a network to retrieve\n"
"performance metrics for any machine on that network."
@@ -5988,7 +6640,7 @@ msgstr ""
"Ďđŕňŕęîë rstat äŕçâŕë˙ĺ ęŕđűńňŕëüíięŕě ńĺňęi ŕňđűěëiâŕöü\n"
"ďŕěĺđű íŕăđóçęi äë˙ ęîćíŕé ěŕřűíű ńĺňęi."
-#: ../../services.pm_.c:63
+#: ../../services.pm_.c:81
msgid ""
"The rusers protocol allows users on a network to identify who is\n"
"logged in on other responding machines."
@@ -5996,7 +6648,7 @@ msgstr ""
"Ďđŕňŕęîë rusers äŕçâŕë˙ĺ ęŕđűńňŕëüíięŕě ńĺňęi âűçíŕ÷ŕöü, őňî\n"
"˘âŕéřî˘ i ďđŕöóĺ íŕ ěŕřűíŕő ˘ ńĺňöű."
-#: ../../services.pm_.c:65
+#: ../../services.pm_.c:83
msgid ""
"The rwho protocol lets remote users get a list of all of the users\n"
"logged into a machine running the rwho daemon (similiar to finger)."
@@ -6004,208 +6656,513 @@ msgstr ""
"Ďđŕňŕęîë rwho äŕĺ ěŕă÷űěŕńöü ęŕđűńňŕëüíięŕě ŕňđűěŕöü ńďiń ˘ńiő\n"
"ęŕđűńňŕëüíięŕ˘, óâŕéřî˘řűő íŕ ěŕřűíó, âűęŕíࢠrwho äýěŕí (ďŕäîáíű íŕ finger)."
-#: ../../services.pm_.c:67
+#: ../../services.pm_.c:85
+msgid "Launch the sound system on your machine"
+msgstr ""
+
+#: ../../services.pm_.c:86
msgid ""
"Syslog is the facility by which many daemons use to log messages\n"
"to various system log files. It is a good idea to always run syslog."
msgstr ""
"Syslog - ăýňŕ ńđîäŕę, ç äŕďŕěîăŕé ˙ęîăŕ ěíîăi˙ äýěŕíű çŕďińâŕţöü "
"ďŕâĺäŕěëĺííi\n"
-"˘ đîçíű˙ ôŕéëű ńňŕňűńňűęi. Ăýňŕ âĺëüěi äîáđŕ äë˙ ŕăë˙äó ďđŕöű đîçíűő ńëóćá."
+"˘ đîçíű˙ ôŕéëű ńňŕňűńňűęi. Ăýňŕ âĺëüěi äîáđŕ äë˙ ŕăë˙äó ďđŕöű đîçíűő ńëóćáŕ˘."
-#: ../../services.pm_.c:69
-msgid "This startup script try to load your modules for your usb mouse."
-msgstr " Ăýňű ďóńęŕâű ńęđűďň ŕäíŕ˘ë˙ĺ ˘ńĺ ěîäóëi äë˙ usb ěűři."
+#: ../../services.pm_.c:88
+msgid "Load the drivers for your usb devices."
+msgstr ""
-#: ../../services.pm_.c:70
-msgid "Starts and stops the X Font Server at boot time and shutdown."
+#: ../../services.pm_.c:89
+#, fuzzy
+msgid "Starts the X Font Server (this is mandatory for XFree to run)."
msgstr "Çŕďóńęŕĺ i ďđűďűí˙ĺ X Font Server ďđű çŕăđóçöű i âűęëţ÷ýííi."
-#: ../../services.pm_.c:99
+#: ../../services.pm_.c:118
msgid "Choose which services should be automatically started at boot time"
-msgstr "Âűá˙đűöĺ, ˙ęi˙ ńĺđâińű çŕďóńęŕöü ŕ˘ňŕěŕňű÷íŕ ďđű çŕăđóçöű"
+msgstr "Ŕá˙đűöĺ, ˙ęi˙ ńĺđâińű çŕďóńęŕöü ŕ˘ňŕěŕňű÷íŕ ďđű çŕăđóçöű"
-#: ../../standalone/diskdrake_.c:61
+#: ../../services.pm_.c:137
+#, fuzzy
+msgid "running"
+msgstr "Óâŕăŕ!"
+
+#: ../../services.pm_.c:137
+#, fuzzy
+msgid "stopped"
+msgstr "Äŕëó÷űöü"
+
+#: ../../services.pm_.c:151
+msgid "Services and deamons"
+msgstr ""
+
+#: ../../services.pm_.c:156
+msgid ""
+"No additionnal information\n"
+"about this service, sorry."
+msgstr ""
+
+#: ../../services.pm_.c:163
+#, fuzzy
+msgid "On boot"
+msgstr "Yaboot"
+
+#: ../../standalone/diskdrake_.c:67
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
msgstr ""
-"Ňŕáëiöŕ đŕçäçĺëࢠíĺ ÷űňŕĺööŕ, ˙íŕ çŕíŕäňŕ ńďîđ÷ŕíŕ äë˙ ěĺí˙ :(\n"
+"Ňŕáëiöŕ đŕçäçĺëࢠíĺ ÷űňŕĺööŕ, ˙íŕ çŕíŕäňŕ ńŕďńŕâŕíŕ äë˙ ěĺí˙ :(\n"
"Ďŕńďđŕáóţ ińöi äŕëĺé i áóäó ďđŕďóńęŕöü äđýííű˙ đŕçäçĺëű"
-#: ../../standalone/drakboot_.c:25
-msgid "Configure LILO/GRUB"
-msgstr "Íŕńňđîéęŕ LILO/GRUB"
-
-#: ../../standalone/drakboot_.c:26
-msgid "Create a boot floppy"
-msgstr "Ńňâŕđűöü çŕăđ. äűńę"
-
-#: ../../standalone/drakboot_.c:28
-msgid "Format floppy"
-msgstr "Ôŕđěŕöiđŕâŕöü äűńęĺňó"
-
-#: ../../standalone/drakboot_.c:40
-msgid "Choice"
-msgstr "Âűáŕđ"
-
-#: ../../standalone/drakboot_.c:59
-msgid "Installation of LILO failed. The following error occured:"
-msgstr "Óńňŕ븢ęŕ LILO íĺ ŕňđűěŕëŕń˙. Óçíięëŕ íŕńňóďíŕ˙ ďŕěűëęŕ:"
+#: ../../standalone/drakgw_.c:37 ../../standalone/drakgw_.c:180
+msgid "Internet Connection Sharing"
+msgstr "Ńóěĺńíŕĺ Iíňýđíýň-çëó÷ýííĺ"
-#: ../../standalone/drakgw_.c:103
+#: ../../standalone/drakgw_.c:118
msgid "Internet Connection Sharing currently enabled"
msgstr "Ńóěĺńíŕĺ Iíňýđíýň-çëó÷ýííĺ çŕđŕç ěŕă÷űěŕ"
-#: ../../standalone/drakgw_.c:104
-#, fuzzy
+#: ../../standalone/drakgw_.c:119
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
"\n"
"What would you like to do?"
-msgstr "Óńňŕ븢ęŕ ńóěĺńíŕăŕ Iíňýđíýň-çëó÷ýíí˙ âűęŕíŕíŕ.\n"
+msgstr ""
-#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:108
+#: ../../standalone/drakgw_.c:123
#, fuzzy
msgid "disable"
msgstr "Ňŕáëiöŕ"
-#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:118
-#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:137
+#: ../../standalone/drakgw_.c:123 ../../standalone/drakgw_.c:148
msgid "dismiss"
msgstr ""
-#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:126
+#: ../../standalone/drakgw_.c:123 ../../standalone/drakgw_.c:148
#, fuzzy
msgid "reconfigure"
msgstr "Íŕńňđîéęŕ X Window"
-#: ../../standalone/drakgw_.c:122
+#: ../../standalone/drakgw_.c:126
+#, fuzzy
+msgid "Disabling servers..."
+msgstr "Âűçíŕ÷ýííĺ ďđűëŕäŕ˘..."
+
+#: ../../standalone/drakgw_.c:134
+#, fuzzy
+msgid "Internet connection sharing is now disabled."
+msgstr "Ńóěĺńíŕĺ Iíňýđíýň-çëó÷ýííĺ çŕđŕç çŕáŕđîíĺíŕ"
+
+#: ../../standalone/drakgw_.c:143
msgid "Internet Connection Sharing currently disabled"
msgstr "Ńóěĺńíŕĺ Iíňýđíýň-çëó÷ýííĺ çŕđŕç çŕáŕđîíĺíŕ"
-#: ../../standalone/drakgw_.c:123
-#, fuzzy
+#: ../../standalone/drakgw_.c:144
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
"\n"
"What would you like to do?"
-msgstr "Óńňŕ븢ęŕ ńóěĺńíŕăŕ Iíňýđíýň-çëó÷ýíí˙ âűęŕíŕíŕ.\n"
+msgstr ""
-#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:127
+#: ../../standalone/drakgw_.c:148
#, fuzzy
msgid "enable"
msgstr "Ňŕáëiöŕ"
-#: ../../standalone/drakgw_.c:141
+#: ../../standalone/drakgw_.c:155
+msgid "Enabling servers..."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:160
+#, fuzzy
+msgid "Internet connection sharing is now enabled."
+msgstr "Ńóěĺńíŕĺ Iíňýđíýň-çëó÷ýííĺ çŕđŕç ěŕă÷űěŕ"
+
+#: ../../standalone/drakgw_.c:168
msgid "Config file content could not be interpreted."
msgstr "Íĺ ŕňđűěëłâŕĺööŕ ŕďđŕöŕâŕöü çěĺńň ôŕéëŕ íŕńňđîĺę."
-#: ../../standalone/drakgw_.c:151
-msgid "Internet Connection Sharing"
-msgstr "Ńóěĺńíŕĺ Iíňýđíýň-çëó÷ýííĺ"
+#: ../../standalone/drakgw_.c:168
+msgid "Unrecognized config file"
+msgstr ""
-#: ../../standalone/drakgw_.c:152
+#: ../../standalone/drakgw_.c:181
+#, fuzzy
msgid ""
-"Your computer can be configured to share its Internet connection.\n"
+"You are about to configure your computer to share its Internet connection.\n"
+"With that feature, other computers on your local network will be able to use "
+"this computer's Internet connection.\n"
"\n"
"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN).\n"
+"(LAN)."
+msgstr ""
+"Âŕř ęŕěď'ţňŕđ ěîćŕ áűöü ńęŕíôłăóđŕâŕíű íŕ ńóěĺńíŕĺ âűęŕđűńňŕííĺ\n"
+" ˛íňýđíýňó (Internet Connection Sharing)?\n"
+"\n"
+"Çŕ˘âŕăŕ: âŕě ďŕňđýáíű ńĺňęŕâű ŕäŕďňŕđ äë˙ ďŕäęëţ÷ýíí˙ äŕ ËÂŃ.\n"
"\n"
-"Would you like to setup the Internet Connection Sharing?"
+"Âű ćŕäŕĺöĺ óńňŕë˙âŕöü ńóěĺńíű äîńňóď äŕ Internet?"
+
+#: ../../standalone/drakgw_.c:207
+#, c-format
+msgid "Interface %s (using module %s)"
msgstr ""
-#: ../../standalone/drakgw_.c:177
-#, fuzzy
-msgid "using module"
-msgstr "Đýćűě çëó÷ýíí˙"
+#: ../../standalone/drakgw_.c:208
+#, fuzzy, c-format
+msgid "Interface %s"
+msgstr "Ńĺňęŕâű iíňýđôĺéń"
-#: ../../standalone/drakgw_.c:210
+#: ../../standalone/drakgw_.c:216
msgid "No network adapter on your system!"
msgstr "Ó âŕřŕé ńłńňýěĺ í˙ěŕ íiâîäíŕăŕ ńĺňęŕâŕăŕ ŕäŕďňŕđŕ!"
-#: ../../standalone/drakgw_.c:211
+#: ../../standalone/drakgw_.c:217
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
-"Íi ŕäçií ethernet ńĺňęŕâŕíű ŕäŕďňŕđ ó âŕřŕé ńińňýěĺ íĺ âűçíŕ÷ŕíű. Ęŕëi "
-"ëŕńęŕ, ńęŕđűńňŕéöĺ ęŕíôiăóđŕöűéíű iíńňđóěýíň."
+"Íi âîäíű ethernet ńĺňęŕâű ŕäŕďňŕđ ó âŕřŕé ńińňýěĺ íĺ âűçíŕ÷ŕíű. Ęŕëi ëŕńęŕ, "
+"ńęŕđűńňŕéöĺ ęŕíôiăóđŕöűéíű iíńňđóěýíň."
-#: ../../standalone/drakgw_.c:218
-#, fuzzy
+#: ../../standalone/drakgw_.c:224
+#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
"\n"
-"$interface\n"
+"%s\n"
"\n"
-"Would you like to setup your Local Area Network with that adapter?"
+"I am about to setup your Local Area Network with that adapter."
msgstr ""
-"Ăýňű ňîëüęi ŕäçií ńęŕíôiăóđŕâŕíű ńĺňęŕâű ŕäŕďňŕđ ˘ âŕřŕé ńińňýěĺ:\n"
-"\n"
-"$interface\n"
-"\n"
-"Öi ďŕćŕäŕĺöĺ ˘ńňŕë˙âŕöü iíňýđíýň çëó÷ýííĺ ďđŕç ăýňű ŕäŕďňŕđ?"
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:233
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
-"Ęŕëi ëŕńęŕ, âűá˙đűöĺ ńĺňęŕâű ŕäŕďňŕđ, ˙ęł áóäçĺ âűęŕđűńňŕíű äë˙ äŕëó÷ýíí˙ äŕ "
+"Ęŕëi ëŕńęŕ, ŕá˙đűöĺ ńĺňęŕâű ŕäŕďňŕđ, ˙ęł áóäçĺ âűęŕđűńňŕíű äë˙ äŕëó÷ýíí˙ äŕ "
"âŕřŕé ëŕęŕëüíŕé ńĺňęi."
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:242
+#, fuzzy
msgid ""
-"Warning, the network adapter is already configured.\n"
-"Would you like to reconfigure?"
+"Warning, the network adapter is already configured. I will reconfigure it."
msgstr ""
"Óâŕăŕ, ńĺňęŕâű ŕäŕďňŕđ ńęŕíôiăóđŕâŕíű.\n"
"Öi ćŕäŕĺöĺ ďĺđŕęŕíôiăóđŕâŕöü ˙ăî?"
-#: ../../standalone/drakgw_.c:258
+#: ../../standalone/drakgw_.c:253
msgid "Potential LAN address conflict found in current config of $_!\n"
-msgstr "Ďŕňýíöű˙ëüíű ŕäđŕń ËÂŃ ęŕíôëięňóĺ ç á˙ăó÷ŕé ęŕíôiăóđŕöű˙é $_!\n"
+msgstr "Ďŕňýíöűéíű ŕäđŕń ËÂŃ ęŕíôëięňóĺ ç á˙ăó÷ŕé ęŕíôiăóđŕöű˙é $_!\n"
-#: ../../standalone/drakgw_.c:268
+#: ../../standalone/drakgw_.c:261 ../../standalone/drakgw_.c:267
msgid "Firewalling configuration detected!"
msgstr "Çíîéäçĺíŕ ńłńňýěŕ ńĺňęŕâŕé á˙ńďĺęł (firewall)!"
-#: ../../standalone/drakgw_.c:269
+#: ../../standalone/drakgw_.c:262 ../../standalone/drakgw_.c:268
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation. Proceed?"
+"need some manual fix after installation."
msgstr ""
"Óâŕăŕ! Çíîéäçĺíŕ łńíóţ÷ŕ˙ ńińňýěŕ ńĺňęŕâŕé á˙ńďĺęi (firewall). Âŕě ěŕă÷űěŕ "
-"ńďŕňđýáłööŕ ńęŕđýęňŕâŕöü ˙ĺ ďŕńë˙ ˘ńňŕ븢ęi. Äŕëĺé?"
+"ńďŕňđýáłööŕ ńęŕđýęňŕâŕöü ˙ĺ ďŕńë˙ ˘ńňŕë˙âŕíí˙."
-#: ../../standalone/drakgw_.c:282
-msgid "Configuring scripts, installing software, starting servers..."
-msgstr "Ęŕíôłăóđŕöű˙ ńöĺíŕđű˙˘, óńňŕ븢ęŕ ĎÇ, çŕďóńę ńëóćáŕ˘..."
-
-#: ../../standalone/drakgw_.c:282
+#: ../../standalone/drakgw_.c:276
#, fuzzy
msgid "Configuring..."
msgstr "Íŕńňđîéęŕ IDE"
-#: ../../standalone/drakgw_.c:313
-msgid "Problems installing package $bin2rpm{$_}"
-msgstr ""
+#: ../../standalone/drakgw_.c:277
+msgid "Configuring scripts, installing software, starting servers..."
+msgstr "Ęŕíôłăóđŕöű˙ ńöýíŕđŕ˘, óńňŕë˙âŕííĺ ĎÇ, çŕďóńę ńëóćáŕ˘..."
-#: ../../standalone/drakgw_.c:504
+#: ../../standalone/drakgw_.c:307
+msgid "Problems installing package $_"
+msgstr "Ďđŕáëĺěű ç óńňŕë˙âŕííĺě ďŕęĺňó $_"
+
+#: ../../standalone/drakgw_.c:590
msgid "Congratulations!"
msgstr "Ďđűěłöĺ âiířŕâŕííi!"
-#: ../../standalone/drakgw_.c:505
+#: ../../standalone/drakgw_.c:591
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
+"Óńĺ ŕäęŕíôłăóđŕâŕíŕ.\n"
+"Çŕđŕç âű ěîćŕöĺ ńóěĺńíŕ âűęŕđűńňî˘âŕöü ďŕäęëţ÷ýííĺ äŕ Internet\n"
+"ç łířűěł ęŕěď'ţňýđŕěł ˘ âŕřŕé ËÂŃ, ęŕđűńňŕţ÷űń˙ ŕ˘ňŕěŕňű÷íűě\n"
+"ęŕíôłăóđŕâŕííĺě (DHCP)."
+
+#: ../../standalone/drakgw_.c:608
+msgid "The setup has already been done, but it's currently disabled."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:609
+msgid "The setup has already been done, and it's currently enabled."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:610
+#, fuzzy
+msgid "No Internet Connection Sharing has ever been configured."
+msgstr "Ńóěĺńíŕĺ Iíňýđíýň-çëó÷ýííĺ çŕđŕç ěŕă÷űěŕ"
+
+#: ../../standalone/drakgw_.c:615
+#, fuzzy
+msgid "Internet connection sharing configuration"
+msgstr "Iíňýđíýň çëó÷ýííĺ i ęŕíôiăóđŕöű˙"
+
+#: ../../standalone/drakgw_.c:622
+#, fuzzy, c-format
+msgid ""
+"Welcome to the Internet Connection Sharing utility!\n"
+"\n"
+"%s\n"
+"\n"
+"Click on Configure to launch the setup wizard."
+msgstr "Ńóěĺńíŕĺ Iíňýđíýň-çëó÷ýííĺ"
+
+#: ../../standalone/draknet_.c:59
+#, fuzzy, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
+
+#: ../../standalone/draknet_.c:66 ../../standalone/draknet_.c:537
+#, fuzzy
+msgid "Profile: "
+msgstr "ďŕěűëęŕ ěŕíöiđŕâŕíí˙: "
+
+#: ../../standalone/draknet_.c:74
+msgid "Del profile..."
+msgstr ""
+
+#: ../../standalone/draknet_.c:80
+msgid "Profile to delete:"
+msgstr ""
+
+#: ../../standalone/draknet_.c:108
+msgid "New profile..."
+msgstr ""
+
+#: ../../standalone/draknet_.c:114
+msgid "Name of the profile to create:"
+msgstr ""
+
+#: ../../standalone/draknet_.c:140
+#, fuzzy
+msgid "Hostname: "
+msgstr "Iě˙ ěŕřűíű"
+
+#: ../../standalone/draknet_.c:147
+msgid "Internet access"
+msgstr ""
+
+#: ../../standalone/draknet_.c:160
+#, fuzzy
+msgid "Type:"
+msgstr "Ňűď: "
+
+#: ../../standalone/draknet_.c:163 ../../standalone/draknet_.c:354
+msgid "Gateway:"
+msgstr "Řëţç:"
+
+#: ../../standalone/draknet_.c:163 ../../standalone/draknet_.c:354
+msgid "Interface:"
+msgstr ""
+
+#: ../../standalone/draknet_.c:168
+msgid "Status:"
+msgstr ""
+
+#: ../../standalone/draknet_.c:170 ../../standalone/draknet_.c:357
+#: ../../standalone/net_monitor_.c:122 ../../standalone/net_monitor_.c:224
+#, fuzzy
+msgid "Connected"
+msgstr "Iě˙ çëó÷ýíí˙"
+
+#: ../../standalone/draknet_.c:170 ../../standalone/draknet_.c:357
+#: ../../standalone/net_monitor_.c:83 ../../standalone/net_monitor_.c:122
+#: ../../standalone/net_monitor_.c:224
+#, fuzzy
+msgid "Not connected"
+msgstr "Đŕçěĺđęŕâŕííĺ"
+
+#: ../../standalone/draknet_.c:173 ../../standalone/draknet_.c:358
+msgid "Connect..."
+msgstr ""
-#: ../../standalone/draksec_.c:28
+#: ../../standalone/draknet_.c:173 ../../standalone/draknet_.c:358
+msgid "Disconnect..."
+msgstr ""
+
+#: ../../standalone/draknet_.c:191
+#, fuzzy
+msgid "Starting your connection..."
+msgstr "ßęi ňűď âŕřŕăŕ ISDN çëó÷ýíí˙?"
+
+#: ../../standalone/draknet_.c:199
+#, fuzzy
+msgid "Closing your connection..."
+msgstr "ßęi ňűď âŕřŕăŕ ISDN çëó÷ýíí˙?"
+
+#: ../../standalone/draknet_.c:204
+msgid ""
+"The connection is not closed.\n"
+"Try to do it manually by running\n"
+"/etc/sysconfig/network-scripts/net_cnx_down\n"
+"in root."
+msgstr ""
+
+#: ../../standalone/draknet_.c:207
+#, fuzzy
+msgid "The system is now disconnected."
+msgstr "ßę âű ďëŕíóĺöĺ äŕëó÷űööŕ äŕ Iíňýđíýňó?"
+
+#: ../../standalone/draknet_.c:219
+#, fuzzy
+msgid "Configure Internet Access..."
+msgstr "Íŕńňđîéęŕ ńëóćáŕ˘"
+
+#: ../../standalone/draknet_.c:226 ../../standalone/draknet_.c:409
+#, fuzzy
+msgid "LAN configuration"
+msgstr "Íŕńňđîéęŕ ADSL"
+
+#: ../../standalone/draknet_.c:231
+msgid "Adapter"
+msgstr ""
+
+#: ../../standalone/draknet_.c:231
+#, fuzzy
+msgid "Driver"
+msgstr "ńĺđâĺđ"
+
+#: ../../standalone/draknet_.c:231
+#, fuzzy
+msgid "Interface"
+msgstr "Ńĺňęŕâű iíňýđôĺéń"
+
+#: ../../standalone/draknet_.c:231
+msgid "Protocol"
+msgstr ""
+
+#: ../../standalone/draknet_.c:250
+#, fuzzy
+msgid "Configure Local Area Network..."
+msgstr "Íŕńňđîéęŕ ëŕęŕëüíŕé ńĺňęi"
+
+#: ../../standalone/draknet_.c:283
+#, fuzzy
+msgid "Normal Mode"
+msgstr "Çâű÷ŕéíű"
+
+#: ../../standalone/draknet_.c:288
+msgid "Apply"
+msgstr ""
+
+#: ../../standalone/draknet_.c:307
+#, fuzzy
+msgid "Please Wait... Applying the configuration"
+msgstr "Ďđŕâĺđęŕ ďŕđŕěĺňđࢠíŕńňđîéęi"
+
+#: ../../standalone/draknet_.c:389
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/draknet_.c:413
+#, fuzzy
+msgid "LAN Configuration"
+msgstr "Íŕńňđîéęŕ"
+
+#: ../../standalone/draknet_.c:421
+#, c-format
+msgid "Adapter %s: %s"
+msgstr ""
+
+#: ../../standalone/draknet_.c:427
+msgid "Boot Protocol"
+msgstr ""
+
+#: ../../standalone/draknet_.c:428
+msgid "Started on boot"
+msgstr ""
+
+#: ../../standalone/draknet_.c:429
+msgid "DHCP client"
+msgstr ""
+
+#: ../../standalone/draknet_.c:464 ../../standalone/draknet_.c:468
+#, fuzzy
+msgid "Disable"
+msgstr "Ňŕáëiöŕ"
+
+#: ../../standalone/draknet_.c:464 ../../standalone/draknet_.c:468
+#, fuzzy
+msgid "Enable"
+msgstr "Ňŕáëiöŕ"
+
+#: ../../standalone/draknet_.c:502
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/draknet_.c:526
+#, fuzzy
+msgid "Internet connection configuration"
+msgstr "Iíňýđíýň çëó÷ýííĺ i ęŕíôiăóđŕöű˙"
+
+#: ../../standalone/draknet_.c:530
+#, fuzzy
+msgid "Internet Connection Configuration"
+msgstr "Iíňýđíýň çëó÷ýííĺ i ęŕíôiăóđŕöű˙"
+
+#: ../../standalone/draknet_.c:539
+#, fuzzy
+msgid "Connection type: "
+msgstr "Iě˙ çëó÷ýíí˙"
+
+#: ../../standalone/draknet_.c:545
+msgid "Parameters"
+msgstr ""
+
+#: ../../standalone/draknet_.c:558
+#, fuzzy
+msgid "Provider dns 1 (optional)"
+msgstr "DNS 1 ďđŕâŕéäŕđó"
+
+#: ../../standalone/draknet_.c:559
+#, fuzzy
+msgid "Provider dns 2 (optional)"
+msgstr "DNS 2 ďđŕâŕéäŕđó"
+
+#: ../../standalone/draknet_.c:572
+msgid "Ethernet Card"
+msgstr ""
+
+#: ../../standalone/draknet_.c:573
+msgid "DHCP Client"
+msgstr ""
+
+#: ../../standalone/draksec_.c:21
+msgid "Welcome To Crackers"
+msgstr "Ńŕđäý÷íŕ çŕďđŕřŕĺě ó Crackers"
+
+#: ../../standalone/draksec_.c:22
+msgid "Poor"
+msgstr "Çóńłě ńëŕáű"
+
+#: ../../standalone/draksec_.c:26
+msgid "Paranoid"
+msgstr "Ďŕđŕíŕiäŕëüíű"
+
+#: ../../standalone/draksec_.c:29
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -6217,15 +7174,15 @@ msgstr ""
"íŕ ěŕřűíŕő, ˙ęi˙ äŕëó÷ŕíű äŕ ńĺňęi öi äŕ Internet. Óâŕőîä íĺ ŕáŕđîíĺíű "
"ďŕđîëĺě."
-#: ../../standalone/draksec_.c:31
+#: ../../standalone/draksec_.c:32
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
-"Ďŕđîëü çŕđŕç óęëţ÷ŕíű, ŕëĺ âűęŕđűńňŕííĺ ęŕěď'ţňýđŕ ˘ ˙ęŕńöi ńĺňęŕâŕăŕ\n"
+"Ďŕđîëü çŕđŕç óęëţ÷ŕíű, ŕëĺ âűęŕđűńňŕííĺ ęŕěď'ţňýđó ˘ ˙ęŕńöi ńĺňęŕâŕăŕ\n"
"ňŕęńŕěŕ íĺ đýęŕěĺíäŕâŕíŕ."
-#: ../../standalone/draksec_.c:32
+#: ../../standalone/draksec_.c:33
msgid ""
"Few improvements for this security level, the main one is that there are\n"
"more security warnings and checks."
@@ -6233,16 +7190,16 @@ msgstr ""
"Ăýňű óçđîâĺíü á˙ńďĺęi ěŕĺ řýđŕă ďŕë˙ďřýíí˙˘, ó ďĺđřóţ ÷ŕđăó\n"
"ďŕâ˙ëi÷űëŕń˙ ęîëüęŕńöü ďđŕâĺđŕę i ďŕď˙đýäćŕíí˙˘."
-#: ../../standalone/draksec_.c:34
+#: ../../standalone/draksec_.c:35
msgid ""
"This is the standard security recommended for a computer that will be used\n"
"to connect to the Internet as a client. There are now security checks. "
msgstr ""
-"Ăýňŕ ńňŕíäŕđňíű óçđîâĺíü á˙ńďĺęi, ˙ęi đýęŕěĺíäŕâŕíű äë˙ ęŕěď'ţňýđŕ,\n"
-"˙ęi äŕëó÷ŕíű äŕ Internet ó ˙ęŕńöi ęëiĺíňŕ. Äŕäŕäçĺíű íîâű˙ ďđŕâĺđęi\n"
+"Ăýňŕ ńňŕíäŕđňíű óçđîâĺíü á˙ńďĺęi, ˙ęi đýęŕěĺíäŕâŕíű äë˙ ęŕěď'ţňýđó,\n"
+"˙ęi äŕëó÷ŕíű äŕ Internet ó ˙ęŕńöi ęëiĺíňó. Äŕäŕíű˙ íîâű˙ ďđŕâĺđęi\n"
"á˙ńďĺęi."
-#: ../../standalone/draksec_.c:36
+#: ../../standalone/draksec_.c:37
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -6250,10 +7207,10 @@ msgid ""
"connections from many clients. "
msgstr ""
"Íŕ ăýňŕě óçđî˘íĺ á˙ńďĺęi ěŕă÷űěŕ âűęŕđűńňŕííĺ ńińňýěű ˘ ˙ęŕńöi\n"
-"ńĺđâĺđŕ. Óçđîâĺíü á˙ńďĺęi äŕńňŕňęîâŕ âűńîęi äë˙ đŕáîňű\n"
-"ńĺđâĺđŕ, ˙ęi äŕďóńęŕĺ çëó÷ýííi ńŕ řěŕňëięiěi ęëiĺíňŕěi."
+"ńĺđâĺđó. Óçđîâĺíü á˙ńďĺęi äŕńňŕňęîâŕ âűńîęi äë˙ đŕáîňű\n"
+"ńĺđâĺđó, ˙ęi äŕďóńęŕĺ çëó÷ýííi ńŕ řěŕňëięiěi ęëiĺíňŕěi."
-#: ../../standalone/draksec_.c:39
+#: ../../standalone/draksec_.c:40
msgid ""
"We take level 4 features, but now the system is entirely closed.\n"
"Security features are at their maximum."
@@ -6261,26 +7218,31 @@ msgstr ""
"Ďđűěŕţööŕ ˘ëŕńöiâŕńöi 4 óçđî˘í˙, ŕëĺ çŕđŕç ńińňýěŕ ďî˘íŕńöţ çŕ÷űíĺíŕ.\n"
"Ďŕđŕěĺňđű á˙ńďĺęi ˘ńňŕíî˘ëĺíű íŕ ěŕęńiěóě."
-#: ../../standalone/draksec_.c:49
+#: ../../standalone/draksec_.c:52
msgid "Setting security level"
msgstr "Íŕńňđîéęi ˘çđî˘í˙ á˙ńďĺęi"
-#: ../../standalone/drakxconf_.c:21
+#: ../../standalone/drakxconf_.c:44
+#, fuzzy
+msgid "Control Center"
+msgstr "Äŕëó÷ýííĺ äŕ Iíňýđíýňó"
+
+#: ../../standalone/drakxconf_.c:45
msgid "Choose the tool you want to use"
-msgstr "Âűá˙đűöĺ iíńňđóěĺíň, ˙ęi ćŕäŕĺöĺ ńęŕđűńňŕöü"
+msgstr "Ŕá˙đűöĺ iíńňđóěĺíň, ˙ęi ćŕäŕĺöĺ ńęŕđűńňŕöü"
-#: ../../standalone/keyboarddrake_.c:14
-msgid "usage: keyboarddrake [--expert]\n"
+#: ../../standalone/keyboarddrake_.c:16
+msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr ""
-#: ../../standalone/keyboarddrake_.c:27
+#: ../../standalone/keyboarddrake_.c:36
msgid "Do you want the BackSpace to return Delete in console?"
-msgstr ""
+msgstr "Âű ćŕäŕĺöĺ ęŕá BackSpace ďđŕöŕâࢠó ęŕíńîëł ˙ę Delete?"
#: ../../standalone/livedrake_.c:23
#, fuzzy
msgid "Change Cd-Rom"
-msgstr "Çě˙íiöü ďŕěĺđű ýęđŕíŕ"
+msgstr "Çě˙íiöü ďŕěĺđű ýęđŕíó"
#: ../../standalone/livedrake_.c:24
#, fuzzy
@@ -6290,560 +7252,706 @@ msgid ""
msgstr ""
"Çě˙íiöĺ âŕř Cd-Rom!\n"
"\n"
-"Ęŕëi ëŕńęŕ, óńňŕ˘öĺ Cd-Rom, ďŕěĺ÷ŕíű \"%s\", ó âŕř äűńęŕâîä i íŕöińíiöĺ Oę "
+"Ęŕëi ëŕńęŕ, óńňŕ˘öĺ Cd-Rom, ďŕçíŕ÷ŕíű \"%s\", ó âŕř äűńęŕâîä i íŕöińíiöĺ Oę "
"ďŕńë˙.\n"
-"Ęŕëi âű íĺ ěŕĺöĺ ˙ăî, íŕöińíiöĺ Ŕäě˙íiöü, ęŕá ŕäě˙íiöü óńňŕ븢ęó ç ăýňŕăŕ Cd."
+"Ęŕëi âű íĺ ěŕĺöĺ ˙ăî, íŕöińíiöĺ Ŕäě˙íiöü, ęŕá ŕäě˙íiöü óńňŕë˙âŕííĺ ç ăýňŕăŕ "
+"Cd."
#: ../../standalone/livedrake_.c:34
msgid "Unable to start live upgrade !!!\n"
-msgstr ""
+msgstr "Íĺěŕă÷űěŕ çŕďóńöłöü live upgrade !!!\n"
-#: ../../standalone/mousedrake_.c:32
+#: ../../standalone/mousedrake_.c:39
msgid "no serial_usb found\n"
msgstr "serial_usb íĺ çíîéäçĺí\n"
-#: ../../standalone/mousedrake_.c:37
+#: ../../standalone/mousedrake_.c:43
msgid "Emulate third button?"
msgstr "Ýěóë˙âŕöü ňđýöţţ ęíîďęó?"
-#: ../../standalone/mousedrake_.c:41
-msgid "Which serial port is your mouse connected to?"
-msgstr "Äŕ ˙ęîăŕ ďîńë˙äî˘íŕăŕ ďîđňŕ äŕëó÷ŕíŕ âŕřŕ ěűř?"
-
-#: ../../standalone/rpmdrake_.c:25
-msgid "reading configuration"
-msgstr "÷űňŕííĺ íŕńňđîéęi"
-
-#: ../../standalone/rpmdrake_.c:45 ../../standalone/rpmdrake_.c:50
-#: ../../standalone/rpmdrake_.c:253
-msgid "File"
-msgstr "Ôŕéë"
-
-#: ../../standalone/rpmdrake_.c:48 ../../standalone/rpmdrake_.c:229
-#: ../../standalone/rpmdrake_.c:253 ../../standalone/rpmdrake_.c:269
-msgid "Search"
-msgstr "Ďîřóę"
-
-#: ../../standalone/rpmdrake_.c:49 ../../standalone/rpmdrake_.c:56
-msgid "Package"
-msgstr "Ďŕęĺň"
-
-#: ../../standalone/rpmdrake_.c:51
-msgid "Text"
-msgstr "Ňýęńň"
-
-#: ../../standalone/rpmdrake_.c:53
-msgid "Tree"
-msgstr "Äđýâŕ"
-
-#: ../../standalone/rpmdrake_.c:54
-msgid "Sort by"
-msgstr "Óďŕđŕäęŕâŕöü ďŕ"
-
-#: ../../standalone/rpmdrake_.c:55
-msgid "Category"
-msgstr "Ęŕňýăîđű˙"
-
-#: ../../standalone/rpmdrake_.c:58
-msgid "See"
-msgstr "Ăë."
-
-#: ../../standalone/rpmdrake_.c:59 ../../standalone/rpmdrake_.c:163
-msgid "Installed packages"
-msgstr "Óńňŕíî˘ëĺíű˙ ďŕęĺňű"
-
-#: ../../standalone/rpmdrake_.c:60
-msgid "Available packages"
-msgstr "Äŕńňóďíű˙ ďŕęĺňű"
-
-#: ../../standalone/rpmdrake_.c:62
-msgid "Show only leaves"
-msgstr "Ďŕęŕçŕöü óńĺ ëińňű"
-
-#: ../../standalone/rpmdrake_.c:67
-msgid "Expand all"
-msgstr "Đŕńęđűöü óń¸"
-
-#: ../../standalone/rpmdrake_.c:68
-msgid "Collapse all"
-msgstr "Çâ˙đíóöü óń¸"
-
-#: ../../standalone/rpmdrake_.c:70
-msgid "Configuration"
-msgstr "Íŕńňđîéęŕ"
+#: ../../standalone/net_monitor_.c:40 ../../standalone/net_monitor_.c:52
+#, fuzzy
+msgid "Network Monitoring"
+msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
-#: ../../standalone/rpmdrake_.c:71
-msgid "Add location of packages"
-msgstr "Äŕäŕöü ęđűíiöó ďŕęĺňŕ˘"
+#: ../../standalone/net_monitor_.c:56
+msgid "Statistics"
+msgstr ""
-#: ../../standalone/rpmdrake_.c:75
-msgid "Update location"
-msgstr "Çě˙íiöü ęđűíiöó"
+#: ../../standalone/net_monitor_.c:59
+msgid "Sending Speed: "
+msgstr ""
-#: ../../standalone/rpmdrake_.c:79 ../../standalone/rpmdrake_.c:328
-msgid "Remove"
-msgstr "Çíiř÷űöü"
+#: ../../standalone/net_monitor_.c:61
+msgid "Receiving Speed: "
+msgstr ""
-#: ../../standalone/rpmdrake_.c:100
-msgid "Configuration: Add Location"
-msgstr "Íŕńňđîéęŕ: Äŕäŕöü ęđűíiöó"
+#: ../../standalone/net_monitor_.c:66
+#, fuzzy
+msgid "Close"
+msgstr "Ďîđň ěűřű"
-#: ../../standalone/rpmdrake_.c:103
-msgid "Find Package"
-msgstr "Ďîřóę ďŕęĺňŕ˘"
+#: ../../standalone/net_monitor_.c:100 ../../standalone/net_monitor_.c:104
+#, fuzzy
+msgid "Connecting to Internet "
+msgstr "Äŕëó÷ýííĺ äŕ Iíňýđíýňó"
-#: ../../standalone/rpmdrake_.c:104
-msgid "Find Package containing file"
-msgstr "Çíŕéńöi ďŕęĺň, ˙ęi ěŕĺ ôŕéë"
+#: ../../standalone/net_monitor_.c:100 ../../standalone/net_monitor_.c:104
+#, fuzzy
+msgid "Disconnecting from Internet "
+msgstr "Äŕëó÷ýííĺ äŕ Iíňýđíýňó"
-#: ../../standalone/rpmdrake_.c:105
-msgid "Toggle between Installed and Available"
-msgstr "Ďĺđŕęëţ÷űöü Óńňŕíî˘ëĺíŕ/Äŕńňóďíŕ"
+#: ../../standalone/net_monitor_.c:114
+#, fuzzy
+msgid "Disconnection from Internet failed."
+msgstr "Äŕëó÷ýííĺ äŕ Iíňýđíýňó"
-#: ../../standalone/rpmdrake_.c:139
-msgid "Files:\n"
-msgstr "Ôŕéëű:\n"
+#: ../../standalone/net_monitor_.c:115
+#, fuzzy
+msgid "Disconnection from Internet complete."
+msgstr "Äŕëó÷ýííĺ äŕ Iíňýđíýňó"
-#: ../../standalone/rpmdrake_.c:161 ../../standalone/rpmdrake_.c:209
-msgid "Uninstall"
-msgstr "Âűäŕëiöü ç ńińňýěű"
+#: ../../standalone/net_monitor_.c:117
+#, fuzzy
+msgid "Connection complete."
+msgstr "Iě˙ çëó÷ýíí˙"
-#: ../../standalone/rpmdrake_.c:163
-msgid "Choose package to install"
-msgstr "Âűáŕđ ďŕęĺňࢠäë˙ óńňŕ븢ęi"
+#: ../../standalone/net_monitor_.c:118
+msgid ""
+"Connection failed.\n"
+"Verify your configuration in the Mandrake Control Center."
+msgstr ""
-#: ../../standalone/rpmdrake_.c:190
-msgid "Checking dependencies"
-msgstr "Ďđŕâĺđęŕ çŕëĺćíŕńöĺé"
+#: ../../standalone/net_monitor_.c:188
+msgid "sent: "
+msgstr ""
-#: ../../standalone/rpmdrake_.c:190 ../../standalone/rpmdrake_.c:409
-msgid "Wait"
-msgstr "×ŕęŕéöĺ"
+#: ../../standalone/net_monitor_.c:191
+msgid "received: "
+msgstr ""
-#: ../../standalone/rpmdrake_.c:209
-msgid "The following packages are going to be uninstalled"
-msgstr "Íŕńňóďíű˙ ďŕęĺňű áóäóöü âűäŕëĺíű ç ńińňýěű"
+#: ../../standalone/net_monitor_.c:222
+#, fuzzy
+msgid "Connect"
+msgstr "Iě˙ çëó÷ýíí˙"
-#: ../../standalone/rpmdrake_.c:210
-msgid "Uninstalling the RPMs"
-msgstr "Âűäŕëĺííĺ âűáđŕíűő RPM-ďŕęĺňࢠç ńińňýěű"
+#: ../../standalone/net_monitor_.c:222
+#, fuzzy
+msgid "Disconnect"
+msgstr "Íŕńňđîéęŕ ISDN"
-#: ../../standalone/rpmdrake_.c:229 ../../standalone/rpmdrake_.c:269
-msgid "Regexp"
-msgstr "Regexp"
+#: ../../standalone/tinyfirewall_.c:29
+#, fuzzy
+msgid "Firewalling Configuration"
+msgstr "Çíîéäçĺíŕ ńłńňýěŕ ńĺňęŕâŕé á˙ńďĺęł (firewall)!"
-#: ../../standalone/rpmdrake_.c:229
-msgid "Which package are looking for"
-msgstr "ßęi˙ ďŕęĺňű řóęŕĺě"
+#: ../../standalone/tinyfirewall_.c:42
+#, fuzzy
+msgid "Firewalling configuration"
+msgstr "Çíîéäçĺíŕ ńłńňýěŕ ńĺňęŕâŕé á˙ńďĺęł (firewall)!"
-#: ../../standalone/rpmdrake_.c:238 ../../standalone/rpmdrake_.c:262
-#: ../../standalone/rpmdrake_.c:278
-#, c-format
-msgid "%s not found"
-msgstr "Íĺ çíŕéřëi %s"
+#: ../../standalone/tinyfirewall_.c:77
+msgid ""
+"Firewalling\n"
+"\n"
+"You already have set up a firewall.\n"
+"Click on Configure to change or remove the firewall"
+msgstr ""
-#: ../../standalone/rpmdrake_.c:238 ../../standalone/rpmdrake_.c:262
-#: ../../standalone/rpmdrake_.c:278
-msgid "No match"
-msgstr "Íĺ çíîéäçĺíŕ"
+#: ../../standalone/tinyfirewall_.c:81
+msgid ""
+"Firewalling\n"
+"\n"
+"Click on Configure to set up a standard firewall"
+msgstr ""
-#: ../../standalone/rpmdrake_.c:238 ../../standalone/rpmdrake_.c:262
-#: ../../standalone/rpmdrake_.c:278
-msgid "No more match"
-msgstr "Áîëüř íĺ çíîéäçĺíŕ"
+#: ../../tinyfirewall.pm_.c:10
+msgid ""
+"tinyfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Linux Mandrake machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
-#: ../../standalone/rpmdrake_.c:246
+#: ../../tinyfirewall.pm_.c:15
msgid ""
-"rpmdrake is currently in ``low memory'' mode.\n"
-"I'm going to relaunch rpmdrake to allow searching files"
+"We'll now ask you questions about which services you'd like to allow\n"
+"the Internet to connect to. Please think carefully about these\n"
+"questions, as your computer's security is important.\n"
+"\n"
+"Please, if you're not currently using one of these services, firewall\n"
+"it off. You can change this configuration anytime you like by\n"
+"re-running this application!"
msgstr ""
-"rpmdrake çŕđŕç ó đýćűěĺ ``low memory''.\n"
-"rpmdrake áóäçĺ ďĺđŕçŕďóř÷ŕíű äçĺë˙ çŕáĺńď˙÷ýíí˙ ďîřóęó ôŕéëŕ˘"
-#: ../../standalone/rpmdrake_.c:253
-msgid "Which file are you looking for?"
-msgstr "ßęi ôŕéë âű řóęŕĺöĺ?"
+#: ../../tinyfirewall.pm_.c:22
+msgid ""
+"Are you running a web server on this machine that you need the whole\n"
+"Internet to see? If you are running a webserver that only needs to be\n"
+"accessed by this machine, you can safely answer NO here.\n"
+"\n"
+msgstr ""
-#: ../../standalone/rpmdrake_.c:269
-msgid "What are looking for?"
-msgstr "Řňî âű ćŕäŕĺöĺ çíŕéńöł?"
+#: ../../tinyfirewall.pm_.c:27
+msgid ""
+"Are you running a name server on this machine? If you didn't set one\n"
+"up to give away IP and zone information to the whole Internet, please\n"
+"answer no.\n"
+"\n"
+msgstr ""
-#: ../../standalone/rpmdrake_.c:289
-msgid "Give a name (eg: `extra', `commercial')"
-msgstr "Äŕéöĺ iě˙ (íŕďđ.: `extra', `commercial')"
+#: ../../tinyfirewall.pm_.c:32
+msgid ""
+"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
+"is a telnet-replacement that you might use to login. If you're using\n"
+"telnet now, you should definitely switch to ssh. telnet is not\n"
+"encrypted -- so some attackers can steal your password if you use\n"
+"it. ssh is encrypted and doesn't allow for this eavesdropping."
+msgstr ""
-#: ../../standalone/rpmdrake_.c:291
-msgid "Directory"
-msgstr "Ęŕňŕëîă"
+#: ../../tinyfirewall.pm_.c:37
+msgid ""
+"Do you want to allow incoming telnet connections?\n"
+"This is horribly unsafe, as we explained in the previous screen. We\n"
+"strongly recommend answering No here and using ssh in place of\n"
+"telnet.\n"
+msgstr ""
-#: ../../standalone/rpmdrake_.c:294
-msgid "No cdrom available (nothing in /mnt/cdrom)"
-msgstr "cdrom íĺäŕńňóďíű (íi÷îăŕ í˙ěŕ ˘ /mnt/cdrom)"
+#: ../../tinyfirewall.pm_.c:42
+msgid ""
+"Are you running an FTP server here that you need accessible to the\n"
+"Internet? If you are, we strongly recommend that you only use it for\n"
+"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
+"attackers, since FTP also uses no encryption for transferring passwords.\n"
+msgstr ""
-#: ../../standalone/rpmdrake_.c:298
-msgid "URL of the directory containing the RPMs"
-msgstr "URL ęŕňŕëîăŕ, ˙ęi çě˙ř÷ŕĺ RPM"
+#: ../../tinyfirewall.pm_.c:47
+msgid ""
+"Are you running a mail server here? If you're sending you \n"
+"messages through pine, mutt or any other text-based mail client,\n"
+"you probably are. Otherwise, you should firewall this off.\n"
+"\n"
+msgstr ""
-#: ../../standalone/rpmdrake_.c:299
+#: ../../tinyfirewall.pm_.c:52
msgid ""
-"For FTP and HTTP, you need to give the location for hdlist\n"
-"It must be relative to the URL above"
+"Are you running a POP or IMAP server here? This would\n"
+"be used to host non-web-based mail accounts for people via \n"
+"this machine.\n"
+"\n"
msgstr ""
-"Äë˙ FTP i HTTP, âű ďŕâiííű ďŕçíŕ÷űöü đŕçě˙ř÷ýííĺ hdlist\n"
-"Çŕäŕâŕéöĺ ŕäíîńíŕ đŕíĺé ďŕçíŕ÷ŕíŕăŕ URL"
-#: ../../standalone/rpmdrake_.c:302
-msgid "Please submit the following information"
-msgstr "Ďđŕäńňŕ˘öĺ íŕńňóďíóţ iíôŕđěŕöűţ"
+#: ../../tinyfirewall.pm_.c:57
+msgid ""
+"You appear to be running a 2.2 kernel. If your network IP\n"
+"is automatically set by a computer in your home or office \n"
+"(dynamically assigned), we need to allow for this. Is\n"
+"this the case?\n"
+msgstr ""
-#: ../../standalone/rpmdrake_.c:304
-#, c-format
-msgid "%s is already in use"
-msgstr "%s óćî âűęŕđűńňî˘âŕĺööŕ"
+#: ../../tinyfirewall.pm_.c:62
+msgid ""
+"Is your computer getting time syncronized to another computer?\n"
+"Mostly, this is used by medium-large Unix/Linux organizations\n"
+"to synchronize time for logging and such. If you're not part\n"
+"of a larger office and haven't heard of this, you probably \n"
+"aren't."
+msgstr ""
-#: ../../standalone/rpmdrake_.c:315 ../../standalone/rpmdrake_.c:321
-#: ../../standalone/rpmdrake_.c:329
-msgid "Updating the RPMs base"
-msgstr "Ŕäíŕ˘ëĺííĺ áŕçű ďŕęĺňࢠRPM"
+#: ../../tinyfirewall.pm_.c:67
+msgid ""
+"Configuration complete. May we write these changes to disk?\n"
+"\n"
+"\n"
+"\n"
+msgstr ""
-#: ../../standalone/rpmdrake_.c:328
+#: ../../tinyfirewall.pm_.c:83
#, c-format
-msgid "Going to remove entry %s"
-msgstr "Áóäçĺě âűäŕë˙öü ďóíęň %s"
-
-#: ../../standalone/rpmdrake_.c:360
-msgid "Finding leaves"
-msgstr "Ďîřóę ëińňî˘"
+msgid "Can't open %s: %s\n"
+msgstr ""
-#: ../../standalone/rpmdrake_.c:360
-msgid "Finding leaves takes some time"
-msgstr "Ďîřóę ëińňî˘ ďŕňđŕáóĺ íĺęŕňîđű ÷ŕń"
+#: ../../tinyfirewall.pm_.c:85
+#, fuzzy, c-format
+msgid "Can't open %s for writing: %s\n"
+msgstr "Ďŕěűëęŕ ŕäęđűöö˙ %s äë˙ çŕďińó: %s"
-# ../../share/compssUsers
-msgid "Graphics Manipulation"
+#: ../../share/compssUsers:999
+msgid "Clients for different protocols including ssh"
msgstr ""
-# ../../share/compssUsers
-msgid "KDE, QT, Gnome, GTK+"
-msgstr ""
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Development"
+msgstr "đŕńďđŕöî˘ř÷űę"
-# ../../share/compssUsers
-msgid "Personnal Finance"
-msgstr ""
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Workstation"
+msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
-# ../../share/compssUsers
-msgid "Python, Perl, libraries, tools"
+#: ../../share/compssUsers:999
+msgid "Firewall/Router"
msgstr ""
-# ../../share/compssUsers
-msgid "Scientific applications"
-msgstr ""
+#: ../../share/compssUsers:999
+msgid "Personal Information Management"
+msgstr "Ěýíŕäćŕđ ŕńŕáłńňŕé łíôŕđěŕöűł"
-# ../../share/compssUsers
-msgid "Databases"
-msgstr ""
+#: ../../share/compssUsers:999
+msgid "Multimedia - Graphics"
+msgstr "Ěóëüňűěĺäű˙ - Ăđŕôłęŕ"
+#: ../../share/compssUsers:999
#, fuzzy
msgid "Internet"
msgstr "öięŕâŕ"
-# ../../share/compssUsers
-msgid "Multimedia - Graphics"
-msgstr ""
-
-# ../../share/compssUsers
-msgid "editors, shells, file tools, terminals"
-msgstr ""
-
+#: ../../share/compssUsers:999
#, fuzzy
-msgid "Development applications"
-msgstr "Äë˙ đŕńďđŕöî˘ęi"
+msgid "Network Computer (client)"
+msgstr "Ńĺňęŕâű ďđűíňýđ (socket)"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr ""
+msgstr "Ŕ˘äű¸ńđîäęł: ďđŕéăđŕâŕëüíłęł mp3 ł midi, ěłęřŕđű ł ă.ä."
-# ../../share/compssUsers
-msgid "Multimedia"
-msgstr ""
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Internet station"
+msgstr "Íŕńňđîéęŕ çëó÷ýíí˙ ç Iíňýđíýňŕě"
+#: ../../share/compssUsers:999
#, fuzzy
msgid "Office"
msgstr "äîáđŕ"
-# ../../share/compssUsers
-msgid "Sciences"
-msgstr ""
-
-# ../../share/compssUsers
-msgid ""
-"Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and file "
-"transfer tools"
-msgstr ""
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Multimedia station"
+msgstr "Ěóëüňűěĺäű˙ - ăóę"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid ""
"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
"browse the Web"
msgstr ""
+"Ďđűęëŕäŕííł äë˙ ÷űňŕíí˙ ł ŕäďđŕ˘ęł ďîřňű ł íŕâłíࢠ(pine, mutt, tin...), "
+"Web ŕăë˙äŕëüíłęł"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "C and C++ development libraries, programs and include files"
-msgstr ""
+msgstr "Áłáëł˙ňýęł ł ďđŕăđŕěű äë˙ đŕńďđŕöî˘ęł íŕ Ń ł Ń++"
-# ../../share/compssUsers
-msgid "Communication facilities"
+#: ../../share/compssUsers:999
+msgid "Domain Name and Network Information Server"
msgstr ""
-#, fuzzy
-msgid "KDE"
-msgstr "IDE"
+#: ../../share/compssUsers:999
+msgid "Programs to manage your finance, such as gnucash"
+msgstr "Ďđŕăđŕěű ęłđŕâŕíí˙ âŕřűěł ôłíŕíńŕěł, ňűďó gnucash"
-# ../../share/compssUsers
-msgid "Personnal Information Management"
+#: ../../share/compssUsers:999
+msgid "PostgreSQL or MySQL database server"
msgstr ""
-# ../../share/compssUsers
-msgid "Programs to manage your finance, such as gnucash"
+#: ../../share/compssUsers:999
+msgid "NFS server, SMB server, Proxy server, ssh server"
msgstr ""
-#, fuzzy
-msgid "Gnome"
-msgstr "í˙ěŕ"
-
-#, fuzzy
-msgid "Internet Tools"
-msgstr "Íŕńňđîéęŕ çëó÷ýíí˙ Iíňýđíýň"
-
+#: ../../share/compssUsers:999
#, fuzzy
msgid "Documentation"
msgstr "Ŕ˘ňýíňűôięŕöű˙"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr ""
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Utilities"
+msgstr "Óöłëłňű"
+
+#: ../../share/compssUsers:999
+msgid "DNS/NIS "
msgstr ""
-# ../../share/compssUsers
-msgid "Multimedia - Sound"
+#: ../../share/compssUsers:999
+msgid "Graphical Environment"
msgstr ""
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
+msgid "Multimedia - Sound"
+msgstr "Ěóëüňűěĺäű˙ - ăóę"
+
+#: ../../share/compssUsers:999
msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr ""
+msgstr "Çŕáŕ˘ë˙ëüíű˙ ďđŕăđŕěű: ŕđęŕäű, ńňđŕňýăłł ł ă.ä."
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Video players and editors"
-msgstr ""
+msgstr "Đýäŕęňŕđű ł ďđŕéăđŕâŕëüíłęł âłäýŕ"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Console Tools"
-msgstr ""
+msgstr "Ęŕíńîëüíű˙ łíńňđóěĺíňŕëüíű˙ ńđîäęł"
-#, fuzzy
-msgid "Development other"
-msgstr "Äë˙ đŕńďđŕöî˘ęi"
+#: ../../share/compssUsers:999
+msgid "Sound and video playing/editing programs"
+msgstr "Đýäŕęňŕđű ł ďđŕéăđŕâŕëüíłęł ăóęó ł âłäýŕ"
-# ../../share/compssUsers
-msgid "Databases clients and servers (mysql and postgresql)"
-msgstr ""
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Scientific Workstation"
+msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
-# ../../share/compssUsers
-msgid "Sound and video playing/editing programs"
-msgstr ""
+#: ../../share/compssUsers:999
+msgid "Editors, shells, file tools, terminals"
+msgstr "Đýäŕęňŕđű, ŕáŕëîíęł, ňýđěłíŕëű"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
-msgstr ""
+msgstr "íłăł ł Howto ďŕ Linux ł Free Software"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid ""
"A graphical environment with user-friendly set of applications and desktop "
"tools"
msgstr ""
+"Ăđŕôł÷íŕĺ ŕń˙đîäçĺ ńŕ çđó÷íűě äçĺë˙ âűęŕđűńňŕíí˙ íŕáîđŕě ďđűęëŕäŕíí˙˘ ł "
+"łíńňđóěĺíňŕëüíűő ńđîäęŕ˘"
-# ../../share/compssUsers
-msgid "Games"
+#: ../../share/compssUsers:999
+msgid "Postfix mail server, Inn news server"
msgstr ""
-#, fuzzy
-msgid "Development C/C++"
-msgstr "Äë˙ đŕńďđŕöî˘ęi"
+#: ../../share/compssUsers:999
+msgid "Games"
+msgstr "Çŕáŕâű"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Multimedia - Video"
-msgstr ""
+msgstr "Ěóëüňűěĺäű˙ - âłäýŕ"
+
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Network Computer server"
+msgstr "Ńĺňęŕâű ďđűíňýđ (socket)"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Graphics programs such as The Gimp"
+msgstr "Ăđŕôł÷íű˙ ďđŕăđŕěű ňűďó The Gimp"
+
+#: ../../share/compssUsers:999
+msgid "Office Workstation"
msgstr ""
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid ""
"The K Desktop Environment, the basic graphical environment with a collection "
"of accompanying tools"
msgstr ""
+"The K Desktop Environment - ŕńíî˘íŕĺ ăđŕôł÷íŕĺ ŕń˙đîäçĺ ç ęŕëĺęöű˙é "
+"łíńňđóěĺíňŕëüíűő ńđîäęŕ˘"
-# ../../share/compssUsers
-msgid "Tools to create and burn CD's"
-msgstr ""
-
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr ""
+msgstr "Řěŕň ăđŕôł÷íűő ěýíŕäćýđࢠĎđŕöî˘íűő ńňŕëî˘(Gnome, IceWM)"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
+msgid "Tools to create and burn CD's"
+msgstr "˛íńňđóěĺíňŕëüíű˙ ńđîäęł ńňâŕđýíüí˙ CD"
+
+#: ../../share/compssUsers:999
msgid "Multimedia - CD Burning"
-msgstr ""
+msgstr "Ěóëüňűěĺäű˙ - Ńňâŕđýííĺ CD"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Archiving, emulators, monitoring"
+msgstr "Ŕđőłâŕňŕđű, ýěóë˙ňŕđű, ěŕíłňîđűíă"
+
+#: ../../share/compssUsers:999
+msgid "Database"
msgstr ""
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid ""
"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
"gnumeric), pdf viewers, etc"
msgstr ""
+"Îôłńíű˙ ďđŕăđŕěű: ďđŕöýńŕđű ńëîâࢠ(kword, abiword), ýëĺęňđîíű˙ ňŕáëłöű, "
+"ŕăë˙äŕëüíłęł pdf-ôŕéëŕ˘, ł ă.ä."
+
+#: ../../share/compssUsers:999
+msgid "Web/FTP"
+msgstr ""
+
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Server"
+msgstr "ńĺđâĺđ"
+
+#: ../../share/compssUsers:999
+msgid "Personal Finance"
+msgstr "Ďĺđńŕíŕëüíű˙ ôłíŕíńű"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
+msgid "Configuration"
+msgstr "Íŕńňđîéęŕ"
+
+#: ../../share/compssUsers:999
+msgid "KDE Workstation"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Other Graphical Desktops"
+msgstr "˛ířű˙ ăđŕôł÷íű˙ Ďđŕöî˘íű˙ ńňŕëű"
+
+#: ../../share/compssUsers:999
+msgid "Apache, Pro-ftpd"
msgstr ""
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
+msgid "Mail/Groupware/News"
+msgstr ""
+
+#: ../../share/compssUsers:999
+msgid "Gnome Workstation"
+msgstr ""
+
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Internet gateway"
+msgstr "Íŕńňđîéęŕ çëó÷ýíí˙ ç Iíňýđíýňŕě"
+
+#: ../../share/compssUsers:999
msgid "Tools for your Palm Pilot or your Visor"
+msgstr "˛íńňđóěĺíňŕëüíű˙ ńđîäęł äë˙ Palm Pilot ł Visor"
+
+#: ../../share/compssUsers:999
+msgid "Game station"
msgstr ""
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr ""
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Tools to ease the configuration of your computer"
+msgstr "Öi ćŕäŕĺöĺ ďđŕňýńöiđŕâŕöü íŕńňđîéęi?"
+
+#: ../../share/compssUsers:999
msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr ""
+msgstr "Íŕáîđ łíńňđóěĺíňࢠäë˙ ďîřňű, íŕâłíŕ˘, web'ó, ďĺđŕäŕ÷ű ôŕéëŕ˘, ł chat"
-#~ msgid "Czech"
-#~ msgstr "×ĺřńęi"
+#, fuzzy
+#~ msgid "Lilo/Grub configuration"
+#~ msgstr "Íŕńňđîéęŕ ADSL"
-#~ msgid "Slovakian"
-#~ msgstr "Ńëŕâŕöęi"
+#, fuzzy
+#~ msgid "Selected size %d%s"
+#~ msgstr "Ŕá˙đűöĺ ôŕéë"
-#~ msgid "Could not install ipchains RPM with urpmi."
-#~ msgstr "Íĺ ŕňđűěëłâŕĺööŕ ˘ńňŕë˙âŕöü RPM ``ipchains'' ç äŕďŕěîăŕé urpmi."
+#, fuzzy
+#~ msgid "Opening your connection..."
+#~ msgstr "ßęi ňűď âŕřŕăŕ ISDN çëó÷ýíí˙?"
-#~ msgid "Could not install dhcp RPM with urpmi."
-#~ msgstr "Íĺ ŕňđűěëłâŕĺööŕ ˘ńňŕë˙âŕöü RPM ``dhcp'' ç äŕďŕěîăŕé urpmi."
+#, fuzzy
+#~ msgid "Configure..."
+#~ msgstr "Íŕńňđîéęŕ IDE"
-#~ msgid "Could not install linuxconf RPM with urpmi."
-#~ msgstr "Íĺ ŕňđűěëłâŕĺööŕ ˘ńňŕë˙âŕöü RPM ``linuxconf'' ç äŕďŕěîăŕé urpmi."
+#, fuzzy
+#~ msgid "Standard tools"
+#~ msgstr "Ńňŕíäŕđňíű"
-#~ msgid "Could not install bind RPM with urpmi."
-#~ msgstr "Íĺ ŕňđűěëłâŕĺööŕ ˘ńňŕë˙âŕöü RPM ``bind'' ç äŕďŕěîăŕé urpmi."
+#, fuzzy
+#~ msgid "Configuration de Lilo/Grub"
+#~ msgstr "Íŕńňđîéęŕ: Äŕäŕöü ęđűíiöó"
-#~ msgid "Could not install caching-nameserver RPM with urpmi."
-#~ msgstr ""
-#~ "Íĺ ŕňđűěëłâŕĺööŕ ˘ńňŕë˙âŕöü RPM ęýřűđóţ÷ŕăŕ ńĺđâĺđŕ iě¸íࢠç äŕďŕěîăŕé urpmi."
+#~ msgid "This startup script try to load your modules for your usb mouse."
+#~ msgstr " Ăýňű ďóńęŕâű ńęđűďň ŕäíŕ˘ë˙ĺ ˘ńĺ ěîäóëi äë˙ usb ěűřű."
-#~ msgid "Reconfigure local network"
-#~ msgstr "Ďĺđŕęŕíôiăóđűđŕâŕöü ëŕęŕëüíóţ ńĺňęó"
+#, fuzzy
+#~ msgid "Boot style configuration"
+#~ msgstr "Íŕńňđîéęŕ ďŕńë˙ ˘ńňŕë˙âŕíí˙"
+#, fuzzy
#~ msgid ""
-#~ "Your computer can be configured to share its Internet connection.\n"
+#~ "Now that your Internet connection is configured,\n"
+#~ "your computer can be configured to share its Internet connection.\n"
+#~ "Note: you need a dedicated Network Adapter to set up a Local Area Network "
+#~ "(LAN).\n"
#~ "\n"
+#~ "Would you like to setup the Internet Connection Sharing?\n"
#~ msgstr ""
-#~ "Âŕř ęŕęěď'ţňýđ ěîćŕ áűöü ńęŕíôiăóđŕâŕíű äŕ ńóěĺńíŕăŕ Iíňýđíýň-çëó÷ýíí˙.\n"
+#~ "Âŕř ęŕěď'ţňŕđ ěîćŕ áűöü ńęŕíôłăóđŕâŕíű íŕ ńóěĺńíŕĺ âűęŕđűńňŕííĺ\n"
+#~ " ˛íňýđíýňó (Internet Connection Sharing)?\n"
+#~ "\n"
+#~ "Çŕ˘âŕăŕ: âŕě ďŕňđýáíű ńĺňęŕâű ŕäŕďňŕđ äë˙ ďŕäęëţ÷ýíí˙ äŕ ËÂŃ.\n"
+#~ "\n"
+#~ "Âű ćŕäŕĺöĺ óńňŕë˙âŕöü ńóěĺńíű äîńňóď äŕ Internet?"
-#~ msgid "Everything has been configured.\n"
-#~ msgstr "Óń¸ ńęŕíôiăóđŕâŕíŕ.\n"
+#~ msgid "Automatic dependencies"
+#~ msgstr "Ďđŕâĺđęŕ çŕëĺćíŕńö˙˘"
-#~ msgid "Connect to Internet with a normal modem"
-#~ msgstr "Çëó÷ýííĺ ç iíňýđíýň ďđŕç çâű÷ŕéíű ěŕäýě"
+#~ msgid "Configure LILO/GRUB"
+#~ msgstr "Íŕńňđîéęŕ LILO/GRUB"
-#~ msgid "Connect to Internet using ISDN"
-#~ msgstr "Çëó÷ýííĺ ç iíňýđíýň ďŕ ISDN"
+#~ msgid "Create a boot floppy"
+#~ msgstr "Ńňâŕđűöü çŕăđ. äűńę"
-#~ msgid "Connect to Internet using DSL (or ADSL)"
-#~ msgstr "Äŕëó÷űööŕ äŕ iíňýđíýň ďđŕç DSL (öi ADSL)"
+#~ msgid "Format floppy"
+#~ msgstr "Ôŕđěŕňŕâŕöü äűńęĺňó"
-#~ msgid "Connect to Internet using Cable"
-#~ msgstr "Äŕëó÷űööŕ äŕ Iíňýđíýň ďđŕç ęŕáĺëü (ńĺňęó)"
+#~ msgid "Choice"
+#~ msgstr "Âűáŕđ"
+
+#, fuzzy
+#~ msgid "gMonitor"
+#~ msgstr "Ěŕíiňîđ"
+
+#, fuzzy
+#~ msgid "Mail information"
+#~ msgstr "Iíôŕđěŕöű˙"
+
+#, fuzzy
+#~ msgid "Firewall Configuration Wizard"
+#~ msgstr "Ęŕíôiăóđŕöű˙ ńĺňęi"
+
+#~ msgid "Miscellaneous"
+#~ msgstr "Đîçíŕĺ"
+
+#~ msgid "Miscellaneous questions"
+#~ msgstr "Äŕäŕňęîâű˙ ďűňŕííi"
+
+#~ msgid "Can't use supermount in high security level"
+#~ msgstr "Íĺ ěŕăó âűęŕđűńňî˘âŕöü ěŕíöiđŕâŕííĺ ďđű âűńîęiě óçđî˘íi á˙ńďĺęi"
#~ msgid ""
-#~ "Time (secs) of inactivity after which\n"
-#~ "it hangs up. (leave blank to disable it)"
+#~ "beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
+#~ "If you want to be root, you have to login as a user and then use \"su\".\n"
+#~ "More generally, do not expect to use your machine for anything but as a "
+#~ "server.\n"
+#~ "You have been warned."
#~ msgstr ""
-#~ "×ŕń (ń˙ę) íĺŕęňű˘íŕńöi, ďŕńë˙ ˙ęîăŕ\n"
-#~ "âĺřŕöü ňđóáęó. (Ďŕęiíüöĺ ďóńňîĺ, ęŕá ŕäě˙íiöü)"
+#~ "Çŕńö˙đîăŕ: ĎĐŰ ÂŰŃÎĘIĚ ÓÇĐÎĄÍI ÁßŃĎĹĘI ĄÂŔŐÎÄ ßĘ ROOT Ç ĘŔÍŃÎËI ÍĹ "
+#~ "ÄŔÇÂŔËßĹÖÖŔ!\n"
+#~ "Ęŕëi âű ćŕäŕĺöĺ ˘âŕőîäçiöü ˙ę root, óâŕőîäçüöĺ ˙ę ęŕđűńňŕëüíię, çŕňűě \n"
+#~ "âűęîíâŕéöĺ \"su\".Ó ňŕęiě âűďŕäęó, ěîćŕöĺ âűęŕđűńňî˘âŕöü ěŕřűíó íĺ äë˙ "
+#~ "˘ń˙ăî,\n"
+#~ "ŕ ňîëüęi ˙ę ńĺđâĺđ.\n"
+#~ "Ěŕéöĺ íŕ ˘âŕçĺ, řňî âű áűëi ďŕď˙đýäćŕíű˙."
-#~ msgid "Germany"
-#~ msgstr "Í˙ěĺöęi"
+#~ msgid ""
+#~ "Be carefull, having numlock enabled causes a lot of keystrokes to\n"
+#~ "give digits instead of normal letters (eg: pressing `p' gives `6')"
+#~ msgstr ""
+#~ "Áóäçüöĺ ˘âŕćëiâű, óęëţ÷ýííĺ NumLock ěîćŕ ďđűâĺńöi äŕ ďŕěűëęîâŕé\n"
+#~ "ďđŕöű ęëŕâi˙ňóđű (íŕďđűęëŕä, íŕöińę íŕ `p' äŕĺ `6')."
-#~ msgid "Germany (1TR6)"
-#~ msgstr "Í˙ěĺöęi (1TR6)"
+#, fuzzy
+#~ msgid "Actions"
+#~ msgstr "Đŕçěĺđęŕâŕííĺ"
-#~ msgid "What do you wish to do?"
-#~ msgstr "Řňî âű őî÷ŕöĺ çđŕáiöü?"
+#~ msgid "Scientific applications"
+#~ msgstr "Íŕâóęîâű˙ ďđűęëŕäŕííł"
-#~ msgid "Install/Rescue"
-#~ msgstr "Óńňŕ븢ęŕ/Âűđŕňŕâŕííĺ"
+#, fuzzy
+#~ msgid "toot"
+#~ msgstr "Root"
-#~ msgid "Rescue"
-#~ msgstr "Âűđŕňŕâŕííĺ"
+#~ msgid "First DNS Server"
+#~ msgstr "Ďĺđřű ńĺđâĺđ DNS"
-#~ msgid "Which partition type do you want?"
-#~ msgstr "ßęi ňűď đŕçäçĺëŕ âŕě ďŕňđýáíű?"
+#~ msgid "Second DNS Server"
+#~ msgstr "Äđóăi ńĺđâĺđ DNS:"
+
+#, fuzzy
+#~ msgid "using module"
+#~ msgstr "Đýćűě çëó÷ýíí˙"
+
+#~ msgid "%s is already in use"
+#~ msgstr "%s óćî âűęŕđűńňî˘âŕĺööŕ"
+
+#~ msgid "%s not found"
+#~ msgstr "Íĺ çíŕéřëi %s"
+
+#~ msgid "%s: This is not a root partition, please select another one."
+#~ msgstr "%s: Ăýňŕ íĺ ęŕđŕí¸âű đŕçäçĺë, ęŕëi ëŕńęŕ ŕá˙đűöĺ iířű."
+
+#~ msgid "(may cause data corruption)"
+#~ msgstr "(ěîćŕ âűçâŕöü çíiř÷ýííĺ äŕäçĺíűő)"
+
+#~ msgid ", %U MB"
+#~ msgstr ", %U MB"
+
+#~ msgid "ASCII MieMouse"
+#~ msgstr "ASCII MieMouse"
+
+#~ msgid "ASCII MieMouse (serial)"
+#~ msgstr "ASCII MieMouse (ďŕńë˙äî˘íŕ˙)"
+
+#~ msgid "ATI Bus Mouse"
+#~ msgstr "ATI Bus Mouse"
+
+#~ msgid "Add location of packages"
+#~ msgstr "Äŕäŕöü ęđűíiöó ďŕęĺňŕ˘"
+
+#~ msgid "After %s partition %s,"
+#~ msgstr "Ďŕńë˙ %s đŕçáĺéöĺ %s,"
+
+#~ msgid "Alcatel modem"
+#~ msgstr "Ěŕäýě Alcatel"
#~ msgid ""
-#~ "Choose \"Install\" if there are no previous versions of GNU/Linux\n"
-#~ "installed, or if you wish to use multiple distributions or versions.\n"
-#~ "\n"
-#~ "Choose \"Rescue\" if you wish to rescue a version of Linux-Mandrake already "
-#~ "installed.\n"
-#~ "\n"
-#~ "\n"
-#~ "Select:\n"
-#~ "\n"
-#~ " - Recommended: If you have never installed GNU/Linux before, choose this.\n"
-#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
-#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!\n"
+#~ "Any partitions that have been newly defined must be formatted for\n"
+#~ "use (formatting meaning creating a filesystem). At this time, you may\n"
+#~ "wish to re-format some already existing partitions to erase the data\n"
+#~ "they contain. Note: it is not necessary to re-format pre-existing\n"
+#~ "partitions, particularly if they contain files or data you wish to keep.\n"
+#~ "Typically retained are /home and /usr/local."
#~ msgstr ""
-#~ "Âűá˙đűöĺ \"Óńňŕë˙âŕöü\", ęŕëi ˘ âŕń ˙ř÷ý íĺ ˘ńňŕë˙âŕíŕ íi ŕäíîé âĺđńii\n"
-#~ "GNU/Linux, ŕëüáî, ęŕëi âű ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü íĺęŕëüęi âĺđńié öi "
-#~ "äűńňđűáóňűâŕ˘.\n"
-#~ "\n"
-#~ "Âűá˙đűöĺ \"Âűđŕňŕâŕöü\", ęŕëi âű ćŕäŕĺöĺ âűđŕňŕâŕöü íĺďđŕöóţ÷óţ ďŕď˙đýäíţţ "
-#~ "âĺđńiţ Mandrake Linux:\n"
-#~ "\n"
-#~ "\n"
-#~ "Âűá˙đűöĺ:\n"
-#~ "\n"
-#~ " - Đýęŕěĺíäóĺööŕ: Ęŕëi âű đŕíĺé íięîëi íĺ ˘ńňŕ븢âŕëi \n"
-#~ " GNU/Linux, âűá˙đűöĺ ăýňű đýćűě.\n"
+#~ "Óńĺ âűçíŕ÷ŕíű˙ đŕçäçĺëű ďŕâiííű áűöü ŕäôŕđěŕňŕâŕíű äë˙ âűęŕđűńňŕíí˙\n"
+#~ "(ôŕđěŕňŕâŕííĺ çíŕ÷űöü ńňâŕđýííĺ ôŕéëŕâŕé ńińňýěű). Ó ăýňŕé ńiňóŕöűi\n"
+#~ "ěîćíŕ ďĺđŕôŕňŕâŕöü óćî ińíóţ÷ű˙ đŕçäçĺëű äçĺë˙ çíiř÷ýíí˙ äŕäçĺíűő,\n"
+#~ "˙ęi˙ çíŕőîäç˙ööŕ íŕ iő. Çŕ˘âŕăŕ: ôŕđěŕňŕâŕöü ińíóţ÷ű˙ đŕçäçĺëű íĺ "
+#~ "ŕáŕâ˙çęîâŕ,\n"
+#~ "ŕńŕáëiâŕ ęŕëi ˙íű çě˙ř÷ŕţöü ôŕéëű i äŕäçĺíű˙, ˙ęi˙ âű ćŕäŕĺöĺ çŕőŕâŕöü.\n"
+#~ "Çâű÷ŕéíŕ çŕőî˘âŕţöü /home i /usr/local."
+
+#~ msgid "Apple ADB Mouse"
+#~ msgstr "Apple ADB Ěűř"
+
+#~ msgid "Apple ADB Mouse (2 Buttons)"
+#~ msgstr "Apple ADB Ěűř (2 ęíîďęi)"
+
+#~ msgid "Apple ADB Mouse (3+ Buttons)"
+#~ msgstr "Apple ADB Ěűř (3 ęíîďęi öi áîëĺé)"
+
+#~ msgid "Apple USB Mouse"
+#~ msgstr "Apple USB Ěűř"
+
+#~ msgid "Apple USB Mouse (2 Buttons)"
+#~ msgstr "Apple USB Ěűř (2 ęíîďęi)"
+
+#~ msgid "Apple USB Mouse (3+ Buttons)"
+#~ msgstr "Apple USB Ěűřü (3 ęíîďęi öi áîëĺé)"
+
+#~ msgid ""
+#~ "Are you sure you are an expert? \n"
+#~ "You will be allowed to make powerful but dangerous things here.\n"
#~ "\n"
-#~ " - Ďŕ âűáŕđó: Ăýňű đýćűě đýęŕěĺíäóĺööŕ ˘ ňűě âűďŕäęó, ęŕëi âű ďđŕöŕâŕëi \n"
-#~ " đŕíĺé ç GNU/Linux, i çěîćŕöĺ ńŕěi âűáđŕöü íĺŕáőîäíű˙\n"
-#~ " ďŕęĺňű i ŕáńňŕë˙âŕííĺ äë˙ âŕřŕăŕ ęŕěďóňŕđŕ. Ăë˙äçiöĺ íićýé "
-#~ "ďŕäđŕá˙çíŕńöł.\n"
+#~ "You will be asked questions such as: ``Use shadow file for passwords?'',\n"
+#~ "are you ready to answer that kind of questions?"
+#~ msgstr ""
+#~ "Âű ˘ďý˘íĺíű, řňî çěîćŕöĺ ďđŕö˙ăíóöü ďđŕöýń óńňŕë˙âŕíí˙ ˙ę ýęńďĺđň?\n"
+#~ "Ó ăýňűě âűďŕäęó Âű áóäçĺöĺ ěĺöü áîëüřű ęŕíňđîëü íŕä ďđŕöýńŕě óńňŕë˙âŕíí˙,\n"
+#~ "ŕëĺ âűíięi ďŕěűëęi ěîăóöü áűöü ôŕňŕëüíű˙.\n"
#~ "\n"
-#~ " - Ýęńďĺđň: Âűáŕđ ăýňŕăŕ đýćűěó ńâĺä÷űöü, řňî âű ńâŕáîäíŕ âŕëîäŕĺöĺ "
-#~ "GNU/Linux\n"
-#~ " i ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü âĺëüěi äýňŕë¸âóţ Ąńňŕ븢ęó. ßę i ˘ âűďŕäęó \n"
-#~ " \"Ďŕ âűáŕđó\"âŕě ďŕňđýáíŕ áóäçĺ âűáđŕöü íĺŕáőîäíű˙ ďđŕăđŕěű i \n"
-#~ " ŕáńňŕë˙âŕííĺ âŕřŕăŕ ęŕěďóňŕđŕ.\n"
-#~ " Ęŕëi ëŕńęŕ, ÍĹ ÂŰÁIĐŔÉÖĹ ĂÝŇŰ ĐÝĆŰĚ, ĘŔËI ÍĹ ĄĎÝĄÍĹÍŰ, ŘŇÎ ĐÎÁIÖĹ "
-#~ "ĎĐŔÂIËÜÍŔ!\n"
+#~ "Âŕě áóäóöü çŕäŕäçĺíű, íŕďđűęëŕä, ňŕęi˙ ďűňŕííi: ``Öi âűęŕđűńňî˘âŕöü öĺí˙âű\n"
+#~ "ôŕéë ďŕđîë˙˘?'' Öi ďŕäđűőňŕâŕíű âű äŕ ŕäęŕçó íŕ ăýňű˙ ďűňŕííi?"
#~ msgid ""
#~ "At this point, you may choose what partition(s) to use to install\n"
@@ -6884,149 +7992,385 @@ msgstr ""
#~ "\n"
#~ "- Ctrl-m to set the mount point\n"
#~ msgstr ""
-#~ "Çŕđŕç ěîćíŕ âűçíŕ÷űöü, ˙ęi˙ đŕçäçĺëű âűęŕđűńňî˘âŕöü äë˙ ˘ńňŕíî˘ęi\n"
-#~ "âŕřŕé ńińňýěű Linux-Mandrake, ęŕëi ˙íű ˘ćî áűëi çŕäŕäçĺíű (ďđű ďŕď˙đýäí˙é\n"
-#~ "˘ńňŕ븢öű Linux ŕëüáî iířŕé ďđŕöýäóđŕé đŕçáiĺíí˙). Ó iířűő âűďŕäęŕő\n"
-#~ "đŕçäçĺëű ćîđńňęŕăŕ äűńęŕ ďŕâiííű áűöü ďŕçíŕ÷ŕíű. Ăýňŕ ŕďĺđŕöű˙ ńęëŕäŕĺööŕ ç\n"
-#~ "ëŕăi÷íŕăŕ đŕçáiöö˙ äűńęŕâŕé ďđŕńňîđű ęŕěď'ţňýđŕ íŕ íĺęŕëüęi\n"
+#~ "Çŕđŕç ěîćíŕ âűçíŕ÷űöü, ˙ęi˙ đŕçäçĺëű âűęŕđűńňî˘âŕöü äë˙ ˘ńňŕë˙âŕíí˙\n"
+#~ "âŕřŕé ńińňýěű Linux-Mandrake, ęŕëi ˙íű ˘ćî áűëi çŕäŕäçĺíű (ďđű ďŕď˙đýäíłě\n"
+#~ "˘ńňŕë˙âŕííł Linux ŕëüáî iířŕé ďđŕöýäóđŕé đŕçáiöö˙). Ó iířűő âűďŕäęŕő\n"
+#~ "đŕçäçĺëű ćîđńňęŕăŕ äűńęó ďŕâiííű áűöü ďŕçíŕ÷ŕíű. Ăýňŕ ŕďĺđŕöű˙ ńęëŕäŕĺööŕ ç\n"
+#~ "ëŕăi÷íŕăŕ đŕçáiöö˙ äűńęŕâŕé ďđŕńňîđű ęŕěď'ţňýđó íŕ íĺęŕëüęi\n"
#~ "âîáëŕńöĺé âűęŕđűńňŕíí˙.\n"
#~ "\n"
#~ "\n"
-#~ "Ęŕëi âű ďëŕíóĺöĺ ńňâŕđŕöü íîâű˙ đŕçäçĺëű, ňî ěîćŕöĺ ńęŕđűńňŕöü đýćűě\n"
+#~ "Ęŕëi âű ďëŕíóĺöĺ ńňâŕđŕöü íîâű˙ đŕçäçĺëű, ňŕäű ěîćŕöĺ ńęŕđűńňŕöü đýćűě\n"
#~ "\"Ŕ˘ňŕ đŕçě˙ř÷ýííĺ\", ęŕá ŕ˘ňŕěŕňű÷íŕ ńňâŕđűöü đŕçäçĺëű GNU/Linux. Âű "
#~ "ěîćŕöĺ\n"
-#~ "ďŕçíŕ÷űöü äűńę äë˙ đŕçáiĺíí˙, íŕöińíó˘ íŕ \"hda\" äë˙ ďĺđřŕăŕ IDE äűńęŕ,\n"
-#~ "\"hdb\" äë˙ äđóăîăŕ äűńęŕ öi \"sda\" äë˙ ďĺđřŕăŕ SCSI äűńęŕ i ă.ä.\n"
+#~ "ďŕçíŕ÷űöü äűńę äë˙ đŕçáiöö˙, íŕöińíó˘řű íŕ \"hda\" äë˙ ďĺđřŕăŕ IDE äűńęó,\n"
+#~ "\"hdb\" äë˙ äđóăîăŕ äűńęó öi \"sda\" äë˙ ďĺđřŕăŕ SCSI äűńęó i ă.ä.\n"
#~ "\n"
#~ "\n"
#~ "Äâŕ çâű÷ŕéíű˙ đŕçäçĺëű íŕńňóďíű˙: ęŕđýííű đŕçäçĺë (/), ˙ęi ç'˙˘ë˙ĺööŕ "
#~ "ďŕ÷ŕňęîâűě\n"
#~ "ďóíęňŕě iĺđŕđőii ęŕňŕëŕăࢠôŕéëŕâŕé ńińňýěű, i /boot, ˙ęi çě˙ř÷ŕĺ ˘ńĺ\n"
-#~ "ôŕéëű, íĺŕáőîäíű˙ äë˙ çŕďóńęŕ ŕďĺđŕöűéíŕé ńińňýěű ďđű ˘ęëţ÷ýííi ęŕěď'ţňýđŕ.\n"
+#~ "ôŕéëű, íĺŕáőîäíű˙ äë˙ çŕďóńęó ŕďĺđŕöűéíŕé ńińňýěű ďđű ˘ęëţ÷ýííi ęŕěď'ţňýđó.\n"
#~ "\n"
#~ "\n"
-#~ "Ďŕęîëüęi âűíięi ăýňŕăŕ ďđŕöýńŕ çâű÷ŕéíŕ íĺçâŕđîňíű, đŕçáiĺííĺ íŕ đŕçäçĺëű\n"
+#~ "Ďŕęîëüęi âűíięi ăýňŕăŕ ďđŕöýńó çâű÷ŕéíŕ íĺçâŕđîňíű˙, đŕçáiöö¸ íŕ đŕçäçĺëű\n"
#~ "ěîćŕ íŕďŕëîőŕöü íŕâi÷ęŕ. DiskDrake ńďđŕř÷ŕĺ ăýňű ďđŕöýń, ňŕěó íŕďđóćŕííĺ\n"
#~ "ďŕâiííŕ çíiěŕööŕ. Ďŕăë˙äçiöĺ äŕęóěĺíňŕöűţ i ďŕäđűőňóéöĺń˙ ŕäđŕçó.\n"
#~ "\n"
#~ "\n"
#~ "Ňŕęńŕěŕ ëţáóţ ŕďĺđŕöűţ íŕä đŕçäçĺëŕě âű ěîćŕöĺ âűęŕíŕöŕü ç äŕďŕěîăŕé\n"
-#~ "ęëŕâi˙ňóđű, íŕďđűęëŕä ďĺđŕě˙ř÷ŕööŕ ďŕěić đŕçäçĺëŕěi ç äŕďŕěîăŕé ęëŕâiř Tab\n"
+#~ "ęëŕâi˙ňóđű, íŕďđűęëŕä ďĺđŕě˙ř÷ŕööŕ ďŕěić đŕçäçĺëŕěi ç äŕďŕěîăŕé ęëŕâiřࢠ"
+#~ "Tab\n"
#~ "i Up/Down. Ęŕëi đŕçäçĺë ŕáđŕíű, âű ěîćŕöĺ âűęŕđűńňî˘âŕöü:\n"
#~ "\n"
#~ "- Ctrl-c ęŕá ńňâŕđűöü íîâű đŕçäçĺë (ęŕëi ďŕď˙đýäíĺ ŕáđŕíű ďóńňű đŕçäçĺë)\n"
#~ "\n"
#~ "- Ctrl-d ęŕá âűäŕëiöü đŕçäçĺë\n"
#~ "\n"
-#~ "- Ctrl-m ęŕá ďŕçíŕ÷űöü ęđîďęó ěŕíöiđŕâŕíí˙.\n"
+#~ "- Ctrl-m ęŕá ďŕçíŕ÷űöü ďóíęň ěŕíöiđŕâŕíí˙.\n"
+
+#~ msgid "Auto install floppy"
+#~ msgstr "Ŕ˘ňŕłíńňŕë˙öű˙ ôëîďi"
+
+#~ msgid "Automatic resolutions"
+#~ msgstr "Ŕ˘ňŕěŕňű÷íŕĺ âűçíŕ÷ýííĺ ďŕěĺđࢠýęđŕíó"
+
+#~ msgid "Automatical resolutions search"
+#~ msgstr "Ŕ˘ňŕěŕňű÷íű ďîřóę ďŕěĺđࢠýęđŕíó"
+
+#~ msgid "Available packages"
+#~ msgstr "Äŕńňóďíű˙ ďŕęĺňű"
+
+#~ msgid "Bad kickstart file %s (failed %s)"
+#~ msgstr "Äđýííű ńňŕđňŕâű (kickstart) ôŕéë %s (ďŕěűëęŕ %s)"
+
+#~ msgid "CHAP"
+#~ msgstr "CHAP"
+
+#~ msgid "Category"
+#~ msgstr "Ęŕňýăîđű˙"
#~ msgid ""
-#~ "Any partitions that have been newly defined must be formatted for\n"
-#~ "use (formatting meaning creating a filesystem). At this time, you may\n"
-#~ "wish to re-format some already existing partitions to erase the data\n"
-#~ "they contain. Note: it is not necessary to re-format pre-existing\n"
-#~ "partitions, particularly if they contain files or data you wish to keep.\n"
-#~ "Typically retained are /home and /usr/local."
+#~ "Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and file "
+#~ "transfer tools"
#~ msgstr ""
-#~ "Óńĺ âűçíŕ÷ŕíű˙ đŕçäçĺëű ďŕâiííű áűöü ŕäôŕđěŕöiđŕâŕíű äë˙ âűęŕđűńňŕíí˙\n"
-#~ "(ôŕđěŕöiđŕâŕííĺ çíŕ÷űöü ńňâŕđýííĺ ôŕéëŕâŕé ńińňýěű). Ó ăýňŕé ńiňóŕöűi\n"
-#~ "ěîćíŕ ďĺđŕôŕđěŕöiđŕâŕöü óćî ińíóţ÷ű˙ đŕçäçĺëű äçĺë˙ çíiř÷ýíí˙ äŕäçĺíűő,\n"
-#~ "˙ęi˙ çíŕőîäç˙ööŕ íŕ iő. Çŕ˘âŕăŕ: ôŕđěŕöiđŕâŕöü ińíóţ÷ű˙ đŕçäçĺëű íĺ "
-#~ "ŕáŕâ˙çęîâŕ,\n"
-#~ "ŕńŕáëiâŕ ęŕëi ˙íű çě˙ř÷ŕţöü ôŕéëű i äŕäçĺíű˙, ˙ęi˙ âű ćŕäŕĺöĺ çŕőŕâŕöü.\n"
-#~ "Çâű÷ŕéíŕ çŕőî˘âŕţöü /home i /usr/local."
+#~ "Ďđŕăđŕěű Chat (IRC or instant messaging), ňűďó xchat, licq, gaim ł ă.ä."
+
+#~ msgid "Checking dependencies"
+#~ msgstr "Ďđŕâĺđęŕ çŕëĺćíŕńö˙˘"
#~ msgid ""
-#~ "The packages selected are now being installed. This operation\n"
-#~ "should take a few minutes unless you have chosen to upgrade an\n"
-#~ "existing system, in that case it can take more time even before\n"
-#~ "upgrade starts."
+#~ "Choose \"Install\" if there are no previous versions of GNU/Linux\n"
+#~ "installed, or if you wish to use multiple distributions or versions.\n"
+#~ "\n"
+#~ "Choose \"Rescue\" if you wish to rescue a previous version of Mandrake "
+#~ "Linux:\n"
+#~ "%s or %s.\n"
+#~ "\n"
+#~ "\n"
+#~ "Select:\n"
+#~ "\n"
+#~ " - Recommended: If you have never installed GNU/Linux before, choose this.\n"
+#~ "\n"
+#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
+#~ "choose\n"
+#~ " the primary usage for your machine. See below for details.\n"
+#~ "\n"
+#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
+#~ " perform a highly customized installation. As for a \"Customized\"\n"
+#~ " installation class, you will be able to select the usage for your "
+#~ "system.\n"
+#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
+#~ "DOING!\n"
#~ msgstr ""
-#~ "Çŕđŕç ďŕ÷íĺööŕ ˘ńňŕíî˘ęŕ âűáđŕíűő ďŕęĺňŕ˘. Ăýňŕ˙ ŕďĺđŕöű˙ ŕäűěĺ\n"
-#~ "íĺęŕëüęi őâiëií ÷ŕńó, ęŕëi âű íĺ âűáđŕëi ŕáíŕ˘ëĺííĺ ińíóţ÷ŕé ńińňýěű,\n"
-#~ "ó ŕďîříiě âűďŕäęó řěŕň ÷ŕńó ďŕňđŕáóĺööŕ ˙ř÷ý äŕ ďŕ÷ŕňęó ŕáíŕ˘ëĺíí˙\n"
-#~ "äë˙ ŕíŕëiçó ńińňýěű."
+#~ "Ŕá˙đűöĺ \"Óńňŕë˙âŕöü\", ęŕëi ˘ âŕń ˙ř÷ý íĺ ˘ńňŕë˙âŕíŕ íi âîäíŕé âĺđńii\n"
+#~ "GNU/Linux, ŕëüáî, ęŕëi âű ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü íĺęŕëüęi âĺđńi˙˘ öi "
+#~ "äűńňđűáóňűâŕ˘.\n"
+#~ "\n"
+#~ "Ŕá˙đűöĺ \"Âűđŕňŕâŕöü\", ęŕëi âű ćŕäŕĺöĺ âűđŕňŕâŕöü íĺďđŕöóţ÷óţ ďŕď˙đýäíţţ "
+#~ "âĺđńiţ Mandrake Linux:\n"
+#~ "%s ŕëüáî %s.\n"
+#~ "\n"
+#~ "\n"
+#~ "Ŕá˙đűöĺ:\n"
+#~ "\n"
+#~ " - Đýęŕěĺíäóĺööŕ: Ęŕëi âű đŕíĺé íięîëi íĺ ˘ńňŕ븢âŕëi \n"
+#~ " GNU/Linux, âűá˙đűöĺ ăýňű đýćűě.\n"
+#~ "\n"
+#~ " - Ďŕ âűáŕđó: Ăýňű đýćűě đýęŕěĺíäóĺööŕ ˘ ňűě âűďŕäęó, ęŕëi âű ďđŕöŕâŕëi \n"
+#~ " đŕíĺé ç GNU/Linux, i çěîćŕöĺ ńŕěi âűáđŕöü íĺŕáőîäíű˙\n"
+#~ " ďŕęĺňű i ŕáńňŕë˙âŕííĺ äë˙ âŕřŕăŕ ęŕěďóňŕđó. Ăë˙äçiöĺ íićýé "
+#~ "ďŕäđŕá˙çíŕńöł.\n"
+#~ "\n"
+#~ " - Ýęńďĺđň: Âűáŕđ ăýňŕăŕ đýćűěó ńâĺä÷űöü, řňî âű ńâŕáîäíŕ âŕëîäŕĺöĺ "
+#~ "GNU/Linux\n"
+#~ " i ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü âĺëüěi äýňŕë¸âŕĺ Ąńňŕë˙âŕííĺ. ßę i ˘ âűďŕäęó\n"
+#~ " \"Ďŕ âűáŕđó\"âŕě ďŕňđýáíŕ áóäçĺ âűáđŕöü íĺŕáőîäíű˙ ďđŕăđŕěű i \n"
+#~ " ŕáńňŕë˙âŕííĺ âŕřŕăŕ ęŕěďóňŕđó.\n"
+#~ " Ęŕëi ëŕńęŕ, ÍĹ ŔÁIĐŔÉÖĹ ĂÝŇŰ ĐÝĆŰĚ, ĘŔËI ÍĹ ĄĎÝĄÍĹÍŰ, ŘŇÎ ĐÎÁIÖĹ "
+#~ "ĎĐŔÂIËÜÍŔ!\n"
#~ msgid ""
-#~ "If DrakX failed to find your mouse, or if you want to\n"
-#~ "check what it has done, you will be presented the list of mice\n"
-#~ "above.\n"
+#~ "Choose \"Install\" if there are no previous versions of GNU/Linux\n"
+#~ "installed, or if you wish to use multiple distributions or versions.\n"
#~ "\n"
+#~ "Choose \"Rescue\" if you wish to rescue a version of Linux-Mandrake already "
+#~ "installed.\n"
#~ "\n"
-#~ "If you agree with DrakX's settings, just click 'Ok'.\n"
-#~ "Otherwise you may choose the mouse that more closely matches your own\n"
-#~ "from the menu above.\n"
#~ "\n"
+#~ "Select:\n"
#~ "\n"
-#~ "In case of a serial mouse, you will also have to tell DrakX\n"
-#~ "which serial port it is connected to."
+#~ " - Recommended: If you have never installed GNU/Linux before, choose this.\n"
+#~ "\n"
+#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
+#~ "choose\n"
+#~ " the primary usage for your machine. See below for details.\n"
+#~ "\n"
+#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
+#~ " perform a highly customized installation. As for a \"Customized\"\n"
+#~ " installation class, you will be able to select the usage for your "
+#~ "system.\n"
+#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
+#~ "DOING!\n"
#~ msgstr ""
-#~ "Ęŕëi DrakX ďđŕâiëüíŕ çíŕéřî˘ âŕřó ěűř, ďđîńňŕ âűá˙đűöĺ ç ěĺíţ\n"
-#~ "iířű ďóíęň. Ó ďđîöiëĺăëűě âűďŕäęó âűá˙đűöĺ ďŕäűőîäç˙÷ű âŕđű˙íň\n"
-#~ "äđŕéâĺđó ěűřű ç ńďińó âűřýé.\n"
+#~ "Ŕá˙đűöĺ \"Óńňŕë˙âŕöü\", ęŕëi ˘ âŕń ˙ř÷ý íĺ ˘ńňŕë˙âŕíŕ íi ŕäíîé âĺđńii\n"
+#~ "GNU/Linux, ŕëüáî, ęŕëi âű ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü íĺęŕëüęi âĺđńi˙˘ öi "
+#~ "äűńňđűáóňűâŕ˘.\n"
#~ "\n"
+#~ "Ŕá˙đűöĺ \"Âűđŕňŕâŕöü\", ęŕëi âű ćŕäŕĺöĺ âűđŕňŕâŕöü íĺďđŕöóţ÷óţ ďŕď˙đýäíţţ "
+#~ "âĺđńiţ Mandrake Linux:\n"
#~ "\n"
-#~ "Ó âűďŕäęó ěűřű, ˙ęŕ˙ äŕëó÷ŕíŕ äŕ ďŕńë˙äî˘íŕăŕ ďîđňó, âŕě ďŕňđŕáóĺööŕ "
-#~ "ďŕâĺäŕěiöü\n"
-#~ "DrakX ďđŕâiëüíű íóěŕđ ďŕńë˙äî˘íŕăŕ ďîđňó, äŕ ˙ęîăŕ ˙íŕ äŕëó÷ŕíŕ."
+#~ "\n"
+#~ "Ŕá˙đűöĺ:\n"
+#~ "\n"
+#~ " - Đýęŕěĺíäóĺööŕ: Ęŕëi âű đŕíĺé íięîëi íĺ ˘ńňŕ븢âŕëi \n"
+#~ " GNU/Linux, ŕá˙đűöĺ ăýňű đýćűě.\n"
+#~ "\n"
+#~ " - Ďŕ âűáŕđó: Ăýňű đýćűě đýęŕěĺíäóĺööŕ ˘ ňűě âűďŕäęó, ęŕëi âű ďđŕöŕâŕëi \n"
+#~ " đŕíĺé ç GNU/Linux, i çäîëĺĺöĺ ńŕěi âűáđŕöü íĺŕáőîäíű˙\n"
+#~ " ďŕęĺňű i ŕáńňŕë˙âŕííĺ äë˙ âŕřŕăŕ ęŕěďóňŕđó. Ăë˙äçiöĺ íićýé "
+#~ "ďŕäđŕá˙çíŕńöł.\n"
+#~ "\n"
+#~ " - Ýęńďĺđň: Âűáŕđ ăýňŕăŕ đýćűěó ńâĺä÷űöü, řňî âű ńâŕáîäíŕ âŕëîäŕĺöĺ "
+#~ "GNU/Linux\n"
+#~ " i ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü âĺëüěi äýňŕë¸âŕĺ Ąńňŕë˙âŕííĺ. ßę i ˘ âűďŕäęó \n"
+#~ " \"Ďŕ âűáŕđó\"âŕě ďŕňđýáíŕ áóäçĺ âűáđŕöü íĺŕáőîäíű˙ ďđŕăđŕěű i \n"
+#~ " ŕáńňŕë˙âŕííĺ âŕřŕăŕ ęŕěďóňŕđó.\n"
+#~ " Ęŕëi ëŕńęŕ, ÍĹ ŔÁIĐŔÉÖĹ ĂÝŇŰ ĐÝĆŰĚ, ĘŔËI ÍĹ ĄĎÝĄÍĹÍŰ, ŘŇÎ ĐÎÁIÖĹ "
+#~ "ĎĐŔÂIËÜÍŔ!\n"
#~ msgid ""
-#~ "This section is dedicated to configuring a local area\n"
-#~ "network (LAN) or a modem.\n"
+#~ "Choose \"Install\" if there are no previous versions of Linux\n"
+#~ "installed, or if you wish to use multiple distributions or versions.\n"
#~ "\n"
-#~ "Choose \"Local LAN\" and DrakX will\n"
-#~ "try to find an Ethernet adapter on your machine. PCI adapters\n"
-#~ "should be found and initialized automatically.\n"
-#~ "However, if your peripheral is ISA, autodetection will not work,\n"
-#~ "and you will have to choose a driver from the list that will appear then.\n"
#~ "\n"
+#~ "Choose \"Upgrade\" if you wish to update a previous version of Mandrake\n"
+#~ "Linux: 5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1\n"
+#~ "(Helios) or Gold 2000."
+#~ msgstr ""
+#~ "Ŕá˙đűöĺ \"Óńňŕë˙âŕííĺ\", ęŕëi í˙ěŕ ˘ńňŕë˙âŕíűő đŕíĺé âĺđńł˙˘ Linux,\n"
+#~ "ŕëüáî ęŕëi ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü íĺęŕëüęi äűńňđűáóňűâࢠŕëüáî âĺđńű˙˘.\n"
#~ "\n"
-#~ "As for SCSI adapters, you can let the driver probe for the adapter\n"
-#~ "in the first time, otherwise you will have to specify the options\n"
-#~ "to the driver that you will have fetched from documentation of your\n"
-#~ "hardware.\n"
#~ "\n"
+#~ "Ŕá˙đűöĺ \"Ŕáíŕâiöü\" ęŕëi âű ćŕäŕĺöĺ ŕáíŕâiöü ďŕď˙đýäíţţ âĺđńiţ\n"
+#~ "Mandrake Linux: 5.1 (Venice), 5.2 (Leeloo), 5.3 (Festen), 6.0 (Venus),\n"
+#~ "6.1 (Helios) ŕëüáî Gold 2000."
+
+#~ msgid "Choose package to install"
+#~ msgstr "Âűáŕđ ďŕęĺňࢠäë˙ óńňŕë˙âŕíí˙"
+
+#~ msgid "Collapse all"
+#~ msgstr "Çăŕđíóöü óń¸"
+
+#~ msgid "Communication facilities"
+#~ msgstr "Ńđîäęł ęŕěóíłęŕöű˙˘"
+
+#~ msgid "Configure LAN"
+#~ msgstr "Íŕńňđîéęŕ ńĺňęi (ËÂŃ)"
+
+#~ msgid "Configure printer"
+#~ msgstr "Íŕńňđîéęŕ ďđűíňýđó"
+
+#~ msgid "Configure timezone"
+#~ msgstr "Íŕńňđîéęŕ ÷ŕńŕâîăŕ ďî˙ńó"
+
+#~ msgid "Confirm Password"
+#~ msgstr "Ďŕäöâĺđäçiöü ďŕđîëü"
+
+#~ msgid "Connect to Internet using Cable"
+#~ msgstr "Äŕëó÷űööŕ äŕ Iíňýđíýň ďđŕç ęŕáĺëü (ńĺňęó)"
+
+#~ msgid "Connect to Internet using DSL (or ADSL)"
+#~ msgstr "Äŕëó÷űööŕ äŕ iíňýđíýň ďđŕç DSL (öi ADSL)"
+
+#~ msgid "Connect to Internet using ISDN"
+#~ msgstr "Çëó÷ýííĺ ç iíňýđíýň ďŕ ISDN"
+
+#~ msgid "Connect to Internet with a normal modem"
+#~ msgstr "Çëó÷ýííĺ ç iíňýđíýň ďđŕç çâű÷ŕéíű ěŕäýě"
+
+#~ msgid "Could not install bind RPM with urpmi."
+#~ msgstr "Íĺ ŕňđűěëłâŕĺööŕ ˘ńňŕë˙âŕöü RPM ``bind'' ç äŕďŕěîăŕé urpmi."
+
+#~ msgid "Could not install caching-nameserver RPM with urpmi."
+#~ msgstr ""
+#~ "Íĺ ŕňđűěëłâŕĺööŕ ˘ńňŕë˙âŕöü RPM ęýřóţ÷ŕăŕ ńĺđâĺđó łě¸íࢠç äŕďŕěîăŕé urpmi."
+
+#~ msgid "Could not install dhcp RPM with urpmi."
+#~ msgstr "Íĺ ŕňđűěëłâŕĺööŕ ˘ńňŕë˙âŕöü RPM ``dhcp'' ç äŕďŕěîăŕé urpmi."
+
+#~ msgid "Could not install ipchains RPM with urpmi."
+#~ msgstr "Íĺ ŕňđűěëłâŕĺööŕ ˘ńňŕë˙âŕöü RPM ``ipchains'' ç äŕďŕěîăŕé urpmi."
+
+#~ msgid "Could not install linuxconf RPM with urpmi."
+#~ msgstr "Íĺ ŕňđűěëłâŕĺööŕ ˘ńňŕë˙âŕöü RPM ``linuxconf'' ç äŕďŕěîăŕé urpmi."
+
+#~ msgid "Cryptographic"
+#~ msgstr "Ęđűďňŕăđŕôi˙"
+
+#~ msgid "Customized"
+#~ msgstr "Ďŕ âűáŕđó"
+
+#~ msgid "Czech"
+#~ msgstr "×ĺřńęi"
+
+#~ msgid "Databases clients and servers (mysql and postgresql)"
+#~ msgstr "Ńĺđâĺđű ł ęëłĺíňű áŕçࢠäŕäçĺíűő (mysql and postgresql)"
+
+#~ msgid "Directory"
+#~ msgstr "Ęŕňŕëîă"
+
+#~ msgid "Disable networking"
+#~ msgstr "Çđŕáiöü íĺŕęňű˘íűě ńĺňęŕâŕĺ çëó÷ýííĺ"
+
+#~ msgid "Do not set up networking"
+#~ msgstr "Íĺ ˘ńňŕ븢âŕöü ńĺňęó"
+
+#~ msgid "Do you want to configure a ISDN connection for your system?"
+#~ msgstr "Öi ćŕäŕĺöĺ âű íŕńňđîiöü ISDN çëó÷ýííĺ ˘ âŕřŕé ńińňýěĺ?"
+
+#~ msgid ""
+#~ "Do you want to configure a dialup connection with modem for your system?"
+#~ msgstr "Öi ćŕäŕĺöĺ âű íŕńňđîiöü ęŕěóňŕâŕíŕĺ çëó÷ýííĺ ďđŕç ěŕäýě äŕ ńińňýěű?"
+
+#~ msgid "Do you want to configure a local network for your system?"
+#~ msgstr "Öi ćŕäŕĺöĺ âű íŕńňđîiöü ńĺňęŕâóţ ęŕíôiăóđŕöűţ âŕřŕé ńińňýěű?"
+
+#~ msgid "Downloading cryptographic packages"
+#~ msgstr "Çŕăđóçęŕ ęđűďňŕăđŕôi÷íűő ďŕęĺňŕ˘"
+
+#~ msgid ""
+#~ "DrakX will attempt at first to look for one or more PCI\n"
+#~ "SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
+#~ "to use, it will insert it (them) automatically.\n"
#~ "\n"
-#~ "If you install a Linux-Mandrake system on a machine which is part\n"
-#~ "of an already existing network, the network administrator will\n"
-#~ "have given you all necessary information (IP address, network\n"
-#~ "submask or netmask for short, and hostname). If you're setting\n"
-#~ "up a private network at home for example, you should choose\n"
-#~ "addresses.\n"
#~ "\n"
+#~ "If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
+#~ "doesn't know which driver to use for this card, or if you have no\n"
+#~ "SCSI adapters at all, you will then be prompted on whether you have\n"
+#~ "one or not. If you have none, answer \"No\". If you have one or more,\n"
+#~ "answer \"Yes\". A list of drivers will then pop up, from which you\n"
+#~ "will have to select one.\n"
#~ "\n"
-#~ "Choose \"Dialup with modem\" and the Internet connection with\n"
-#~ "a modem will be configured. DrakX will try to find your modem,\n"
-#~ "if it fails you will have to select the right serial port where\n"
-#~ "your modem is connected to."
-#~ msgstr ""
-#~ "Ăýňű đŕçäçĺë ďđűńâĺ÷ŕíű íŕńňđîéöű ëŕęŕëüíŕé ńĺňęi,\n"
-#~ "(LAN), ŕëüáî ěŕäýěŕ. \n"
#~ "\n"
-#~ "Âűá˙đűöĺ \"Ëŕęŕëüíŕ˙ ńĺňęŕ\" i DrakX ďŕńďđŕáóĺ çíŕéöi\n"
-#~ "íŕ âŕřŕé ěŕřűíĺ ŕäŕďňýđ Ethernet. Ŕäŕďňýđű PCI ďŕâiííű áűöü çíîéäçĺíű\n"
-#~ "i íŕńňđîĺíű ŕ˘ňŕěŕňű÷íŕ. Ŕäíŕę, ďđű ńęŕđűńňŕííi ISA,\n"
-#~ "ŕ˘ňŕçíŕőîäćŕííĺ íĺ ďđŕöóĺ, i âŕě ďđűéäçĺööŕ âűáiđŕöü äđŕéâĺđ\n"
-#~ "ç ńďińŕ, ˙ęi ç'˙âiööŕ ďĺđŕä âŕ÷űěŕ ˘ ăýňűě âűďŕäęó.\n"
+#~ "After you have selected the driver, DrakX will ask if you\n"
+#~ "want to specify options for it. First, try and let the driver\n"
+#~ "probe for the hardware: it usually works fine.\n"
#~ "\n"
#~ "\n"
-#~ "ßę i äë˙ ŕäŕďňýđࢠSCSI, âű ěîćŕöĺ äŕçâîëiöü äđŕéâĺđó ďđŕâĺđűöü\n"
-#~ "ďđűëŕäó ńŕěŕńňîéíŕ, iíŕęř ďđűéäçĺööŕ çŕäŕâŕöü äđŕéâĺđó íŕńňđîéęi,\n"
-#~ "˙ęi˙ âű çíîéäçĺööĺ ˘ äŕęóěĺíňŕöűi ďŕ âŕřŕěó ŕáńňŕë˙âŕííţ.\n"
+#~ "If not, do not forget the information on your hardware that you\n"
+#~ "could get from your documentation or from Windows (if you have it\n"
+#~ "on your system), as suggested by the installation guide. These\n"
+#~ "are the options you will need to provide to the driver."
+#~ msgstr ""
+#~ "DrakX ńďŕ÷ŕňęó ďŕńďđŕáóĺ çíŕéöi ŕäçií öi íĺęŕëüęi ŕäŕďňýđࢠPCI\n"
+#~ "i SCSI. Ęŕëi ŕäŕďňýđ çíîéäçĺí, i DrakX â˙äîěŕ, ˙ęi äđŕéâĺđ\n"
+#~ "äë˙ ˙ăî ďŕňđýáíű, ăýňŕ˙ ďđűëŕäŕ áóäçĺ äŕëó÷ŕíŕ ŕ˘ňŕěŕňű÷íŕ.\n"
#~ "\n"
+#~ "Ęŕëi âű ěŕĺöĺ SCSI ŕäŕďňýđ íŕ ISA-, ŕëüáî PCI-ęŕđöĺ, ŕëĺ DrakX íĺ âĺäŕĺ\n"
+#~ "˙ęi äđŕéâĺđ ńęŕđűńňŕöü ç ăýňŕé ęŕđňŕé, öi DrakX ëč÷űöü, řňî âű íĺ ěŕĺöĺ\n"
+#~ "SCSI ŕäŕďňýđࢠíŕâîăóë, ó âŕń çŕďűňŕţöü, öi ¸ńöü ¸í ó âŕń ŕëüáî íĺ.\n"
+#~ "Ęŕëi ˘ âŕń ˙ăî í˙ěŕ, ŕäęŕçâŕéöĺ \"Íĺ\". Ęŕëi ¸ńňü ŕäçií öi íĺęŕëüęi,\n"
+#~ "ŕäęŕçâŕéöĺ \"Ňŕę\". Ďŕńë˙ ăýňŕăŕ ç'˙âiööŕ ńďiń äđŕéâĺđŕ˘, ç ˙ęiő âŕě\n"
+#~ "ďŕňđýáíŕ áóäçĺ âűáđŕöü ďŕäűőîäç˙÷ű.\n"
#~ "\n"
-#~ "Ďđű ˘ńňŕ븢öű Linux-Mandrake íŕ ęŕěď'ţňýđ, ˙ęi ďđŕöóĺ âŕ ˘ćî\n"
-#~ "íŕëŕäćŕíŕé ńĺňöű, ŕäěiíińňđŕňŕđó ńĺňęi ďđűéäçĺööŕ ďŕâĺäŕěiöü\n"
-#~ "âŕě óńţ íĺŕáőîäíóţ iíôŕđěŕöűţ (IP ŕäđŕń, ěŕńęŕ ďŕäńĺňęi\n"
-#~ "öi ńęŕđî÷ŕíŕ ďŕäěŕńęŕ, i iě˙ őŕńňŕ). Ęŕëi âű ńňâŕđŕĺöĺ\n"
-#~ "ďđűâŕňíóţ ńĺňęó, íŕďđűęëŕä äîěŕ, âű ďŕâiííű âűáđŕöü\n"
-#~ "óńĺ íŕńňđîéęi ńŕěŕńňîéíŕ.\n"
+#~ "Ďŕńë˙ âűáŕđó äđŕéâĺđó, DrakX çŕďűňŕĺ, öi íĺ ćŕäŕĺöĺ âű çŕäŕöü\n"
+#~ "äë˙ ˙ăî äŕäŕňęîâű˙ íŕńňđîéęi. Ńďŕ÷ŕňęó í˙őŕé äđŕéâĺđ ďđŕâĺđűöü "
+#~ "ŕáńňŕë˙âŕííĺ:\n"
+#~ "çâű÷ŕéíŕ ˘ń¸ ďđŕöóĺ äîáđŕ.\n"
#~ "\n"
+#~ "Ó ŕäâŕđîňíűě âűďŕäęó, íĺ çŕáűâŕéöĺń˙ ďđŕ iíôŕđěŕöűţ ŕá ŕáńňŕë˙âŕííi, ˙ęóţ\n"
+#~ "ěîćíŕ ŕňđűěŕöü ŕä Windows (ęŕëi ˙íŕ ďđűńóňíi÷ŕĺ ˘ âŕřŕé ńińňýěĺ), ŕ ňŕęńŕěŕ\n"
+#~ "ďđŕ äŕďŕěîćíię ďŕ ˘ńňŕííł ăýňŕé ďđűëŕäű. ßíű çě˙ř÷ŕţöü ňű˙ íŕńňđîéęi, ˙ęi˙\n"
+#~ "íĺŕáőîäíŕ çŕäŕöü äđŕéâĺđó."
+
+#~ msgid ""
+#~ "DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
+#~ "By default, the 4.0 server is used unless your card is not supported.\n"
#~ "\n"
-#~ "Âűá˙đűöĺ \"Çëó÷ýííĺ ďđŕç ěŕäýě\" äë˙ íŕńňđîéęi çëó÷ýíí˙\n"
-#~ "äŕ ńóńâĺňíŕé ăëŕáŕëüíŕé ńĺňęi Internet ďđŕç ěŕäýě. DrakX ďŕńďđŕáóĺ\n"
-#~ "çíŕéńöi âŕř ěŕäýě, ŕëĺ ęŕëi ˘ ˙ăî ăýňŕ íĺ ŕňđűěŕĺööŕ, âŕě áóäçĺ\n"
-#~ "ďŕňđýáíŕ ńŕěŕńňîéíŕ ďŕçíŕ÷űöü ńĺđűéíű ďîđň, äŕ ˙ęîăŕ äŕëó÷ŕíű ěŕäýě."
+#~ "Do you want to keep XFree 3.3?"
+#~ msgstr ""
+#~ "DrakX ńňâîđűöü ęŕíôiăóđŕöűéíű˙ ôŕéëű äë˙ XFree 3.3 i XFree 4.0.\n"
+#~ "Ďŕ äŕěŕ˘ëĺííţ âűęŕđűńňî˘âŕĺööŕ ńĺđâĺđ 4.0. Ęŕëi Âŕřŕ âiäýŕęŕđňŕ íĺ\n"
+#~ "ďŕäňđűěëiâŕĺööŕ iě, ňŕäű ěîćíŕ âűęŕđűńňŕöü ńĺđâĺđ 3.3.\n"
+#~ "Öi ćŕäŕĺööĺ âű ďŕęiíóöü XFree 3.3 ˘ ńińňýěĺ?"
+
+#~ msgid "ECI modem"
+#~ msgstr "Ěŕäýě ECI"
+
+#~ msgid "Enable num lock at startup"
+#~ msgstr "Óęëţ÷ýííĺ num lock ďđű ńňŕđöĺ"
+
+#~ msgid "End configuration"
+#~ msgstr "Çŕęŕí÷ýííĺ íŕńňđîéęi"
+
+#~ msgid ""
+#~ "Enter a floppy to create an HTP enabled boot\n"
+#~ "(all data on floppy will be lost)"
+#~ msgstr ""
+#~ "Óńňŕ˘öĺ äűńęĺňó äë˙ çŕďińó çŕăđóç÷űęó ç HTP\n"
+#~ "(óńĺ äŕäçĺíű˙ íŕ ăýňŕé äűńęĺöĺ áóäóöü çíiř÷ŕíű)"
+
+#~ msgid "Everything configured!"
+#~ msgstr "Ąń¸ ńęŕíôiăóđŕâŕíŕ!"
+
+#~ msgid "Everything has been configured.\n"
+#~ msgstr "Óń¸ ńęŕíôiăóđŕâŕíŕ.\n"
+
+#~ msgid "Expand all"
+#~ msgstr "Đŕçăŕđíóöü óń¸"
+
+#~ msgid ""
+#~ "Failed to create an HTP boot floppy.\n"
+#~ "You may have to restart installation and give ``%s'' at the prompt"
+#~ msgstr ""
+#~ "Íĺ ŕňđűěŕëŕńü ńňâŕđűöü çŕăđ. äűńęĺňó ç HTP.\n"
+#~ "Ěŕă÷űěŕ, ďŕňđýáíŕ ďĺđŕçŕďóńöiöü óńňŕë˙âŕííĺ ç ``%s'' ó çŕďđŕřýííi"
+
+#~ msgid "Find Package"
+#~ msgstr "Ďîřóę ďŕęĺňŕ˘"
+
+#~ msgid "Find Package containing file"
+#~ msgstr "Çíŕéńöi ďŕęĺň, ˙ęi ěŕĺ ôŕéë"
+
+#~ msgid "Finding leaves"
+#~ msgstr "Ďîřóę ëińňî˘"
+
+#~ msgid "Finding leaves takes some time"
+#~ msgstr "Ďîřóę ëińňî˘ ďŕňđŕáóĺ íĺęŕňîđű ÷ŕń"
+
+#~ msgid ""
+#~ "For FTP and HTTP, you need to give the location for hdlist\n"
+#~ "It must be relative to the URL above"
+#~ msgstr ""
+#~ "Äë˙ FTP i HTTP, âű ďŕâiííű ďŕçíŕ÷űöü đŕçě˙ř÷ýííĺ hdlist\n"
+#~ "Çŕäŕâŕéöĺ ŕäíîńíŕ đŕíĺé ďŕçíŕ÷ŕíŕăŕ URL"
+
+#~ msgid "Forget the changes?"
+#~ msgstr "Çŕáűöü çě˙íĺííi?"
+
+#~ msgid "France"
+#~ msgstr "Ôđŕíöű˙"
#~ msgid ""
#~ "GNU/Linux can deal with many types of printer. Each of these\n"
@@ -7057,13 +8401,13 @@ msgstr ""
#~ "access the printer, and of course the name of the printer. The same goes\n"
#~ "for a NetWare printer, except that you need no workgroup information."
#~ msgstr ""
-#~ "Linux ěîćŕ ďđŕöŕâŕöü ńŕ řěŕňëięiěi ňűďŕěi äđóęŕâŕëüíűő ďđűëŕä. Ęîćíű ç "
+#~ "Linux ěîćŕ ďđŕöŕâŕöü ńŕ řěŕňëięiěi ňűďŕěi äđóęŕâŕëüíűő ďđűëŕäŕ˘. Ęîćíű ç "
#~ "ăýňűő\n"
-#~ "ňűďࢠďŕňđŕáóĺ đîçíŕé ˘ńňŕ븢ęi.\n"
+#~ "ňűďࢠďŕňđŕáóĺ đîçíŕăŕ ˘ńňŕë˙âŕíí˙.\n"
#~ "\n"
#~ "\n"
-#~ "Ęŕëi âŕřŕ ďđűëŕäŕ äë˙ äđóęŕâŕíí˙ äŕëó÷ŕíŕ íĺďŕńđýäíŕ äŕ ăýňŕăŕ ęŕěď'ţňýđŕ,\n"
-#~ "âűá˙đűöĺ \"Ëŕęŕëüíű ďđűíňýđ\". Âŕě áóäçĺ ďŕňđýáíŕ âűçíŕ÷űöü, äŕ ˙ęîăŕ ďîđňŕ\n"
+#~ "Ęŕëi âŕřŕ ďđűëŕäŕ äë˙ äđóęŕâŕíí˙ äŕëó÷ŕíŕ íĺďŕńđýäíŕ äŕ ăýňŕăŕ ęŕěď'ţňýđó,\n"
+#~ "ŕá˙đűöĺ \"Ëŕęŕëüíű ďđűíňýđ\". Âŕě áóäçĺ ďŕňđýáíŕ âűçíŕ÷űöü, äŕ ˙ęîăŕ ďîđňó\n"
#~ "äŕëó÷ŕíŕ ďđűëŕäŕ i âűáđŕöü ďŕäűőîäç˙÷ű ôiëüňđ.\n"
#~ "\n"
#~ "\n"
@@ -7073,50 +8417,41 @@ msgstr ""
#~ "íŕ ăýňŕě ńĺđâĺđű.\n"
#~ "\n"
#~ "\n"
-#~ "Äë˙ äîńňóďŕ äŕ ďđűíňýđó SMB (˙ęi çíŕőîäçiööŕ íŕ ŕääŕëĺíŕé ěŕřűíĺ\n"
+#~ "Äë˙ äîńňóďó äŕ ďđűíňýđó SMB (˙ęi çíŕőîäçiööŕ íŕ ŕääŕëĺíŕé ěŕřűíĺ\n"
#~ "Windows 9x/NT/2000 öi Unix ç ńĺđâĺđŕě Samba), íĺŕáőîäíŕ âĺäŕöü ˙ăî iě˙\n"
#~ "SMB (˙ęîĺ ěîćŕ íĺ ńóďŕäŕöü ç ˙ăî iěĺíĺě ó ńĺňęi TCP/IP), i, ěŕă÷űěŕ,\n"
-#~ "˙ăî IP ŕäđŕń i iě˙ ęŕđűńňŕëüíięŕ, đŕáî÷ŕé ăđóďű i ďŕđîëü äîńňóďŕ äŕ\n"
-#~ "ďđűíňýđŕ, ŕ ňŕęńŕěŕ iě˙ ďđűíňýđŕ. Ňîĺ ć ńŕěŕĺ i äë˙ ďđűíňýđŕ\n"
-#~ "NetWare, ňîëüęi íĺ ďŕňđŕáóĺööŕ iíôŕđěŕöű˙ ŕá đŕáî÷ŕé ăđóďĺ."
+#~ "˙ăî IP ŕäđŕń i iě˙ ęŕđűńňŕëüíięó, đŕáî÷ŕé ăđóďű i ďŕđîëü äîńňóďó äŕ\n"
+#~ "ďđűíňýđó, ŕ ňŕęńŕěŕ iě˙ ďđűíňýđó. Ňîĺ ć ńŕěŕĺ i äë˙ ďđűíňýđó\n"
+#~ "NetWare, ňîëüęi íĺ ďŕňđŕáóĺööŕ iíôŕđěŕöű˙ ŕá ďđŕöîóíŕé ăđóďĺ."
-#~ msgid ""
-#~ "It is strongly recommended that you answer \"Yes\" here. If you install\n"
-#~ "Microsoft Windows at a later date it will overwrite the boot sector.\n"
-#~ "Unless you have made a bootdisk as suggested, you will not be able to\n"
-#~ "boot into GNU/Linux any more."
-#~ msgstr ""
-#~ "Íŕńňîéëiâŕ đýęŕěĺíäóĺě ŕäęŕçŕöü ňóň \"Ňŕę\"! Âîńü íŕďđűęëŕä, ęŕëi âű\n"
-#~ "ďĺđŕ˘ńňŕëţĺöĺ Windows, ˙íŕ ďĺđŕçŕďiřŕ çŕăđóçŕ÷íű ńĺęňŕđ.\n"
-#~ "Ęŕëi âű íĺ ńňâŕđűëi çŕăđóçŕ÷íű äűńę, âű áîëüř íĺ çěîćŕöĺ çŕăđóçiöü\n"
-#~ "Linux!"
+#~ msgid "Genius NetMouse (serial)"
+#~ msgstr "Genius NetMouse (ďŕńë˙äî˘íŕ˙)"
-#~ msgid "Move your wheel!"
-#~ msgstr "Ďŕâĺđíłöĺ ęîëŕ ěűřł"
+#~ msgid "Genius NetMouse Pro"
+#~ msgstr "Genius NetMouse Pro"
-#~ msgid "Forget the changes?"
-#~ msgstr "Çŕáűöü çě˙íĺííi?"
+#~ msgid "Germany"
+#~ msgstr "Í˙ěĺöęi"
-#~ msgid "Cable connection"
-#~ msgstr "Ńĺňęŕâŕĺ çë÷ýííĺ"
+#~ msgid "Germany (1TR6)"
+#~ msgstr "Í˙ěĺöęi (1TR6)"
-#~ msgid "Host name:"
-#~ msgstr "Iě˙ ěŕřűíű:"
+#~ msgid "Give a name (eg: `extra', `commercial')"
+#~ msgstr "Äŕéöĺ iě˙ (íŕďđ.: `extra', `commercial')"
-#~ msgid "What is the type of your mouse?"
-#~ msgstr "ßęi ňűď âŕřŕé ěűři?"
+#~ msgid "Going to install %d MB. You can choose to install more programs"
+#~ msgstr ""
+#~ "Áóäçĺ ˘ńňŕë˙âŕíŕ %d Má. Ěîćíŕ ŕáđŕöü áîëüř ďđŕăđŕěࢠäë˙ ˘ńňŕë˙âŕíí˙."
-#~ msgid "Automatic resolutions"
-#~ msgstr "Ŕ˘ňŕěŕňű÷íŕĺ âűçíŕ÷ýííĺ ďŕěĺđࢠýęđŕíŕ"
+#~ msgid "Going to remove entry %s"
+#~ msgstr "Áóäçĺě âűäŕë˙öü ďóíęň %s"
#~ msgid ""
-#~ "To find the available resolutions I will try different ones.\n"
-#~ "Your screen will blink...\n"
-#~ "You can switch if off if you want, you'll hear a beep when it's over"
+#~ "Here are the following entries in SILO.\n"
+#~ "You can add some more or change the existing ones."
#~ msgstr ""
-#~ "Äë˙ ďîřóęŕ ďŕäűőîäç˙÷űő ďŕěĺđࢠýęđŕíŕ çŕđŕç ďŕńďđŕáóĺě đîçíű˙ đýćűěű. \n"
-#~ "Âŕř ýęđŕí áóäçĺ ěiăŕöü... Ęŕëi âŕě íĺ ďŕäŕáŕĺööŕ ěiăŕííĺ, ˙ăî ěîćíŕ \n"
-#~ "ŕäëó÷űöü, ňŕäű ďŕńë˙ çŕęŕí÷ýíí˙ áóäçĺ ÷óâŕöü ăóäîę."
+#~ "SILO çě˙ř÷ŕĺ íŕńňóďíű˙ ďóíęňű.\n"
+#~ "Âű ěîćŕöĺ äŕäŕöü ˙ř÷ý, ŕëüáî çě˙íiöü ińíóţ÷ű˙."
#~ msgid ""
#~ "I can try to find the available resolutions (eg: 800x600).\n"
@@ -7124,194 +8459,269 @@ msgstr ""
#~ "Do you want to try?"
#~ msgstr ""
#~ "Ěîćíŕ ďŕńďđŕáŕâŕöü çíŕéńöi äŕńňóďíű˙ ďŕěĺđű ýęđŕíó (íŕďđ.: 800x600).\n"
-#~ "Ó âĺëüěi đýäęiě âűďŕäęó ăýňŕ ěîćŕ ďđűâĺńöi äŕ ŕńňŕíîâó ęŕěď'ţňŕđŕ .\n"
+#~ "Ó âĺëüěi đýäęiě âűďŕäęó ăýňŕ ěîćŕ ďđűâĺńöi äŕ ńďűíĺíí˙ ęŕěď'ţňŕđó .\n"
#~ "Ćŕäŕĺöĺ ďŕńďđŕáŕâŕöü?"
+#~ msgid "I have found an ISDN Card:\n"
+#~ msgstr "Çíŕéřëi ISDN ęŕđňó:\n"
+
#~ msgid ""
-#~ "No valid modes found\n"
-#~ "Try with another video card or monitor"
+#~ "I need to configure your network adapter to be able to connect to internet."
#~ msgstr ""
-#~ "Ďŕäűőîäç˙÷ű˙ đýćűěű íĺ çíîéäçĺíű.\n"
-#~ "Ďŕńďđŕáóéöĺ âűáđŕöü iířóţ âiäýŕęŕđňó öi ěŕíiňîđ"
-
-#~ msgid "Automatical resolutions search"
-#~ msgstr "Ŕ˘ňŕěŕňű÷íű ďîřóę ďŕěĺđࢠýęđŕíŕ"
-
-#~ msgid "dhcpd"
-#~ msgstr "dhcpd"
-
-#~ msgid "pump"
-#~ msgstr "pump"
-
-#~ msgid "dhcpxd"
-#~ msgstr "dhcpxd"
-
-#~ msgid "dhcp-client"
-#~ msgstr "dhcp-client"
-
-#~ msgid "nfs mount failed"
-#~ msgstr "ďŕěűëęŕ ěŕíöiđŕâŕíí˙ nfs"
+#~ "Íĺŕáőîäíŕ ŕäęŕíôiăóđŕâŕöü âŕřó ńĺňęŕâóţ ęŕđňó, ęŕá ěŕă÷űěŕ áűëî äŕëó÷űööŕ äŕ "
+#~ "Iíňýđíýňó."
#~ msgid ""
-#~ "Choose \"Install\" if there are no previous versions of GNU/Linux\n"
-#~ "installed, or if you wish to use multiple distributions or versions.\n"
-#~ "\n"
-#~ "Choose \"Rescue\" if you wish to rescue a previous version of Mandrake "
-#~ "Linux:\n"
-#~ "%s or %s.\n"
-#~ "\n"
+#~ "If DrakX failed to find your mouse, or if you want to\n"
+#~ "check what it has done, you will be presented the list of mice\n"
+#~ "above.\n"
#~ "\n"
-#~ "Select:\n"
#~ "\n"
-#~ " - Recommended: If you have never installed GNU/Linux before, choose this.\n"
+#~ "If you agree with DrakX's settings, just click 'Ok'.\n"
+#~ "Otherwise you may choose the mouse that more closely matches your own\n"
+#~ "from the menu above.\n"
#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!\n"
+#~ "In case of a serial mouse, you will also have to tell DrakX\n"
+#~ "which serial port it is connected to."
#~ msgstr ""
-#~ "Âűá˙đűöĺ \"Óńňŕë˙âŕöü\", ęŕëi ˘ âŕń ˙ř÷ý íĺ ˘ńňŕë˙âŕíŕ íi ŕäíîé âĺđńii\n"
-#~ "GNU/Linux, ŕëüáî, ęŕëi âű ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü íĺęŕëüęi âĺđńié öi "
-#~ "äűńňđűáóňűâŕ˘.\n"
-#~ "\n"
-#~ "Âűá˙đűöĺ \"Âűđŕňŕâŕöü\", ęŕëi âű ćŕäŕĺöĺ âűđŕňŕâŕöü íĺďđŕöóţ÷óţ ďŕď˙đýäíţţ "
-#~ "âĺđńiţ Mandrake Linux:\n"
-#~ "%s ŕëüáî %s.\n"
-#~ "\n"
-#~ "\n"
-#~ "Âűá˙đűöĺ:\n"
-#~ "\n"
-#~ " - Đýęŕěĺíäóĺööŕ: Ęŕëi âű đŕíĺé íięîëi íĺ ˘ńňŕ븢âŕëi \n"
-#~ " GNU/Linux, âűá˙đűöĺ ăýňű đýćűě.\n"
+#~ "Ęŕëi DrakX ďđŕâiëüíŕ çíŕéřî˘ âŕřó ěűř, ďđîńňŕ âűá˙đűöĺ ç ěĺíţ\n"
+#~ "iířű ďóíęň. Ó ďđîöiëĺăëűě âűďŕäęó ŕá˙đűöĺ ďŕäűőîäç˙÷ű âŕđű˙íň\n"
+#~ "äđŕéâĺđó ěűřű ńŕ ńďińó âűřýé.\n"
#~ "\n"
-#~ " - Ďŕ âűáŕđó: Ăýňű đýćűě đýęŕěĺíäóĺööŕ ˘ ňűě âűďŕäęó, ęŕëi âű ďđŕöŕâŕëi \n"
-#~ " đŕíĺé ç GNU/Linux, i çěîćŕöĺ ńŕěi âűáđŕöü íĺŕáőîäíű˙\n"
-#~ " ďŕęĺňű i ŕáńňŕë˙âŕííĺ äë˙ âŕřŕăŕ ęŕěďóňŕđŕ. Ăë˙äçiöĺ íićýé "
-#~ "ďŕäđŕá˙çíŕńöł.\n"
#~ "\n"
-#~ " - Ýęńďĺđň: Âűáŕđ ăýňŕăŕ đýćűěó ńâĺä÷űöü, řňî âű ńâŕáîäíŕ âŕëîäŕĺöĺ "
-#~ "GNU/Linux\n"
-#~ " i ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü âĺëüěi äýňŕë¸âóţ Ąńňŕ븢ęó. ßę i ˘ âűďŕäęó \n"
-#~ " \"Ďŕ âűáŕđó\"âŕě ďŕňđýáíŕ áóäçĺ âűáđŕöü íĺŕáőîäíű˙ ďđŕăđŕěű i \n"
-#~ " ŕáńňŕë˙âŕííĺ âŕřŕăŕ ęŕěďóňŕđŕ.\n"
-#~ " Ęŕëi ëŕńęŕ, ÍĹ ÂŰÁIĐŔÉÖĹ ĂÝŇŰ ĐÝĆŰĚ, ĘŔËI ÍĹ ĄĎÝĄÍĹÍŰ, ŘŇÎ ĐÎÁIÖĹ "
-#~ "ĎĐŔÂIËÜÍŔ!\n"
+#~ "Ó âűďŕäęó ěűřű, ˙ęŕ˙ äŕëó÷ŕíŕ äŕ ďŕńë˙äî˘íŕăŕ ďîđňó, âŕě ďŕňđŕáóĺööŕ "
+#~ "ďŕâĺäŕěiöü\n"
+#~ "DrakX ďđŕâiëüíű íóěŕđ ďŕńë˙äî˘íŕăŕ ďîđňó, äŕ ˙ęîăŕ ˙íŕ äŕëó÷ŕíŕ."
-#~ msgid "Apple ADB Mouse"
-#~ msgstr "Apple ADB Ěűř"
+#~ msgid ""
+#~ "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
+#~ msgstr ""
+#~ "Ęŕëi âŕř ADSL ěŕäýě ŕäíŕ ç ěŕäýë˙˘ Alcatel, ďŕçíŕ÷öĺ Alcatel. Ó iířűě "
+#~ "âűďŕäęó - ECI."
-#~ msgid "Apple ADB Mouse (2 Buttons)"
-#~ msgstr "Apple ADB Ěűř (2 ęíîďęi)"
+#~ msgid "In which country are you located ?"
+#~ msgstr "ßęŕ˙ ęđŕiíŕ âŕřŕăŕ đŕçě˙ř÷ýíí˙?"
-#~ msgid "Apple ADB Mouse (3+ Buttons)"
-#~ msgstr "Apple ADB Ěűř (3 ęíîďęi öi áîëüř)"
+#~ msgid "Install/Rescue"
+#~ msgstr "Óńňŕë˙âŕííĺ/Âűđŕňŕâŕííĺ"
-#~ msgid "Apple USB Mouse"
-#~ msgstr "Apple USB Ěűř"
+#~ msgid "Installation of SILO failed. The following error occured:"
+#~ msgstr "Óńňŕë˙âŕííĺ SILO íĺ ŕňđűěŕëŕń˙. Óçíięëŕ íŕńňóďíŕ˙ ďŕěűëęŕ:"
-#~ msgid "Apple USB Mouse (2 Buttons)"
-#~ msgstr "Apple USB Ěűř (2 ęíîďęi)"
+#~ msgid "Installed packages"
+#~ msgstr "Óńňŕë˙âŕíű˙ ďŕęĺňű"
-#~ msgid "Apple USB Mouse (3+ Buttons)"
-#~ msgstr "Apple USB Ěűřü (3 ęíîďęi öi áîëüř)"
+#~ msgid "It is necessary to restart installation booting on the floppy"
+#~ msgstr "Íĺŕáőîäíŕ ďĺđŕçŕďóńöiöü óńňŕë˙âŕííĺ i çŕăđóçiööŕ ç äűńęĺňű"
-#~ msgid "ASCII MieMouse"
-#~ msgstr "ASCII MieMouse"
+#~ msgid "It is necessary to restart installation with the new parameters"
+#~ msgstr "Íĺŕáőîäíŕ ďĺđŕçŕďóńöiöü óńňŕë˙âŕííĺ ç íîâűěi ďŕđŕěĺňđŕěi"
-#~ msgid "Genius NetMouse Pro"
-#~ msgstr "Genius NetMouse Pro"
+#~ msgid ""
+#~ "It is strongly recommended that you answer \"Yes\" here. If you install\n"
+#~ "Microsoft Windows at a later date it will overwrite the boot sector.\n"
+#~ "Unless you have made a bootdisk as suggested, you will not be able to\n"
+#~ "boot into GNU/Linux any more."
+#~ msgstr ""
+#~ "Íŕńňîéëiâŕ đýęŕěĺíäóĺě ŕäęŕçŕöü ňóň \"Ňŕę\"! Âîńü íŕďđűęëŕä, ęŕëi âű\n"
+#~ "ďĺđŕ˘ńňŕëţĺöĺ Windows, ˙íŕ ďĺđŕçŕďiřŕ çŕăđóçŕ÷íű ńĺęňŕđ.\n"
+#~ "Ęŕëi âű íĺ ńňâŕđűëi çŕăđóçŕ÷íű äűńę, âű áîëüř íĺ çäîëĺĺöĺ çŕăđóçiöü\n"
+#~ "Linux!"
-#~ msgid "ATI Bus Mouse"
-#~ msgstr "ATI Bus Mouse"
+#~ msgid "Kensington Thinking Mouse (serial)"
+#~ msgstr "Kensington Thinking Mouse (ďŕńë˙äî˘íŕ˙)"
-#~ msgid "Microsoft Bus Mouse"
-#~ msgstr "Microsoft Bus Mouse"
+#~ msgid ""
+#~ "LILO (the LInux LOader) can boot Linux and other operating systems.\n"
+#~ "Normally they are correctly detected during installation. If you don't\n"
+#~ "see yours detected, you can add one or more now.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you don't want that everybody could access at one of them, you can "
+#~ "remove\n"
+#~ "it now (a boot disk will be needed to boot it)."
+#~ msgstr ""
+#~ "LILO (LInux LOader) ěîćŕ çŕăđóćŕöü Linux i iířű˙ ŕďĺđŕöűéíű˙ ńińňýěű.\n"
+#~ "Çâű÷ŕéíŕ ˙íű ęŕđýęňíŕ çíŕőîäç˙ööŕ ďđű ˘ńňŕë˙âŕííł. Ęŕëi âű íĺ ˘áŕ÷űëi\n"
+#~ "ňűő ńińňýě, ˙ęi˙ áűëi ˘ńňŕë˙âŕíű íŕ ěŕřűíĺ, âű ěîćŕöĺ äŕäŕöü çŕđŕç\n"
+#~ "ŕäíó ç iő ŕëüáî íĺęŕëüęi.\n"
+#~ "\n"
+#~ "\n"
+#~ "Ęŕëi âű íĺ ćŕäŕĺöĺ, ęŕá óńĺ ěĺëi äîńňóď äŕ ŕäíîé ç iő, âűäŕëiöĺ ˙ĺ çŕđŕç\n"
+#~ "(äçĺë˙ ˙ĺ çŕăđóçęi ďŕňđŕáóĺööŕ çŕăđóçŕ÷íű äűńę)."
-#~ msgid "Logitech Bus Mouse"
-#~ msgstr "Logitech Bus Mouse"
+#~ msgid "Linear (needed for some SCSI drives)"
+#~ msgstr "Ëiíĺéíŕ (íĺŕáőîäíŕ äë˙ íĺęŕňîđűő ŕäŕďňýđࢠSCSI)"
-#~ msgid "USB Mouse"
-#~ msgstr "USB Ěűř"
+#~ msgid ""
+#~ "Linux does not yet fully support ultra dma 66 HPT.\n"
+#~ "As a work-around i can make a custom floppy giving access the hard drive on "
+#~ "ide2 and ide3"
+#~ msgstr ""
+#~ "Linux ďŕęóëü ˙ř÷ý íĺ öŕëęŕě ďŕäňđűěëiâŕĺ ultra dma 66 HPT.\n"
+#~ "ßę âŕđű˙íň, ěŕăó ńňâŕđűöü äűńęĺňó, ˙ęŕ˙ çŕá˙ńďĺ÷űöü äîńňóď äŕ äűńęó íŕ ide2 "
+#~ "i ide3"
-#~ msgid "USB Mouse (3 buttons or more)"
-#~ msgstr "USB Ěűř (3 ęíîďęi öi áîëüř)"
+#~ msgid "Local LAN"
+#~ msgstr "Ëŕęŕëüíŕ˙ ńĺňęŕ"
-#~ msgid "Microsoft Rev 2.1A or higher (serial)"
-#~ msgstr "Microsoft Rev 2.1A ŕëüáî âűřĺé (ďŕńë˙äî˘íŕ˙)"
+#~ msgid "Local Printer Device (URI)"
+#~ msgstr "Ëŕęŕëüíű ďđűíňýđ (URI)"
+
+#~ msgid ""
+#~ "Local networking has already been configured.\n"
+#~ "Do you want to:"
+#~ msgstr ""
+#~ "Íŕńňđîéęi ëŕęŕëüíŕé ńĺňęi óćî çŕäŕäçĺíű.\n"
+#~ "Öi ćŕäŕĺöĺ Âű:"
+
+#~ msgid "Logitech Bus Mouse"
+#~ msgstr "Logitech Bus Mouse"
#~ msgid "Logitech MouseMan+/FirstMouse+ (serial)"
#~ msgstr "Logitech MouseMan+/FirstMouse+ (ďŕńë˙äî˘íŕ˙)"
-#~ msgid "ASCII MieMouse (serial)"
-#~ msgstr "ASCII MieMouse (ďŕńë˙äî˘íŕ˙)"
+#~ msgid "Logitech MouseMan/FirstMouse (serial)"
+#~ msgstr "Logitech MouseMan/FirstMouse (ďŕńë˙äî˘íŕ˙)"
-#~ msgid "Genius NetMouse (serial)"
-#~ msgstr "Genius NetMouse (ďŕńë˙äî˘íŕ˙)"
+#~ msgid "MD5"
+#~ msgstr "MD5"
+
+#~ msgid "Microsoft Bus Mouse"
+#~ msgstr "Microsoft Bus Mouse"
#~ msgid "Microsoft IntelliMouse (serial)"
#~ msgstr "Microsoft IntelliMouse (ďŕńë˙äî˘íŕ˙)"
-#~ msgid "Logitech MouseMan/FirstMouse (serial)"
-#~ msgstr "Logitech MouseMan/FirstMouse (ďŕńë˙äî˘íŕ˙)"
+#~ msgid "Microsoft Rev 2.1A or higher (serial)"
+#~ msgstr "Microsoft Rev 2.1A ŕëüáî âűřĺé (ďŕńë˙äî˘íŕ˙)"
#~ msgid "Microsoft compatible (serial)"
#~ msgstr "Microsoft ńóě˙ńöiěŕ˙ (ďŕńë˙äî˘íŕ˙)"
-#~ msgid "Kensington Thinking Mouse (serial)"
-#~ msgstr "Kensington Thinking Mouse (ďŕńë˙äî˘íŕ˙)"
+#~ msgid "Move your wheel!"
+#~ msgstr "Ďŕâĺđíłöĺ ęîëŕ ěűřű"
+
+#~ msgid "Multimedia"
+#~ msgstr "Ěóëüňűěĺäű˙"
+
+#~ msgid "Network:"
+#~ msgstr "Ńĺňęŕ:"
+
+#~ msgid "No cdrom available (nothing in /mnt/cdrom)"
+#~ msgstr "cdrom íĺäŕńňóďíű (íi÷îăŕ í˙ěŕ ˘ /mnt/cdrom)"
+
+#~ msgid "No match"
+#~ msgstr "Íĺ çíîéäçĺíŕ"
+
+#~ msgid "No more match"
+#~ msgstr "Áîëüř íĺ çíîéäçĺíŕ"
+
+#~ msgid "No root partition found"
+#~ msgstr "Ęŕđŕí¸âű đŕçäçĺë íĺ çíîéäçĺíű"
#~ msgid ""
-#~ "I need to configure your network adapter to be able to connect to internet."
+#~ "No valid modes found\n"
+#~ "Try with another video card or monitor"
#~ msgstr ""
-#~ "Íĺŕáőîäíŕ ŕäęŕíôiăóđŕâŕöü âŕřó ńĺňęŕâóţ ęŕđňó, ęŕá ěŕă÷űěŕ áűëî äŕëó÷űööŕ äŕ "
-#~ "Iíňýđíýň."
+#~ "Ďŕäűőîäç˙÷ű˙ đýćűěű íĺ çíîéäçĺíű.\n"
+#~ "Ďŕńďđŕáóéöĺ âűáđŕöü iířóţ âiäýŕęŕđňó öi ěŕíiňîđ"
+
+#~ msgid "None"
+#~ msgstr "Í˙ěŕ"
+
+#~ msgid "Other countries"
+#~ msgstr "Iířű˙ ęđŕiíű"
+
+#~ msgid "Package"
+#~ msgstr "Ďŕęĺň"
+
+#~ msgid "Password:"
+#~ msgstr "Ďŕđîëü:"
+
+#~ msgid "Please choose a partition to use as your root partition."
+#~ msgstr "ßęi đŕçäçĺë äűńęŕ ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü ó ˙ęŕńöi ęŕđŕí¸âŕăŕ?"
#~ msgid ""
#~ "Please choose which network adaptater do you want to use to connect to "
#~ "internet.\n"
#~ "If you don't know, choose eth0.\n"
#~ msgstr ""
-#~ "Ęŕëi ëŕńęŕ, ďŕçíŕ÷öĺ ńĺňęŕâű ŕäŕďňŕđ, ˙ęi âű áóäçĺöĺ âűęŕđűńňî˘âŕöü äŕ "
-#~ "äŕëó÷ýíí˙ äŕ Iíňýđíýň.\n"
+#~ "Ęŕëi ëŕńęŕ, ďŕçíŕ÷öĺ ńĺňęŕâű ŕäŕďňŕđ, ˙ęi âű áóäçĺöĺ âűęŕđűńňî˘âŕöü äçĺë˙ "
+#~ "äŕëó÷ýíí˙ äŕ Iíňýđíýňó.\n"
#~ "Ęŕëi íĺ âĺäŕĺöĺ, ďŕçíŕ÷öĺ eth0.\n"
-#~ msgid "CHAP"
-#~ msgstr "CHAP"
+#~ msgid "Please submit the following information"
+#~ msgstr "Ďđŕäńňŕ˘öĺ íŕńňóďíóţ iíôŕđěŕöűţ"
-#~ msgid "Socket"
-#~ msgstr "Ńîęĺň"
+#~ msgid "Reconfigure local network"
+#~ msgstr "Ďĺđŕęŕíôiăóđŕâŕöü ëŕęŕëüíóţ ńĺňęó"
-#~ msgid ""
-#~ "DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
-#~ "By default, the 4.0 server is used unless your card is not supported.\n"
-#~ "\n"
-#~ "Do you want to keep XFree 3.3?"
-#~ msgstr ""
-#~ "DrakX ńňâîđűöü ęŕíôiăóđŕöűéíű˙ ôŕéëű äë˙ XFree 3.3 i XFree 4.0.\n"
-#~ "Ďŕ äŕěŕ˘ëĺííţ âűęŕđűńňî˘âŕĺööŕ ńĺđâĺđ 4.0. Ęŕëi Âŕřŕ âiäýŕęŕđňŕ íĺ\n"
-#~ "ďŕäňđűěëiâŕĺööŕ iě, ňŕäű ěîćíŕ âűęŕđűńňŕöü ńĺđâĺđ 3.3.\n"
-#~ "Öi ćŕäŕĺööĺ âű ďŕęiíóöü XFree 3.3 ˘ ńińňýěĺ?"
+#~ msgid "Regexp"
+#~ msgstr "Regexp"
-#~ msgid "Cryptographic"
-#~ msgstr "Ęđűďňŕăđŕôi˙"
+#~ msgid "Remove"
+#~ msgstr "Çíiř÷űöü"
-#~ msgid "Configure LAN"
-#~ msgstr "Íŕńňđîéęŕ ńĺňęi (ËÂŃ)"
+#~ msgid "Rescue"
+#~ msgstr "Âűđŕňŕâŕííĺ"
-#~ msgid "End configuration"
-#~ msgstr "Çŕęŕí÷ýííĺ íŕńňđîéęi"
+#~ msgid "SILO main options"
+#~ msgstr "Ăŕëî˘íű˙ îďöűi SILO"
-#~ msgid "Do not set up networking"
-#~ msgstr "Íĺ ˘ńňŕ븢âŕöü ńĺňęó"
+#~ msgid "Sciences"
+#~ msgstr "Íŕâóęîâŕĺ"
-#~ msgid "Do you want to configure a local network for your system?"
-#~ msgstr "Öi ćŕäŕĺöĺ âű íŕńňđîiöü ńĺňęŕâóţ ęŕíôiăóđŕöűţ âŕřŕé ńińňýěű?"
+#~ msgid "Search"
+#~ msgstr "Ďîřóę"
+
+#~ msgid "Searching root partition."
+#~ msgstr "Ďîřóę ęŕđŕí¸âŕăŕ đŕäçĺëŕ."
+
+#~ msgid "See"
+#~ msgstr "Ăë."
+
+#~ msgid "Select the size you want to install"
+#~ msgstr "Ŕá˙đűöĺ ďŕćŕäŕíű ďŕěĺđ óńňŕë˙âŕíí˙"
+
+#~ msgid ""
+#~ "Select:\n"
+#~ "\n"
+#~ " - Recommended: If you have never installed Linux before.\n"
+#~ "\n"
+#~ "\n"
+#~ " - Customized: If you are familiar with Linux, you will be able to \n"
+#~ "select the usage for the installed system between normal, development or\n"
+#~ "server. Choose \"Normal\" for a general purpose installation of your\n"
+#~ "computer. You may choose \"Development\" if you will be using the computer\n"
+#~ "primarily for software development, or choose \"Server\" if you wish to\n"
+#~ "install a general purpose server (for mail, printing...).\n"
+#~ "\n"
+#~ "\n"
+#~ " - Expert: If you are fluent with GNU/Linux and want to perform\n"
+#~ "a highly customized installation, this Install Class is for you. You will\n"
+#~ "be able to select the usage of your installed system as for \"Customized\"."
+#~ msgstr ""
+#~ "Ŕá˙đűöĺ:\n"
+#~ "\n"
+#~ " - Đýęŕěĺíäóĺööŕ: Ęŕëi âű đŕíĺé íięîëi íĺ ˘ńňŕ븢âŕëi Linux.\n"
+#~ "\n"
+#~ " - Ďŕ âűáŕđó: Ęŕëi âű çíŕ¸ěű˙ ç Linux, ňî ěîćíŕ ŕáđŕöü íŕńňóďíű˙ \n"
+#~ "ńďîńŕáű âűęŕđűńňŕíí˙ ńińňýěű: íŕđěŕëüíű, äë˙ đŕńďđŕöî˘ř÷űęŕ, ŕëüáî\n"
+#~ "ńĺđâĺđ. Ŕá˙đűöĺ \"Çâű÷ŕéíű\" äë˙ ˘ńňŕë˙âŕíí˙ ńińňýěű ŕăóëüíŕăŕ ďđűçíŕ÷ýíí˙.\n"
+#~ "Đýćűě \"Äë˙ đŕńďđŕöî˘ęi\" ďđűçíŕ÷ŕíű äë˙ ňűő, őňî âűęŕđűńňî˘âŕĺ ęŕěď'ţňýđ\n"
+#~ "ěĺíŕâiňŕ äë˙ đŕńďđŕöî˘ęi ďđŕăđŕěŕ˘. Ęŕëi âű ćŕäŕĺöĺ ˘ńňŕë˙âŕöü ńĺđâĺđ "
+#~ "ŕăóëüíŕăŕ\n"
+#~ "ďđűçíŕ÷ýíí˙ (äë˙ ďîřňű, äđóęó, ...), ňŕäű ŕá˙đűöĺ \"Ńĺđâĺđ\".\n"
+#~ "\n"
+#~ "\n"
+#~ " - Ýęńďĺđň: Ęŕëi âű ńâŕáîäíŕ âŕëîäŕĺöĺ GNU/Linux i ćŕäŕĺöĺ ďđŕâĺńöi\n"
+#~ "˘ńňŕë˙âŕííĺ ç ďŕăëűáëĺííŕé íŕńňđîéęŕé, ăýňű Ęëŕń Óńňŕë˙âŕíí˙ - äë˙ âŕń.\n"
+#~ "Âű ňŕęńŕěŕ çěîćŕöĺ ŕáđŕöü ďđűçíŕ÷ýííĺ ńińňýěű, ˙ę ó âŕđű˙íöĺ \"Ďŕ âűáŕđó\"."
+
+#~ msgid "Setup SCSI"
+#~ msgstr "Íŕńňđîéęŕ SCSI"
#~ msgid "Show less"
#~ msgstr "Ďŕęŕçŕöü ěĺíĺé"
@@ -7319,238 +8729,238 @@ msgstr ""
#~ msgid "Show more"
#~ msgstr "Ďŕęŕçŕöü áîëĺé"
-#~ msgid "Take over the hard drive"
-#~ msgstr "Âűęŕđűńňî˘âŕöü óńţ äűńęŕâóţ ďđŕńňîđó"
+#~ msgid "Show only leaves"
+#~ msgstr "Ďŕęŕçŕöü óńĺ ëińňű"
-#~ msgid "URI for Local printer"
-#~ msgstr "URI äë˙ ëŕęŕëüíŕăŕ ďđűíňýđŕ"
+#~ msgid "Shutting down"
+#~ msgstr "Âűęëţ÷ýííĺ ęŕěď'ţňýđó"
-#~ msgid "Local Printer Device (URI)"
-#~ msgstr "Ëŕęŕëüíű ďđűíňýđ (URI)"
+#~ msgid "Size: %d MB"
+#~ msgstr "Ďŕěĺđ: %d MB"
-#~ msgid ""
-#~ "What URI device is your printer connected to\n"
-#~ "(note that parallel:/dev/lp0 is equivalent to LPT1:)?"
-#~ msgstr ""
-#~ "Äŕ ˙ęîăŕ ďîđňó äŕëó÷ŕíű âŕř ďđűíňýđ \n"
-#~ "(/dev/lp0 ýęâiâŕëĺíňíű LPT1:)?\n"
+#~ msgid "Size: %d MB\n"
+#~ msgstr "Ďŕěĺđ: %d MB\n"
-#~ msgid "curly"
-#~ msgstr "ęó÷ŕđŕâű"
+#~ msgid "Size: %s MB"
+#~ msgstr "Ďŕěĺđ: %s Má"
-#~ msgid "default"
-#~ msgstr "Ďŕ äŕěŕ˘ëĺííţ"
+#~ msgid "Slovakian"
+#~ msgstr "Ńëŕâŕöęi"
-#~ msgid "tie"
-#~ msgstr "ăŕëüřňóę"
+#~ msgid "Small(%dMB)"
+#~ msgstr "Ěŕëű (%dMá)"
-#~ msgid "brunette"
-#~ msgstr "áđóíĺň"
+#~ msgid "Socket"
+#~ msgstr "Ńîęĺň"
-#~ msgid "girl"
-#~ msgstr "äç˙˘÷űíŕ"
+#~ msgid "Sort by"
+#~ msgstr "Óďŕđŕäęŕâŕöü ďŕ"
-#~ msgid "woman-blond"
-#~ msgstr "ćŕí÷űíŕ-áëŕíäçiíęŕ"
+#~ msgid "Take over the hard drive"
+#~ msgstr "Âűęŕđűńňî˘âŕöü óńţ äűńęŕâóţ ďđŕńňîđó"
-#~ msgid "automagic"
-#~ msgstr "ŕ˘ňŕěŕăi÷íű"
+#~ msgid "Text"
+#~ msgstr "Ňýęńň"
-#~ msgid "Network:"
-#~ msgstr "Ńĺňęŕ:"
+#~ msgid "The following packages are going to be uninstalled"
+#~ msgstr "Íŕńňóďíű˙ ďŕęĺňű áóäóöü âűäŕëĺíű ç ńińňýěű"
-#~ msgid "Everything configured!"
-#~ msgstr "Ąń¸ ńęŕíôiăóđŕâŕíŕ!"
+#~ msgid ""
+#~ "The packages selected are now being installed. This operation\n"
+#~ "should take a few minutes unless you have chosen to upgrade an\n"
+#~ "existing system, in that case it can take more time even before\n"
+#~ "upgrade starts."
+#~ msgstr ""
+#~ "Çŕđŕç ďŕ÷íĺööŕ ˘ńňŕë˙âŕíüí˙ ŕáđŕíűő ďŕęĺňŕ˘. Ăýňŕ˙ ŕďĺđŕöű˙ ŕäűěĺ\n"
+#~ "íĺęŕëüęi őâiëiíࢠ÷ŕńó, ęŕëi âű íĺ ŕáđŕëi ŕáíŕ˘ëĺííĺ ińíóţ÷ŕé ńińňýěű,\n"
+#~ "áî ó ŕďîříiě âűďŕäęó řěŕň ÷ŕńó ďŕňđŕáóĺööŕ ˙ř÷ý äŕ ďŕ÷ŕňęó ŕáíŕ˘ëĺíí˙\n"
+#~ "ęŕá ďđŕŕíŕëiçŕâŕöü ńińňýěó."
-#~ msgid "What is your keyboard layout?"
-#~ msgstr "ßęi ňűď âŕřŕé ęëŕâi˙ňóđű?"
+#~ msgid "This label is already in use"
+#~ msgstr "Ăýňŕ˙ ěĺňęŕ ˘ćî âűęŕđűńňî˘âŕĺööŕ"
-#~ msgid "Normal"
-#~ msgstr "Çâű÷ŕéíű"
+#~ msgid ""
+#~ "This section is dedicated to configuring a local area\n"
+#~ "network (LAN) or a modem.\n"
+#~ "\n"
+#~ "Choose \"Local LAN\" and DrakX will\n"
+#~ "try to find an Ethernet adapter on your machine. PCI adapters\n"
+#~ "should be found and initialized automatically.\n"
+#~ "However, if your peripheral is ISA, autodetection will not work,\n"
+#~ "and you will have to choose a driver from the list that will appear then.\n"
+#~ "\n"
+#~ "\n"
+#~ "As for SCSI adapters, you can let the driver probe for the adapter\n"
+#~ "in the first time, otherwise you will have to specify the options\n"
+#~ "to the driver that you will have fetched from documentation of your\n"
+#~ "hardware.\n"
+#~ "\n"
+#~ "\n"
+#~ "If you install a Linux-Mandrake system on a machine which is part\n"
+#~ "of an already existing network, the network administrator will\n"
+#~ "have given you all necessary information (IP address, network\n"
+#~ "submask or netmask for short, and hostname). If you're setting\n"
+#~ "up a private network at home for example, you should choose\n"
+#~ "addresses.\n"
+#~ "\n"
+#~ "\n"
+#~ "Choose \"Dialup with modem\" and the Internet connection with\n"
+#~ "a modem will be configured. DrakX will try to find your modem,\n"
+#~ "if it fails you will have to select the right serial port where\n"
+#~ "your modem is connected to."
+#~ msgstr ""
+#~ "Ăýňű đŕçäçĺë ďđűńâĺ÷ŕíű íŕńňđîéöű ëŕęŕëüíŕé ńĺňęi,\n"
+#~ "(LAN), ŕëüáî ěŕäýěŕ. \n"
+#~ "\n"
+#~ "Ŕá˙đűöĺ \"Ëŕęŕëüíŕ˙ ńĺňęŕ\" i DrakX ďŕńďđŕáóĺ çíŕéöi\n"
+#~ "íŕ âŕřŕé ěŕřűíĺ ŕäŕďňýđ Ethernet. Ŕäŕďňýđű PCI ďŕâiííű áűöü çíîéäçĺíű\n"
+#~ "i íŕńňđîĺíű ŕ˘ňŕěŕňű÷íŕ. Ŕäíŕę, ďđű ńęŕđűńňŕííi ISA,\n"
+#~ "ŕ˘ňŕçíŕőîäćŕííĺ íĺ ďđŕöóĺ, i âŕě ďđűéäçĺööŕ âűáiđŕöü äđŕéâĺđ\n"
+#~ "ńŕ ńďińó, ˙ęi ç'˙âiööŕ ďĺđŕä âŕ÷űěŕ ˘ ăýňűě âűďŕäęó.\n"
+#~ "\n"
+#~ "\n"
+#~ "ßę i äë˙ ŕäŕďňýđࢠSCSI, âű ěîćŕöĺ äŕçâîëiöü äđŕéâĺđó ďđŕâĺđűöü\n"
+#~ "ďđűëŕäó ńŕěŕńňîéíŕ, iíŕęř ďđűéäçĺööŕ çŕäŕâŕöü äđŕéâĺđó íŕńňđîéęi,\n"
+#~ "˙ęi˙ âű çíîéäçĺööĺ ˘ äŕęóěĺíňŕöűi ďŕ âŕřŕěó ŕáńňŕë˙âŕííţ.\n"
+#~ "\n"
+#~ "\n"
+#~ "Ďđű ˘ńňŕë˙âŕííł Linux-Mandrake íŕ ęŕěď'ţňýđ, ˙ęi ďđŕöóĺ âŕ ˘ćî\n"
+#~ "íŕëŕäćŕíŕé ńĺňöű, ŕäěiíińňđŕňŕđó ńĺňęi ďđűéäçĺööŕ ďŕâĺäŕěiöü\n"
+#~ "âŕě óńţ íĺŕáőîäíóţ iíôŕđěŕöűţ (IP ŕäđŕń, ěŕńęŕ ďŕäńĺňęi\n"
+#~ "öi ńęŕđî÷ŕíŕ ďŕäěŕńęŕ, i iě˙ őŕńňŕ). Ęŕëi âű ńňâŕđŕĺöĺ\n"
+#~ "ďđűâŕňíóţ ńĺňęó, íŕďđűęëŕä äîěŕ, âű ďŕâiííű âűáđŕöü\n"
+#~ "óńĺ íŕńňđîéęi ńŕěŕńňîéíŕ.\n"
+#~ "\n"
+#~ "\n"
+#~ "Ŕá˙đűöĺ \"Çëó÷ýííĺ ďđŕç ěŕäýě\" äë˙ íŕńňđîéęi çëó÷ýíí˙\n"
+#~ "ç ńóńâĺňíŕé ăëŕáŕëüíŕé ńĺňęŕé Internet ďđŕç ěŕäýě. DrakX ďŕńďđŕáóĺ\n"
+#~ "çíŕéńöi âŕř ěŕäýě, ŕëĺ ęŕëi ˘ ˙ăî ăýňŕ íĺ ŕňđűěŕĺööŕ, âŕě áóäçĺ\n"
+#~ "ďŕňđýáíŕ ńŕěŕńňîéíŕ ďŕçíŕ÷űöü ńĺđűéíű ďîđň, äŕ ˙ęîăŕ äŕëó÷ŕíű ěŕäýě."
-#~ msgid "Configure my card"
-#~ msgstr "Ęŕíôiăóđŕâŕöü ěŕţ ęŕđňó"
+#~ msgid ""
+#~ "Time (secs) of inactivity after which\n"
+#~ "it hangs up. (leave blank to disable it)"
+#~ msgstr ""
+#~ "×ŕń (ń˙ę) íĺŕęňű˘íŕńöi, ďŕńë˙ ˙ęîăŕ\n"
+#~ "âĺřŕöü ńëóőŕ˘ęó. (Ďŕęiíüöĺ ďóńňîĺ, ęŕá ŕäě˙íiöü)"
-#~ msgid "pptp alcatel"
-#~ msgstr "pptp alcatel"
+#~ msgid ""
+#~ "To find the available resolutions I will try different ones.\n"
+#~ "Your screen will blink...\n"
+#~ "You can switch if off if you want, you'll hear a beep when it's over"
+#~ msgstr ""
+#~ "Äë˙ ďîřóęó ďŕäűőîäç˙÷űő ďŕěĺđࢠýęđŕíó çŕđŕç ďŕńďđŕáóĺě đîçíű˙ đýćűěű. \n"
+#~ "Âŕř ýęđŕí áóäçĺ ěiăŕöü... Ęŕëi âŕě íĺ ďŕäŕáŕĺööŕ ěiăŕííĺ, ˙ăî ěîćíŕ \n"
+#~ "ŕäęëţ÷űöü, ňŕäű ďŕńë˙ çŕęŕí÷ýíí˙ áóäçĺ ÷óâŕöü ăóäîę."
-#~ msgid "Try to find PCMCIA cards?"
-#~ msgstr "Ďŕńďđŕáŕâŕöü çíŕéńöi ęŕđňű PCMCIA?"
+#~ msgid "Toggle between Installed and Available"
+#~ msgstr "Ďĺđŕęëţ÷űöü Óńňŕë˙âŕíŕ/Äŕńňóďíŕ"
+
+#~ msgid "Too many packages chosen: %dMB doesn't fit in %dMB"
+#~ msgstr "Âűáđŕíŕ çŕřěŕň ďŕęĺňŕ˘: %dMá íĺ ˘ëŕçiöü ó %dMá"
+
+#~ msgid "Tree"
+#~ msgstr "Äđýâŕ"
#~ msgid "Try to find %s devices?"
#~ msgstr "Ďŕńďđŕáŕâŕöü çíŕéńöi %s ďđűëŕäű?"
-#~ msgid "Small(%dMB)"
-#~ msgstr "Ěŕëű (%dMá)"
+#~ msgid "Try to find PCI devices?"
+#~ msgstr "Ďŕńďđŕáŕâŕöü çíŕéńöi PCI ďđűëŕäű?"
-#~ msgid "Modem Configuration"
-#~ msgstr "Íŕńňđîéęŕ ěŕäýěó"
+#~ msgid "Try to find PCMCIA cards?"
+#~ msgstr "Ďŕńďđŕáŕâŕöü çíŕéńöi ęŕđňű PCMCIA?"
-#~ msgid ""
-#~ "Do you want to configure a dialup connection with modem for your system?"
-#~ msgstr "Öi ćŕäŕĺöĺ âű íŕńňđîiöü ęŕěóňŕâŕíŕĺ çëó÷ýííĺ ďđŕç ěŕäýě äŕ ńińňýěű?"
+#~ msgid "Try to find a modem?"
+#~ msgstr "Ďŕńďđŕáŕâŕöü çíŕéńöi ěŕäýě?"
-#~ msgid "Do you want to configure a ISDN connection for your system?"
-#~ msgstr "Öi ćŕäŕĺöĺ âű íŕńňđîiöü ISDN çëó÷ýííĺ ˘ âŕřŕé ńińňýěĺ?"
+#~ msgid "URI for Local printer"
+#~ msgstr "URI äë˙ ëŕęŕëüíŕăŕ ďđűíňýđó"
-#~ msgid "Try to find PCI devices?"
-#~ msgstr "Ďŕńďđŕáŕâŕöü çíŕéńöi PCI ďđűëŕäű?"
+#~ msgid "URL of the directory containing the RPMs"
+#~ msgstr "URL ęŕňŕëîăŕ, ˙ęi çě˙ř÷ŕĺ RPM"
-#~ msgid "Searching root partition."
-#~ msgstr "Ďîřóę ęŕđŕí¸âŕăŕ đŕäçĺëŕ."
+#~ msgid "USB Mouse (3 buttons or more)"
+#~ msgstr "USB Ěűř (3 ęíîďęi öi áîëĺé)"
-#~ msgid "%s: This is not a root partition, please select another one."
-#~ msgstr "%s: Ăýňŕ íĺ ęŕđŕí¸âű đŕçäçĺë, ęŕëi ëŕńęŕ âűá˙đűöĺ iířű."
+#~ msgid "Uninstall"
+#~ msgstr "Âűäŕëiöü ç ńińňýěű"
-#~ msgid "No root partition found"
-#~ msgstr "Ęŕđŕí¸âű đŕçäçĺë íĺ çíîéäçĺíű"
+#~ msgid "Uninstalling the RPMs"
+#~ msgstr "Âűäŕëĺííĺ âűáđŕíűő RPM-ďŕęĺňࢠç ńińňýěű"
-#~ msgid "Can't use broadcast with no NIS domain"
-#~ msgstr "Íĺěŕă÷űěŕ âűęŕđűńňî˘âŕöü broadcast áĺç äŕěĺíŕ NIS"
+#~ msgid "Update location"
+#~ msgstr "Çě˙íiöü ęđűíiöó"
-#~ msgid "Please choose a partition to use as your root partition."
-#~ msgstr "ßęi đŕçäçĺë äűńęŕ ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü ó ˙ęŕńöi ęŕđŕí¸âŕăŕ?"
+#~ msgid "Updating the RPMs base"
+#~ msgstr "Ŕäíŕ˘ëĺííĺ áŕçű ďŕęĺňࢠRPM"
-#~ msgid "You don't have any windows partitions!"
-#~ msgstr "Âű íĺ ěŕĺöĺ ŕíi˙ęiő Windows đŕçäçĺëŕ˘!"
+#~ msgid "Use MD5 passwords"
+#~ msgstr "Âűęŕđűńňî˘âŕöü ďŕđîëi MD5"
-#~ msgid "You don't have any enough room for Lnx4win"
-#~ msgstr "Ó âŕń íĺ őŕďŕĺ ěĺńöŕ äë˙ Lnx4win"
+#~ msgid "Use diskdrake"
+#~ msgstr "Âűęŕđűńňî˘âŕöü DiskDrake"
-#~ msgid ", %U MB"
-#~ msgstr ", %U MB"
+#~ msgid "Use hard drive optimisations?"
+#~ msgstr "Âűęŕđűńňî˘âŕöü ŕďňűěiçŕöűţ ćîđńňęŕăŕ äűńęó?"
-#~ msgid "Automated"
-#~ msgstr "Ŕ˘ňŕěŕňű÷íű"
+#~ msgid "Use shadow file"
+#~ msgstr "Âűęŕđűńňî˘âŕöü öĺí˙âű ôŕéë"
-#~ msgid "SILO main options"
-#~ msgstr "Ăŕëî˘íű˙ îďöűi SILO"
+#~ msgid "User name:"
+#~ msgstr "Iě˙ ęŕđűńňŕëüíięó:"
+
+#~ msgid "Wait"
+#~ msgstr "×ŕęŕéöĺ"
#~ msgid ""
-#~ "Here are the following entries in SILO.\n"
-#~ "You can add some more or change the existing ones."
+#~ "What URI device is your printer connected to\n"
+#~ "(note that parallel:/dev/lp0 is equivalent to LPT1:)?"
#~ msgstr ""
-#~ "SILO çě˙ř÷ŕĺ íŕńňóďíű˙ ďóíęňű.\n"
-#~ "Âű ěîćŕöĺ äŕäŕöü ˙ř÷ý, ŕëüáî çě˙íiöü ińíóţ÷ű˙."
+#~ "Äŕ ˙ęîăŕ ďîđňó äŕëó÷ŕíű âŕř ďđűíňýđ \n"
+#~ "(/dev/lp0 ýęâiâŕëĺíňíű LPT1:)?"
-#~ msgid "This label is already in use"
-#~ msgstr "Ăýňŕ˙ ěĺňęŕ ˘ćî âűęŕđűńňî˘âŕĺööŕ"
+#~ msgid "What are looking for?"
+#~ msgstr "Řňî âű ćŕäŕĺöĺ çíŕéńöł?"
-#~ msgid "Installation of SILO failed. The following error occured:"
-#~ msgstr "Óńňŕ븢ęŕ SILO íĺ ŕňđűěŕëŕń˙. Óçíięëŕ íŕńňóďíŕ˙ ďŕěűëęŕ:"
+#~ msgid "What do you wish to do?"
+#~ msgstr "Řňî âű őî÷ŕöĺ çđŕáiöü?"
-#~ msgid ""
-#~ "DrakX will attempt at first to look for one or more PCI\n"
-#~ "SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
-#~ "to use, it will insert it (them) automatically.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
-#~ "doesn't know which driver to use for this card, or if you have no\n"
-#~ "SCSI adapters at all, you will then be prompted on whether you have\n"
-#~ "one or not. If you have none, answer \"No\". If you have one or more,\n"
-#~ "answer \"Yes\". A list of drivers will then pop up, from which you\n"
-#~ "will have to select one.\n"
-#~ "\n"
-#~ "\n"
-#~ "After you have selected the driver, DrakX will ask if you\n"
-#~ "want to specify options for it. First, try and let the driver\n"
-#~ "probe for the hardware: it usually works fine.\n"
-#~ "\n"
-#~ "\n"
-#~ "If not, do not forget the information on your hardware that you\n"
-#~ "could get from your documentation or from Windows (if you have it\n"
-#~ "on your system), as suggested by the installation guide. These\n"
-#~ "are the options you will need to provide to the driver."
-#~ msgstr ""
-#~ "DrakX ńďŕ÷ŕňęó ďŕńďđŕáóĺ çíŕéöi ŕäçií öi íĺęŕëüęi ŕäŕďňýđࢠPCI\n"
-#~ "i SCSI. Ęŕëi ŕäŕďňýđ çíîéäçĺí, i DrakX â˙äîěŕ, ˙ęi äđŕéâĺđ\n"
-#~ "äë˙ ˙ăî ďŕňđýáíű, ăýňŕ˙ ďđűëŕäŕ áóäçĺ äŕëó÷ŕíŕ ŕ˘ňŕěŕňű÷íŕ.\n"
-#~ "\n"
-#~ "Ęŕëi âű ěŕĺöĺ SCSI ŕäŕďňýđ íŕ ISA-, ŕëüáî PCI-ęŕđöĺ, ŕëĺ DrakX íĺ âĺäŕĺ\n"
-#~ "˙ęi äđŕéâĺđ ńęŕđűńňŕöü ç ăýňŕé ęŕđňŕé, öi DrakX ëč÷űöü, řňî âű íĺ ěŕĺöĺ\n"
-#~ "SCSI ŕäŕďňýđࢠíŕâîăóë, ó âŕń çŕďűňŕţöü, öi ¸ńöü ¸í ó âŕń ŕëüáî íĺ.\n"
-#~ "Ęŕëi ˘ âŕń ˙ăî íĺěŕ, ŕäęŕçâŕéöĺ \"Íĺ\". Ęŕëi ¸ńňü ŕäçií öi íĺęŕëüęi,\n"
-#~ "ŕäęŕçâŕéöĺ \"Ňŕę\". Ďŕńë˙ ăýňŕăŕ ç'˙âiööŕ ńďiń äđŕéâĺđŕ˘, ç ˙ęiő âŕě\n"
-#~ "ďŕňđýáíŕ áóäçĺ âűáđŕöü ďŕäűőîäç˙÷ű.\n"
-#~ "\n"
-#~ "Ďŕńë˙ âűáŕđó äđŕéâĺđŕ, DrakX çŕďűňŕĺ, öi íĺ ćŕäŕĺöĺ âű çŕäŕöü\n"
-#~ "äë˙ ˙ăî äŕäŕňęîâű˙ íŕńňđîéęi. Ńďŕ÷ŕňęó í˙őŕé äđŕéâĺđ ďđŕâĺđűöü "
-#~ "ŕáńňŕë˙âŕííĺ:\n"
-#~ "çâű÷ŕéíŕ ˘ń¸ ďđŕöóĺ äîáđŕ.\n"
-#~ "\n"
-#~ "Ó ŕäâŕđîňíűě âűďŕäęó, íĺ çŕáűâŕéöĺ ďđŕ iíôŕđěŕöűţ ŕá ŕáńňŕë˙âŕííi, ˙ęóţ\n"
-#~ "ěîćíŕ ŕňđűěŕöü ŕä Windows (ęŕëi ˙íŕ ďđűńóňíi÷ŕĺ ˘ âŕřŕé ńińňýěĺ), ŕ ňŕęńŕěŕ\n"
-#~ "ďđŕ äŕďŕěîćíię ďŕ ˘ńňŕíî˘ęĺ ăýňŕé ďđűëŕäű. ßíű çě˙ř÷ŕţöü ňű˙ íŕńňđîéęi, "
-#~ "˙ęi˙\n"
-#~ "íĺŕáőîäíŕ çŕäŕöü äđŕéâĺđó."
+#~ msgid "What is the type of your mouse?"
+#~ msgstr "ßęi ňűď âŕřŕé ěűřű?"
-#~ msgid "Shutting down"
-#~ msgstr "Âűęëţ÷ýííĺ ęŕěď'ţňýđŕ"
+#~ msgid "What is your keyboard layout?"
+#~ msgstr "ßęi ňűď âŕřŕé ęëŕâi˙ňóđű?"
-#~ msgid "After %s partition %s,"
-#~ msgstr "Ďŕńë˙ %s đŕçáĺéöĺ %s,"
+#~ msgid "What is your system used for?"
+#~ msgstr "Äçĺë˙ ÷ŕăî Âű áóäçĺöĺ âűęŕđűńňî˘âŕöü ńłńňýěó?"
-#~ msgid "Size: %s MB"
-#~ msgstr "Ďŕěĺđ: %s Má"
+#~ msgid "What usage do you want?"
+#~ msgstr "ßęîĺ âűęŕđűńňŕííĺ ŕáiđŕĺöĺ?"
-#~ msgid "changing type of"
-#~ msgstr "Çě˙íĺííĺ ňűďŕ"
+#~ msgid "Which bootloader(s) do you want to use?"
+#~ msgstr "ßęi ďŕ÷ŕňęîâű çŕăđóç÷űę âű ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü?"
-#~ msgid "formatting"
-#~ msgstr "ôŕđěŕöiđŕâŕííĺ"
+#~ msgid "Which file are you looking for?"
+#~ msgstr "ßęi ôŕéë âű řóęŕĺöĺ?"
-#~ msgid ""
-#~ "Choose \"Install\" if there are no previous versions of Linux\n"
-#~ "installed, or if you wish to use multiple distributions or versions.\n"
-#~ "\n"
-#~ "\n"
-#~ "Choose \"Upgrade\" if you wish to update a previous version of Mandrake\n"
-#~ "Linux: 5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1\n"
-#~ "(Helios) or Gold 2000."
-#~ msgstr ""
-#~ "Âűá˙đűöĺ \"Óńňŕ븢ęŕ\", ęŕëi íĺěŕ ˘ńňŕë˙âŕíűő đŕíĺé âĺđńié Linux,\n"
-#~ "ŕëüáî ęŕëi ćŕäŕĺöĺ âűęŕđűńňî˘âŕöü íĺęŕëüęi äűńňđűáóňűâࢠŕëüáî âĺđńié.\n"
-#~ "\n"
-#~ "\n"
-#~ "Âűá˙đűöĺ \"Ŕáíŕâiöü\" ęŕëi âű ćŕäŕĺöĺ ŕáíŕâiöü ďŕď˙đýäíţţ âĺđńiţ\n"
-#~ "Mandrake Linux: 5.1 (Venice), 5.2 (Leeloo), 5.3 (Festen), 6.0 (Venus),\n"
-#~ "6.1 (Helios) ŕëüáî Gold 2000."
+#~ msgid "Which package are looking for"
+#~ msgstr "ßęi˙ ďŕęĺňű řóęŕĺě"
-#~ msgid ""
-#~ "Select:\n"
-#~ "\n"
-#~ " - Recommended: If you have never installed Linux before.\n"
-#~ "\n"
-#~ "\n"
-#~ " - Customized: If you are familiar with Linux, you will be able to \n"
-#~ "select the usage for the installed system between normal, development or\n"
-#~ "server. Choose \"Normal\" for a general purpose installation of your\n"
-#~ "computer. You may choose \"Development\" if you will be using the computer\n"
-#~ "primarily for software development, or choose \"Server\" if you wish to\n"
-#~ "install a general purpose server (for mail, printing...).\n"
-#~ "\n"
-#~ "\n"
-#~ " - Expert: If you are fluent with GNU/Linux and want to perform\n"
-#~ "a highly customized installation, this Install Class is for you. You will\n"
-#~ "be able to select the usage of your installed system as for \"Customized\"."
-#~ msgstr ""
-#~ "Âűá˙đűöĺ:\n"
-#~ "\n"
-#~ " - Đýęŕěĺíäóĺööŕ: Ęŕëi âű đŕíĺé íięîëi íĺ ˘ńňŕ븢âŕëi Linux.\n"
-#~ "\n"
-#~ " - Ďŕ âűáŕđó: Ęŕëi âű çíŕ¸ěű ç Linux, ňî ěîćíŕ âűáđŕöü íŕńňóďíű˙ \n"
-#~ "ńďîńŕáű âűęŕđűńňŕíí˙ ńińňýěű: íŕđěŕëüíű, äë˙ đŕńďđŕöî˘ř÷űęŕ, ŕëüáî\n"
-#~ "ńĺđâĺđ. Âűá˙đűöĺ \"Çâű÷ŕéíű\" äë˙ ˘ńňŕíî˘ęi ńińňýěű ŕăóëüíŕăŕ ďđűçíŕ÷ýíí˙.\n"
-#~ "Đýćűě \"Äë˙ đŕńďđŕöî˘ęi\" ďđűçíŕ÷ŕíű äë˙ ňűő, őňî âűęŕđűńňî˘âŕĺ ęŕěď'ţňýđ\n"
-#~ "ěĺíŕâiňŕ äë˙ đŕńďđŕöî˘ęi ďđŕăđŕě. Ęŕëi âű ćŕäŕĺöĺ ˘ńňŕë˙âŕöü ńĺđâĺđ "
-#~ "ŕăóëüíŕăŕ\n"
-#~ "ďđűçíŕ÷ýíí˙ (äë˙ ďîřňű, äđóęó, ...), ňî âűá˙đűöĺ \"Ńĺđâĺđ\".\n"
-#~ "\n"
-#~ "\n"
-#~ " - Ýęńďĺđň: Ęŕëi âű ńâŕáîäíŕ âŕëîäŕĺöĺ GNU/Linux i ćŕäŕĺöĺ ďđŕâĺńöi\n"
-#~ "˘ńňŕ븢ęó ç ďŕăëűáëĺííŕé íŕńňđîéęŕé, ăýňű Ęëŕń Óńňŕíî˘ęi - äë˙ âŕń. Âű \n"
-#~ "ňŕęńŕěŕ ńěîćŕöĺ âűáđŕöü ďđűçíŕ÷ýííĺ ńińňýěű, ˙ę ó âŕđű˙íöĺ \"Ďŕ âűáŕđó\"."
+#~ msgid "Which packages do you want to install"
+#~ msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕë˙âŕíí˙"
+
+#~ msgid "Which partition type do you want?"
+#~ msgstr "ßęi ňűď đŕçäçĺëó âŕě ďŕňđýáíű?"
+
+#~ msgid "Which serial port is your mouse connected to?"
+#~ msgstr "Äŕ ˙ęîăŕ ďîńë˙äî˘íŕăŕ ďîđňó äŕëó÷ŕíŕ âŕřŕ ěűř?"
+
+#~ msgid "You don't have any enough room for Lnx4win"
+#~ msgstr "Ó âŕń íĺ őŕďŕĺ ěĺńöŕ äë˙ Lnx4win"
+
+#~ msgid "You don't have any windows partitions!"
+#~ msgstr "Âű íĺ ěŕĺöĺ ŕíi˙ęiő Windows đŕçäçĺëŕ˘!"
#~ msgid ""
#~ "You may now select the packages you wish to install.\n"
@@ -7568,121 +8978,99 @@ msgstr ""
#~ "install. It is impossible to install a package without installing all\n"
#~ "of its dependencies."
#~ msgstr ""
-#~ "Çŕđŕç ěîćíŕ âűáđŕöü ďŕęĺňű ďđŕăđŕě, ˙ęi˙ âű ćŕäŕĺöĺ ˘ńňŕë˙âŕöü.\n"
+#~ "Çŕđŕç ěîćíŕ ŕáđŕöü ďŕęĺňű ďđŕăđŕě, ˙ęi˙ âű ćŕäŕĺöĺ ˘ńňŕë˙âŕöü.\n"
#~ "\n"
#~ "\n"
-#~ "Ďŕ-ďĺđřŕĺ, âű ěîćŕöĺ âűáđŕöü ăđóďó ďŕęĺňࢠęŕá óńňŕë˙âŕöü öi ŕáíŕâiöü. "
-#~ "Ďŕńë˙\n"
+#~ "Ďŕ-ďĺđřŕĺ, âű ěîćŕöĺ ŕáđŕöü ăđóďó ďŕęĺňࢠęŕá óńňŕë˙âŕöü öi ŕáíŕâiöü. Ďŕńë˙\n"
#~ "âű ěîćŕöĺ ŕäçíŕ÷űöü áîëüř ďŕęĺňࢠó ŕäďŕâĺäíŕńöi ç ˙ăóëüíűě ďŕěĺđŕě, ˙ęi\n"
-#~ "âű ćŕäŕĺöĺ âűáđŕöü.\n"
-#~ "\n"
+#~ "âű ćŕäŕĺöĺ ŕáđŕöü.\n"
#~ "\n"
-#~ "Ęŕëi âű ďđŕöóĺöĺ ˘ đýćűěĺ ýęńďĺđňŕ, ňî ďŕęĺňű ěîćíŕ âűáiđŕöü iíäűâiäóŕëüíŕ.\n"
-#~ "Ěĺéöĺ íŕ ˘âŕçĺ, řňî íĺęŕňîđű˙ ďŕęĺňű ďŕňđŕáóţöü óńňŕ븢ęi iířűő ďŕęĺňŕ˘.\n"
-#~ "Ăýňŕ íŕçâŕĺööŕ çŕëĺćíŕńööţ ďŕęĺňŕ˘. Ďŕęĺňű, ˙ęi˙ âű âűáđŕëi, i ďŕęĺňű,\n"
-#~ "ŕä ˙ęiő ˙íi çŕëĺćŕöü, áóäóöü ŕ˘ňŕěŕňű÷íŕ âűáđŕíű äë˙ ˘ńňŕ븢ęi.\n"
-#~ "Íĺěŕă÷űěŕ ˘ńňŕë˙âŕöü ďŕęĺň äŕ ˘ńňŕ븢ęi ˘ńiő ďŕęĺňŕ˘, ŕä ˙ęiő ¸í çŕëĺćűöü.\n"
#~ "\n"
-#~ "\n"
-
-#~ msgid "Help"
-#~ msgstr "Äŕďŕěîăŕ"
+#~ "Ęŕëi âű ďđŕöóĺöĺ ˘ đýćűěĺ ýęńďĺđňó, ňŕäű ďŕęĺňű ěîćíŕ ŕáiđŕöü "
+#~ "iíäűâiäóŕëüíŕ.\n"
+#~ "Ěŕéöĺ íŕ ˘âŕçĺ, řňî íĺęŕňîđű˙ ďŕęĺňű ďŕňđŕáóţöü óńňŕë˙âŕíí˙ iířűő ďŕęĺňŕ˘.\n"
+#~ "Ăýňŕ çŕâĺööŕ çŕëĺćíŕńööţ ďŕęĺňŕ˘. Ďŕęĺňű, ˙ęi˙ âű ŕáđŕëi, i ďŕęĺňű,\n"
+#~ "ŕä ˙ęiő ˙íű çŕëĺćŕöü, áóäóöü ŕ˘ňŕěŕňű÷íŕ ŕáđŕíű äçĺë˙ ˘ńňŕë˙âŕíí˙.\n"
+#~ "Íĺěŕă÷űěŕ ˘ńňŕë˙âŕöü ďŕęĺň äŕ ˘ńňŕë˙âŕíí˙ ˘ńiő ďŕęĺňŕ˘, ŕä ˙ęiő ¸í çŕëĺćűöü."
#~ msgid ""
-#~ "LILO (the LInux LOader) can boot Linux and other operating systems.\n"
-#~ "Normally they are correctly detected during installation. If you don't\n"
-#~ "see yours detected, you can add one or more now.\n"
-#~ "\n"
+#~ "Your computer can be configured to share its Internet connection.\n"
#~ "\n"
-#~ "If you don't want that everybody could access at one of them, you can "
-#~ "remove\n"
-#~ "it now (a boot disk will be needed to boot it)."
#~ msgstr ""
-#~ "LILO (LInux LOader) ěîćŕ çŕăđóćŕöü Linux i iířű˙ ŕďĺđŕöűéíű˙ ńińňýěű.\n"
-#~ "Çâű÷ŕéíŕ ˙íű ęŕđýęňíŕ çíŕőîäç˙ööŕ ďđű ˘ńňŕíî˘ęĺ. Ęŕëi âű íĺ ˘áŕ÷űëi\n"
-#~ "ňűő ńińňýě, ˙ęi˙ áűëi ˘ńňŕíî˘ëĺíű íŕ ěŕřűíĺ, âű ěîćŕöĺ äŕäŕöü çŕđŕç\n"
-#~ "ŕäíó ç iő ŕëüáî íĺęŕëüęi.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ęŕëi âű íĺ ćŕäŕĺöĺ, ęŕá óńĺ ěĺëi äîńňóď äŕ ŕäíîé ç iő, óäŕëiöĺ ˙ĺ çŕđŕç\n"
-#~ "(äë˙ ˙ĺ çŕăđóçęi ďŕňđŕáóĺööŕ çŕăđóçŕ÷íű äűńę)."
-
-#~ msgid "Setup SCSI"
-#~ msgstr "Íŕńňđîéęŕ SCSI"
+#~ "Âŕř ęŕęěď'ţňýđ ěîćŕ áűöü ńęŕíôiăóđŕâŕíű äŕ ńóěĺńíŕăŕ Iíňýđíýň-çëó÷ýíí˙.\n"
-#~ msgid "Choose install or upgrade"
-#~ msgstr "Âűá˙đűöĺ ˘ńňŕ븢ęó öi ŕáíŕ˘ëĺííĺ"
+#~ msgid "automagic"
+#~ msgstr "ŕ˘ňŕěŕăi÷íű"
#~ msgid "beginner"
#~ msgstr "ďŕ÷űíŕţ÷ű"
-#~ msgid "developer"
-#~ msgstr "đŕńďđŕöî˘ř÷űę"
+#~ msgid "brunette"
+#~ msgstr "áđóíĺň"
-#~ msgid "expert"
-#~ msgstr "ýęńďĺđň"
+#~ msgid "changing type of"
+#~ msgstr "Çě˙íĺííĺ ňűďó"
-#~ msgid "server"
-#~ msgstr "ńĺđâĺđ"
+#~ msgid "default"
+#~ msgstr "Ďŕ äŕěŕ˘ëĺííţ"
-#~ msgid "Bad kickstart file %s (failed %s)"
-#~ msgstr "Äđýííű ńňŕđňŕâű (kickstart) ôŕéë %s (ďŕěűëęŕ %s)"
+#~ msgid "dhcp-client"
+#~ msgstr "dhcp-client"
-#~ msgid "Going to install %d MB. You can choose to install more programs"
-#~ msgstr "Áóäçĺ ˘ńňŕíî˘ëĺíŕ %d Má. Ěîćíŕ âűáđŕöü áîëüř ďđŕăđŕě äë˙ ˘ńňŕ븢ęi."
+#~ msgid "dhcpxd"
+#~ msgstr "dhcpxd"
-#~ msgid "What usage do you want?"
-#~ msgstr "ßęîĺ âűęŕđűńňŕííĺ âűáiđŕĺöĺ?"
+#~ msgid "don't use pppoe"
+#~ msgstr "íĺ âűęŕđűńňî˘âŕöü pppoe"
-#~ msgid "Too many packages chosen: %dMB doesn't fit in %dMB"
-#~ msgstr "Âűáđŕíŕ çŕřěŕň ďŕęĺňŕ˘: %dMá íĺ ˘ëŕçiöü ó %dMá"
+#~ msgid "expert"
+#~ msgstr "ýęńďĺđň"
-#~ msgid "Local LAN"
-#~ msgstr "Ëŕęŕëüíŕ˙ ńĺňęŕ"
+#~ msgid "formatting"
+#~ msgstr "ôŕđěŕňŕâŕííĺ"
-#~ msgid "Which packages do you want to install"
-#~ msgstr "Âűáŕđ ďŕęĺňࢠäë˙ ˘ńňŕ븢ęi"
+#~ msgid "girl"
+#~ msgstr "äç˙˘÷űíŕ"
-#~ msgid "Downloading cryptographic packages"
-#~ msgstr "Çŕăđóçęŕ ęđűďňŕăđŕôi÷íűő ďŕęĺňŕ˘"
+#~ msgid "i18n (important)"
+#~ msgstr "i18n (âŕćíŕ)"
-#~ msgid "Linear (needed for some SCSI drives)"
-#~ msgstr "Ëiíĺéíŕ (íĺŕáőîäíŕ äë˙ íĺęŕňîđűő ŕäŕďňýđࢠSCSI)"
+#~ msgid "i18n (nice)"
+#~ msgstr "i18n (äîáđŕ)"
+
+#~ msgid "i18n (very nice)"
+#~ msgstr "i18n (âĺëüěi äîáđŕ)"
#~ msgid "linear"
#~ msgstr "Ëiíĺéíŕ"
-#~ msgid ""
-#~ "Linux does not yet fully support ultra dma 66 HPT.\n"
-#~ "As a work-around i can make a custom floppy giving access the hard drive on "
-#~ "ide2 and ide3"
-#~ msgstr ""
-#~ "Linux ďŕęóëü ˙ř÷ý íĺ çóńiě ďŕäňđűěëiâŕĺ ultra dma 66 HPT.\n"
-#~ "ßę âŕđű˙íň, ěŕăó ńňâŕđűöü äűńęĺňó, ˙ęŕ˙ çŕá˙ńďĺ÷űöü äîńňóď äŕ äűńęó íŕ ide2 "
-#~ "i ide3"
+#~ msgid "loopback"
+#~ msgstr "Âiđňóŕëüíŕ˙ ôŕéëŕâŕ˙ ńińňýěŕ (loopback)"
-#~ msgid ""
-#~ "Enter a floppy to create an HTP enabled boot\n"
-#~ "(all data on floppy will be lost)"
-#~ msgstr ""
-#~ "Óńňŕ˘öĺ äűńęĺňó äë˙ çŕďińó çŕăđóç÷űęŕ ç HTP\n"
-#~ "(óńĺ äŕäçĺíű˙ íŕ ăýňŕé äűńęĺöĺ çíięíóöü)"
+#~ msgid "mandatory"
+#~ msgstr "ŕáŕâ˙çęîâŕ"
-#~ msgid "It is necessary to restart installation booting on the floppy"
-#~ msgstr "Íĺŕáőîäíŕ ďĺđŕçŕďóńöiöü óńňŕ븢ęó i çŕăđóçiööŕ ç äűńęĺňű"
+#~ msgid "nfs mount failed"
+#~ msgstr "ďŕěűëęŕ ěŕíöiđŕâŕíí˙ nfs"
-#~ msgid "It is necessary to restart installation with the new parameters"
-#~ msgstr "Íĺŕáőîäíŕ ďĺđŕçŕďóńöiöü óńňŕ븢ęó ç íîâűěi ďŕđŕěĺňđŕěi"
+#~ msgid "pptp alcatel"
+#~ msgstr "pptp alcatel"
+
+#~ msgid "pump"
+#~ msgstr "pump"
#~ msgid ""
-#~ "Failed to create an HTP boot floppy.\n"
-#~ "You may have to restart installation and give ``%s'' at the prompt"
+#~ "rpmdrake is currently in ``low memory'' mode.\n"
+#~ "I'm going to relaunch rpmdrake to allow searching files"
#~ msgstr ""
-#~ "Íĺ ŕňđűěŕëŕńü ńňâŕđűöü çŕăđ. äűńęĺňó ç HTP.\n"
-#~ "Ěŕă÷űěŕ, ďŕňđýáíŕ ďĺđŕçŕďóńöiöü óńňŕ븢ęó ç ``%s'' ó çŕďđŕřýííi"
+#~ "rpmdrake çŕđŕç ó đýćűěĺ ``low memory''.\n"
+#~ "rpmdrake áóäçĺ ďĺđŕçŕďóř÷ŕíű äçĺë˙ çŕáĺńď˙÷ýíí˙ ďîřóęó ôŕéëŕ˘"
-#~ msgid "Password:"
-#~ msgstr "Ďŕđîëü:"
+#~ msgid "shadow"
+#~ msgstr "öĺíü"
-#~ msgid "User name:"
-#~ msgstr "Iě˙ ęŕđűńňŕëüíięŕ:"
+#~ msgid "tie"
+#~ msgstr "ăŕëüřňóę"
+
+#~ msgid "woman-blond"
+#~ msgstr "ćŕí÷űíŕ-áëŕíäűíęŕ"
diff --git a/perl-install/share/po/bg.po b/perl-install/share/po/bg.po
index 9ef82d1a3..cbfc4a16b 100644
--- a/perl-install/share/po/bg.po
+++ b/perl-install/share/po/bg.po
@@ -4,14 +4,14 @@
# Pavel Cholakov <pavel@linux.home.bg>, 1999.
# Boyan Ivanov <boyan17@bulgaria.com>, 1999, 2000
# Bozhan Boiadzhiev <bozhan@plov.omega.bg>, 2000
-# Valery Dachev <v.dachev@mail.com>, 2000
+# Valery Dachev <v.dachev@mail.com>, 2000, 2001
#
-# Bulgarians on Linux use microsoft-cp1251 encoding
+# Bulgarians on Linux use windows-1251 encoding
#
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2000-11-11 21:39+0100\n"
+"POT-Creation-Date: 2001-04-17 16:58+0200\n"
"PO-Revision-Date: 2000-08-15 15:29+0200\n"
"Last-Translator: Valery Dachev <v.dachev@mail.com>\n"
"Language-Team: Bulgarian\n"
@@ -19,32 +19,55 @@ msgstr ""
"Content-Type: text/plain; charset=windows-1251\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:179
+#: ../../Xconfigurator.pm_.c:232
+msgid "Configure all heads independantly"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:233
+msgid "Use Xinerama extension"
+msgstr "Čçďîëçâŕé đŕçřčđĺíčĺňî Xinerama"
+
+#: ../../Xconfigurator.pm_.c:236
+#, c-format
+msgid "Configure only card \"%s\" (%s)"
+msgstr "Íŕńňđîéęŕ ńŕěî íŕ ęŕđňŕ \"%s\" (%s)"
+
+#: ../../Xconfigurator.pm_.c:239
+msgid "Multi-head configuration"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:240
+msgid ""
+"Your system support multiple head configuration.\n"
+"What do you want to do?"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:249
msgid "Graphic card"
msgstr "Ăđŕôč÷íŕ ęŕđňŕ"
-#: ../../Xconfigurator.pm_.c:179
+#: ../../Xconfigurator.pm_.c:249
msgid "Select a graphic card"
msgstr "Čçáĺđĺňĺ ăđŕôč÷íŕ ęŕđňŕ"
-#: ../../Xconfigurator.pm_.c:180
+#: ../../Xconfigurator.pm_.c:250
msgid "Choose a X server"
msgstr "Čçáĺđĺňĺ X ńúđâúđ"
-#: ../../Xconfigurator.pm_.c:180
+#: ../../Xconfigurator.pm_.c:250
msgid "X server"
msgstr "X ńúđâúđ"
-#: ../../Xconfigurator.pm_.c:217 ../../Xconfigurator.pm_.c:223
+#: ../../Xconfigurator.pm_.c:304 ../../Xconfigurator.pm_.c:311
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:220
+#: ../../Xconfigurator.pm_.c:307
msgid "Which configuration of XFree do you want to have?"
msgstr "Ęî˙ íŕńňđîéęŕ íŕ XFree čńęŕňĺ äŕ čěŕňĺ ?"
-#: ../../Xconfigurator.pm_.c:232
+#: ../../Xconfigurator.pm_.c:320
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -55,31 +78,17 @@ msgstr ""
"Ęŕđňŕňŕ âč ńĺ ďîääúđćŕ îň XFree %s, ęîéňî ěîćĺ äŕ čěŕ ďî-äîáđŕ ďîääđúćęŕ íŕ "
"2D."
-#: ../../Xconfigurator.pm_.c:234 ../../Xconfigurator.pm_.c:257
+#: ../../Xconfigurator.pm_.c:322 ../../Xconfigurator.pm_.c:355
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "Ęŕđňŕňŕ âč ěîćĺ äŕ čěŕ ďîääđúćęŕ íŕ őŕđäóĺđíî 3D óńęîđĺíčĺ â XFree %s."
-#: ../../Xconfigurator.pm_.c:236 ../../Xconfigurator.pm_.c:259
+#: ../../Xconfigurator.pm_.c:324 ../../Xconfigurator.pm_.c:357
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s ń őŕđäóĺđíî 3D óńęîđĺíčĺ"
-#: ../../Xconfigurator.pm_.c:245
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
-"Your card is supported by XFree %s which may have a better support in 2D."
-msgstr ""
-"Ęŕđňŕňŕ âč ěîćĺ äŕ čěŕ ďîääđúćęŕ íŕ őŕđäóĺđíî 3D óńęîđĺíčĺ, íî ńŕěî ń XFree "
-"%s,\n"
-"ÎŇÁĹËĹĆĹŇĹ, ×Ĺ ŇÎÂŔ Ĺ ĹĘŃĎĹĐČĚĹÍŇŔËÍŔ ĎÎÄÄĐÚĆĘŔ Č ĚÎĆĹ ÄŔ ÇŔÁČĹ ĘÎĚĎŢŇÚĐŔ "
-"ÂČ.\n"
-"Ęŕđňŕňŕ âč ńĺ ďîääúđćŕ îň XFree %s, ęîéňî ěîćĺ äŕ čěŕ ďî-äîáđŕ ďîääđúćęŕ íŕ "
-"2D."
-
-#: ../../Xconfigurator.pm_.c:248
+#: ../../Xconfigurator.pm_.c:332 ../../Xconfigurator.pm_.c:346
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -89,32 +98,46 @@ msgstr ""
"ÎŇÁĹËĹĆĹŇĹ, ×Ĺ ŇÎÂŔ Ĺ ĹĘŃĎĹĐČĚĹÍŇŔËÍŔ ĎÎÄÄĐÚĆĘŔ Č ĘÎĚĎŢŇÚĐÚŇ ÂČ ĚÎĆĹ ÄŔ "
"ÇŔÁČĹ."
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfigurator.pm_.c:334 ../../Xconfigurator.pm_.c:348
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s ń ĹĘŃĎĹĐČĚĹÍŇŔËÍO őŕđäóĺđíî 3D óńęîđĺíčĺ"
-#: ../../Xconfigurator.pm_.c:265
+#: ../../Xconfigurator.pm_.c:343
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+"Ęŕđňŕňŕ âč ěîćĺ äŕ čěŕ ďîääđúćęŕ íŕ őŕđäóĺđíî 3D óńęîđĺíčĺ, íî ńŕěî ń XFree "
+"%s,\n"
+"ÎŇÁĹËĹĆĹŇĹ, ×Ĺ ŇÎÂŔ Ĺ ĹĘŃĎĹĐČĚĹÍŇŔËÍŔ ĎÎÄÄĐÚĆĘŔ Č ĚÎĆĹ ÄŔ ÇŔÁČĹ ĘÎĚĎŢŇÚĐŔ "
+"ÂČ.\n"
+"Ęŕđňŕňŕ âč ńĺ ďîääúđćŕ îň XFree %s, ęîéňî ěîćĺ äŕ čěŕ ďî-äîáđŕ ďîääđúćęŕ íŕ "
+"2D."
+
+#: ../../Xconfigurator.pm_.c:363
msgid "XFree configuration"
msgstr "Íŕńňđîéęŕ íŕ XFree"
-#: ../../Xconfigurator.pm_.c:303
+#: ../../Xconfigurator.pm_.c:396
msgid "Select the memory size of your graphic card"
msgstr "Čçáĺđĺňĺ ęŕďŕöčňĺň íŕ ďŕěĺňňŕ íŕ ăđŕôč÷íŕňŕ ńč ęŕđňŕ"
-#: ../../Xconfigurator.pm_.c:347
+#: ../../Xconfigurator.pm_.c:443
msgid "Choose options for server"
msgstr "Čçáĺđĺňĺ îďöčč çŕ ńúđâúđŕ"
-#: ../../Xconfigurator.pm_.c:358
+#: ../../Xconfigurator.pm_.c:460
msgid "Choose a monitor"
msgstr "Čçáĺđĺňĺ ěîíčňîđ"
-#: ../../Xconfigurator.pm_.c:358
+#: ../../Xconfigurator.pm_.c:460
msgid "Monitor"
msgstr "Ěîíčňîđ"
-#: ../../Xconfigurator.pm_.c:361
+#: ../../Xconfigurator.pm_.c:463
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -138,40 +161,40 @@ msgstr ""
"ďîâđĺäčňĺ ěîíčňîđŕ ńč.\n"
" Ŕęî čěŕňĺ í˙ęŕęâč ńúěíĺíč˙, čçáĺđĺňĺ ęîíńĺđâŕňčâíŕ íŕńňđîéęŕ."
-#: ../../Xconfigurator.pm_.c:368
+#: ../../Xconfigurator.pm_.c:470
msgid "Horizontal refresh rate"
msgstr "Őîđčçîíňŕëíŕ ńęîđîńň íŕ âúçńňŕíîâ˙âŕíĺ"
-#: ../../Xconfigurator.pm_.c:368
+#: ../../Xconfigurator.pm_.c:471
msgid "Vertical refresh rate"
msgstr "Âĺđňčęŕëíŕ ńęîđîńň íŕ âúçńňŕíîâ˙âŕíĺ"
-#: ../../Xconfigurator.pm_.c:407
+#: ../../Xconfigurator.pm_.c:508
msgid "Monitor not configured"
msgstr "Ěîíčňîđúň íĺ ĺ íŕńňđîĺí"
-#: ../../Xconfigurator.pm_.c:410
+#: ../../Xconfigurator.pm_.c:511
msgid "Graphic card not configured yet"
msgstr "Ăđŕôč÷íŕňŕ ęŕđňŕ âńĺ îůĺ íĺ ĺ íŕńňđîĺíŕ"
-#: ../../Xconfigurator.pm_.c:413
+#: ../../Xconfigurator.pm_.c:514
msgid "Resolutions not chosen yet"
msgstr "Îůĺ íĺ ĺ čçáđŕíŕ đŕçäĺëčňĺëíŕ ńďîńîáíîńň"
-#: ../../Xconfigurator.pm_.c:429
+#: ../../Xconfigurator.pm_.c:530
msgid "Do you want to test the configuration?"
msgstr "Čńęŕňĺ ëč äŕ ňĺńňâŕňĺ íŕńňđîéęčňĺ?"
-#: ../../Xconfigurator.pm_.c:433
+#: ../../Xconfigurator.pm_.c:534
msgid "Warning: testing this graphic card may freeze your computer"
msgstr ""
"Âíčěŕíčĺ: ňĺńňâŕíĺňî íŕ ňŕçč ăđŕôč÷íŕ ęŕđňŕ ěîćĺ äŕ \"çŕěđŕçč\" ęîěďţňúđŕ âč"
-#: ../../Xconfigurator.pm_.c:436
+#: ../../Xconfigurator.pm_.c:537
msgid "Test of the configuration"
msgstr "Ďđîâĺđęŕ íŕ íŕńňđîéęŕňŕ"
-#: ../../Xconfigurator.pm_.c:475
+#: ../../Xconfigurator.pm_.c:576
msgid ""
"\n"
"try to change some parameters"
@@ -179,146 +202,152 @@ msgstr ""
"\n"
"îďčňŕéňĺ ńĺ äŕ ďđîěĺíčňĺ í˙ęîč ďŕđŕěĺňđč"
-#: ../../Xconfigurator.pm_.c:475
+#: ../../Xconfigurator.pm_.c:576
msgid "An error has occurred:"
msgstr "Ďî˙âč ńĺ ăđĺřęŕ:"
-#: ../../Xconfigurator.pm_.c:497
+#: ../../Xconfigurator.pm_.c:598
#, c-format
msgid "Leaving in %d seconds"
msgstr "Čçőîä äî %d ńĺęóíäč"
-#: ../../Xconfigurator.pm_.c:507
+#: ../../Xconfigurator.pm_.c:609
msgid "Is this the correct setting?"
msgstr "Âĺđíč ëč ńŕ íŕńňđîéęčňĺ ?"
-#: ../../Xconfigurator.pm_.c:515
+#: ../../Xconfigurator.pm_.c:617
msgid "An error has occurred, try to change some parameters"
msgstr "Ďî˙âč ńĺ ăđĺřęŕ, îďčňŕéňĺ ńĺ äŕ ďđîěĺíčňĺ í˙ęîč ďŕđŕěĺňđč"
-#: ../../Xconfigurator.pm_.c:552 ../../printerdrake.pm_.c:276
+#: ../../Xconfigurator.pm_.c:663 ../../printerdrake.pm_.c:277
+#: ../../services.pm_.c:125
msgid "Resolution"
msgstr "Đŕçäĺëčňĺëíŕ ńďîńîáíîńň"
-#: ../../Xconfigurator.pm_.c:587
+#: ../../Xconfigurator.pm_.c:710
msgid "Choose the resolution and the color depth"
msgstr "Čçáĺđĺňĺ đŕçäĺëčňĺëíŕ ńďîńîáíîńň č äúëáî÷číŕ íŕ öâĺňîâĺňĺ"
-#: ../../Xconfigurator.pm_.c:589
+#: ../../Xconfigurator.pm_.c:712
#, c-format
msgid "Graphic card: %s"
msgstr "Ăđŕôč÷íŕ ęŕđňŕ: %s"
-#: ../../Xconfigurator.pm_.c:590
+#: ../../Xconfigurator.pm_.c:713
#, c-format
msgid "XFree86 server: %s"
msgstr "XFree86 ńúđâúđ: %s"
-#: ../../Xconfigurator.pm_.c:599
+#: ../../Xconfigurator.pm_.c:729 ../../standalone/draknet_.c:280
+#: ../../standalone/draknet_.c:283
+msgid "Expert Mode"
+msgstr "Ĺęńďĺđňĺí đĺćčě"
+
+#: ../../Xconfigurator.pm_.c:730
msgid "Show all"
msgstr "Ďîęŕćč âńč÷ęč"
-#: ../../Xconfigurator.pm_.c:623
+#: ../../Xconfigurator.pm_.c:773
msgid "Resolutions"
msgstr "Đŕçäĺëčňĺëíŕ ńďîńîáíîńň"
-#: ../../Xconfigurator.pm_.c:1021
+#: ../../Xconfigurator.pm_.c:1299
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Ňčď ęëŕâčŕňóđŕ: %s\n"
-#: ../../Xconfigurator.pm_.c:1022
+#: ../../Xconfigurator.pm_.c:1300
#, c-format
msgid "Mouse type: %s\n"
msgstr "Ňčď ěčřęŕ: %s\n"
-#: ../../Xconfigurator.pm_.c:1023
+#: ../../Xconfigurator.pm_.c:1301
#, c-format
msgid "Mouse device: %s\n"
msgstr "Óńňđîéńňâî íŕ ěčřęŕňŕ: %s\n"
-#: ../../Xconfigurator.pm_.c:1024
+#: ../../Xconfigurator.pm_.c:1302
#, c-format
msgid "Monitor: %s\n"
msgstr "Ěîíčňîđ: %s\n"
-#: ../../Xconfigurator.pm_.c:1025
+#: ../../Xconfigurator.pm_.c:1303
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Őîđčçîíňŕëíŕ ńčíőđîíčçŕöč˙ íŕ ěîíčňîđŕ: %s\n"
-#: ../../Xconfigurator.pm_.c:1026
+#: ../../Xconfigurator.pm_.c:1304
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Âĺđňčęŕëíî îďđĺńí˙âŕíĺ íŕ ěîíčňîđŕ: %s\n"
-#: ../../Xconfigurator.pm_.c:1027
+#: ../../Xconfigurator.pm_.c:1305
#, c-format
msgid "Graphic card: %s\n"
msgstr "Ăđŕôč÷íŕ ęŕđňŕ: %s\n"
-#: ../../Xconfigurator.pm_.c:1028
+#: ../../Xconfigurator.pm_.c:1306
#, c-format
msgid "Graphic memory: %s kB\n"
msgstr "Ăđŕôč÷íŕ ďŕěĺň: %s kB\n"
-#: ../../Xconfigurator.pm_.c:1030
+#: ../../Xconfigurator.pm_.c:1308
#, c-format
msgid "Color depth: %s\n"
msgstr "Äúëáî÷číŕ íŕ öâĺňŕ: %s\n"
-#: ../../Xconfigurator.pm_.c:1031
+#: ../../Xconfigurator.pm_.c:1309
#, c-format
msgid "Resolution: %s\n"
msgstr "Đŕçäĺëčňĺëíŕ ńďîńîáíîńň: %s\n"
-#: ../../Xconfigurator.pm_.c:1033
+#: ../../Xconfigurator.pm_.c:1311
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 ńúđâúđ: %s\n"
-#: ../../Xconfigurator.pm_.c:1034
+#: ../../Xconfigurator.pm_.c:1312
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "XFree86 äđŕéâĺđ: %s\n"
-#: ../../Xconfigurator.pm_.c:1053
+#: ../../Xconfigurator.pm_.c:1331
msgid "Preparing X-Window configuration"
msgstr "Ďîäăîňîâęŕ çŕ íŕńňđîéâŕíĺ íŕ X-Window"
-#: ../../Xconfigurator.pm_.c:1067
+#: ../../Xconfigurator.pm_.c:1351
+msgid "What do you want to do?"
+msgstr "Ęŕęâî čńęŕňĺ äŕ íŕďđŕâčňĺ?"
+
+#: ../../Xconfigurator.pm_.c:1356
msgid "Change Monitor"
msgstr "Ďđîěĺíĺňĺ ěîíčňîđŕ"
-#: ../../Xconfigurator.pm_.c:1068
+#: ../../Xconfigurator.pm_.c:1357
msgid "Change Graphic card"
msgstr "Ďđîěĺíĺňĺ ăđŕôč÷íŕňŕ ęŕđňŕ"
-#: ../../Xconfigurator.pm_.c:1069
+#: ../../Xconfigurator.pm_.c:1359
msgid "Change Server options"
msgstr "Ďđîěĺíĺňĺ îďöččňĺ íŕ ńúđâúđŕ"
-#: ../../Xconfigurator.pm_.c:1070
+#: ../../Xconfigurator.pm_.c:1360
msgid "Change Resolution"
msgstr "Ďđîěĺíĺňĺ đŕçäĺëčňĺëíŕňŕ ńďîńîáíîńň"
-#: ../../Xconfigurator.pm_.c:1071
+#: ../../Xconfigurator.pm_.c:1361
msgid "Show information"
msgstr "Ďîęŕćč číôîđěŕöč˙ňŕ"
-#: ../../Xconfigurator.pm_.c:1072
+#: ../../Xconfigurator.pm_.c:1362
msgid "Test again"
msgstr "Ňĺńňâŕé îňíîâî"
-#: ../../Xconfigurator.pm_.c:1073 ../../standalone/rpmdrake_.c:46
+#: ../../Xconfigurator.pm_.c:1363 ../../bootlook.pm_.c:220
msgid "Quit"
msgstr "Čçëčçŕíĺ"
-#: ../../Xconfigurator.pm_.c:1077 ../../standalone/drakboot_.c:40
-msgid "What do you want to do?"
-msgstr "Ęŕęâî čńęŕňĺ äŕ íŕďđŕâčňĺ?"
-
-#: ../../Xconfigurator.pm_.c:1084
+#: ../../Xconfigurator.pm_.c:1371
#, c-format
msgid ""
"Keep the changes?\n"
@@ -331,20 +360,20 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfigurator.pm_.c:1105
+#: ../../Xconfigurator.pm_.c:1392
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Ěîë˙ âëĺçňĺ îňíîâî â %s, çŕ äŕ ŕęňčâčđŕňĺ ďđîěĺíčňĺ"
-#: ../../Xconfigurator.pm_.c:1125
+#: ../../Xconfigurator.pm_.c:1412
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Ěîë˙ čçëĺçňĺ îň ńĺńč˙ňŕ č čçďîëçâŕéňĺ Ctrl-Alt-BackSpace"
-#: ../../Xconfigurator.pm_.c:1128
+#: ../../Xconfigurator.pm_.c:1415
msgid "X at startup"
msgstr "X ďđč ńňŕđňčđŕíĺ íŕ ńčńňĺěŕňŕ"
-#: ../../Xconfigurator.pm_.c:1129
+#: ../../Xconfigurator.pm_.c:1416
msgid ""
"I can set up your computer to automatically start X upon booting.\n"
"Would you like X to start when you reboot?"
@@ -352,27 +381,6 @@ msgstr ""
"Kîěďţňúđŕ âč ěîćĺ ŕâňîěŕňč÷íî, äŕ âëĺçĺ â X ďđč ńňŕđňčđŕíĺ.\n"
"Čńęŕňĺ ëč X äŕ ńĺ ńňŕđňčđŕ, ęîăŕňî đĺńňŕđňčđŕňĺ ńčńňĺěŕňŕ?"
-#: ../../Xconfigurator.pm_.c:1153
-msgid "Autologin"
-msgstr "Autologin"
-
-#: ../../Xconfigurator.pm_.c:1154
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"If you don't want to use this feature, click on the cancel button."
-msgstr ""
-"Ěîăŕ äŕ íŕńňđî˙ ęîěďţňúđŕ âč çŕ ŕâňîěŕňč÷íî âëčçŕíĺ â ńčńňĺěŕňŕ ęŕňî "
-"ďîňđĺáčňĺë.\n"
-"Ŕęî íĺ âč őŕđĺńâŕ ňŕçč âúçěîćíîńň, íŕňčńíĺňĺ áóňîíŕ \"Îňě˙íŕ\""
-
-#: ../../Xconfigurator.pm_.c:1156
-msgid "Choose the default user:"
-msgstr "Čçáĺđĺňĺ ďîäđŕçáčđŕů ńĺ ďîňđĺáčňĺë :"
-
-#: ../../Xconfigurator.pm_.c:1157
-msgid "Choose the window manager to run:"
-msgstr "Čçáĺđĺňĺ Windows Manager çŕ ńňŕđňčđŕíĺ:"
-
#: ../../Xconfigurator_consts.pm_.c:6
msgid "256 colors (8 bits)"
msgstr "256 öâ˙ňŕ (8 áčňŕ)"
@@ -421,162 +429,211 @@ msgstr "8 MB"
msgid "16 MB or more"
msgstr "16 MB čëč ďîâĺ÷ĺ"
-#: ../../Xconfigurator_consts.pm_.c:117 ../../Xconfigurator_consts.pm_.c:118
+#: ../../Xconfigurator_consts.pm_.c:120
msgid "Standard VGA, 640x480 at 60 Hz"
msgstr "Standard VGA, 640x480 íŕ 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:119
+#: ../../Xconfigurator_consts.pm_.c:121
msgid "Super VGA, 800x600 at 56 Hz"
msgstr "Super VGA, 800x600 íŕ 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:120
+#: ../../Xconfigurator_consts.pm_.c:122
msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
msgstr "8514-ńúâěĺńňčě, 1024x768 íŕ 87 Hz interlaced (í˙ěŕ 800x600)"
-#: ../../Xconfigurator_consts.pm_.c:121
+#: ../../Xconfigurator_consts.pm_.c:123
msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
msgstr "Super VGA, 1024x768 íŕ 87 Hz interlaced, 800x600 íŕ 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:122
+#: ../../Xconfigurator_consts.pm_.c:124
msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
msgstr "Extended Super VGA, 800x600 íŕ 60 Hz, 640x480 íŕ 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:123
+#: ../../Xconfigurator_consts.pm_.c:125
msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
msgstr "Non-Interlaced SVGA, 1024x768 íŕ 60 Hz, 800x600 íŕ 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:124
+#: ../../Xconfigurator_consts.pm_.c:126
msgid "High Frequency SVGA, 1024x768 at 70 Hz"
msgstr "Âčńîęî÷ĺńňîňĺí SVGA, 1024x768 íŕ 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:125
+#: ../../Xconfigurator_consts.pm_.c:127
msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
msgstr "Ěíîăî÷ĺńňîňĺí ěîíčňîđ, ęîéňî äîńňčăŕ 1280x1024 íŕ 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:126
+#: ../../Xconfigurator_consts.pm_.c:128
msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
msgstr "Ěíîăî÷ĺńňîňĺí ěîíčňîđ, ęîéňî äîńňčăŕ 1280x1024 íŕ 74 Hz"
-#: ../../Xconfigurator_consts.pm_.c:127
+#: ../../Xconfigurator_consts.pm_.c:129
msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
msgstr "Ěíîăî÷ĺńňîňĺí ěîíčňîđ, ęîéňî äîńňčăŕ 1280x1024 íŕ 76 Hz"
-#: ../../Xconfigurator_consts.pm_.c:128
+#: ../../Xconfigurator_consts.pm_.c:130
msgid "Monitor that can do 1600x1200 at 70 Hz"
msgstr "Ěîíčňîđ, ęîéňî äîńňčăŕ 1600x1200 íŕ 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:129
+#: ../../Xconfigurator_consts.pm_.c:131
msgid "Monitor that can do 1600x1200 at 76 Hz"
msgstr "Ěîíčňîđ, ęîéňî äîńňčăŕ 1600x1200 íŕ 76 Hz"
-#: ../../any.pm_.c:91 ../../any.pm_.c:121 ../../any_new.pm_.c:91
-#: ../../any_new.pm_.c:121
+#: ../../any.pm_.c:99 ../../any.pm_.c:124
msgid "First sector of boot partition"
msgstr "Ďúđâč ńĺęňîđ îň ńňŕđňčđŕůč˙ ńĺ ä˙ë"
-#: ../../any.pm_.c:91 ../../any.pm_.c:121 ../../any.pm_.c:150
-#: ../../any_new.pm_.c:91 ../../any_new.pm_.c:121 ../../any_new.pm_.c:150
+#: ../../any.pm_.c:99 ../../any.pm_.c:124 ../../any.pm_.c:196
msgid "First sector of drive (MBR)"
msgstr "Ďúđâč˙ň ńĺęňîđ îň äđŕéâŕ (MBR)"
-#: ../../any.pm_.c:95 ../../any_new.pm_.c:95
+#: ../../any.pm_.c:103
msgid "SILO Installation"
msgstr "SILO číńňŕëŕöč˙"
-#: ../../any.pm_.c:96 ../../any.pm_.c:102 ../../any_new.pm_.c:96
-#: ../../any_new.pm_.c:102
+#: ../../any.pm_.c:104 ../../any.pm_.c:117
msgid "Where do you want to install the bootloader?"
msgstr "Ęúäĺ čńęŕňĺ äŕ číńňŕëčđŕňĺ bootloader-ŕ?"
-#: ../../any.pm_.c:101 ../../any_new.pm_.c:101
+#: ../../any.pm_.c:116
msgid "LILO/grub Installation"
msgstr "LILO/grub číńňŕëŕöč˙"
-#: ../../any.pm_.c:111 ../../any_new.pm_.c:111
-#: ../../install_steps_interactive.pm_.c:736
-msgid "None"
-msgstr "Íčęŕęúâ"
+#: ../../any.pm_.c:128 ../../any.pm_.c:142
+msgid "SILO"
+msgstr "SILO"
+
+#: ../../any.pm_.c:130
+msgid "LILO with text menu"
+msgstr "LILO ń ňĺęńňîâî ěĺíţ"
+
+#: ../../any.pm_.c:131 ../../any.pm_.c:142
+msgid "LILO with graphical menu"
+msgstr "LILO ń ăđŕôč÷íî ěĺíţ"
+
+#: ../../any.pm_.c:134
+msgid "Grub"
+msgstr "Grub"
+
+#: ../../any.pm_.c:138
+msgid "Boot from DOS/Windows (loadlin)"
+msgstr "Ńňŕđňčđŕíĺ îň DOS/Windows (loadlin)"
+
+#: ../../any.pm_.c:140 ../../any.pm_.c:142
+msgid "Yaboot"
+msgstr "Yaboot"
-#: ../../any.pm_.c:111 ../../any_new.pm_.c:111
-msgid "Which bootloader(s) do you want to use?"
-msgstr "Ęŕęâŕ ďđîăđŕěŕ çŕ íŕ÷ŕëíî çŕđĺćäŕíĺ čńęŕňĺ äŕ čçďîëçâŕňĺ?"
+#: ../../any.pm_.c:148 ../../any.pm_.c:179
+msgid "Bootloader main options"
+msgstr "Îďöčč íŕ çŕđĺćäŕůŕňŕ ďđîăđŕěŕ"
+
+#: ../../any.pm_.c:149 ../../any.pm_.c:180
+msgid "Bootloader to use"
+msgstr "Čçďîëçâŕíŕ çŕđĺćäŕůŕňŕ ďđîăđŕěŕ"
-#: ../../any.pm_.c:125 ../../any_new.pm_.c:125
+#: ../../any.pm_.c:151
msgid "Bootloader installation"
msgstr "Bootloader číńňŕëŕöč˙"
-#: ../../any.pm_.c:127 ../../any_new.pm_.c:127
+#: ../../any.pm_.c:153 ../../any.pm_.c:182
msgid "Boot device"
msgstr "Ńňŕđňčđŕůî óńňđîéńňâî"
-#: ../../any.pm_.c:128 ../../any_new.pm_.c:128
+#: ../../any.pm_.c:154
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (íĺ đŕáîňč íŕ ńňŕđč BIOS-č)"
-#: ../../any.pm_.c:129 ../../any_new.pm_.c:129
+#: ../../any.pm_.c:155
msgid "Compact"
msgstr "Ęîěďŕęňĺí"
-#: ../../any.pm_.c:129 ../../any_new.pm_.c:129
+#: ../../any.pm_.c:155
msgid "compact"
msgstr "ęîěďŕęňĺí"
-#: ../../any.pm_.c:130 ../../any.pm_.c:199 ../../any_new.pm_.c:130
-#: ../../any_new.pm_.c:199
+#: ../../any.pm_.c:156 ../../any.pm_.c:255
msgid "Video mode"
msgstr "Âčäĺî đĺćčě"
-#: ../../any.pm_.c:132 ../../any_new.pm_.c:132
+#: ../../any.pm_.c:158
msgid "Delay before booting default image"
msgstr "Çŕáŕâ˙íĺ ďđĺäč ńňŕđňčđŕíĺňî íŕ default ä˙ëŕ"
-#: ../../any.pm_.c:134 ../../any_new.pm_.c:134
-#: ../../install_steps_interactive.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:815 ../../netconnect.pm_.c:560
-#: ../../netconnect_new.pm_.c:686 ../../printerdrake.pm_.c:94
-#: ../../printerdrake.pm_.c:128 ../../standalone/adduserdrake_.c:42
+#: ../../any.pm_.c:160 ../../any.pm_.c:737
+#: ../../install_steps_interactive.pm_.c:904 ../../netconnect.pm_.c:627
+#: ../../printerdrake.pm_.c:98 ../../printerdrake.pm_.c:132
+#: ../../standalone/draknet_.c:567
msgid "Password"
msgstr "Ďŕđîëŕ"
-#: ../../any.pm_.c:135 ../../any_new.pm_.c:135
-#: ../../install_steps_interactive.pm_.c:765
-#: ../../install_steps_interactive.pm_.c:816
-#: ../../standalone/adduserdrake_.c:43
+#: ../../any.pm_.c:161 ../../any.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:905
msgid "Password (again)"
msgstr "Ďŕđîëŕ (îňíîâî)"
-#: ../../any.pm_.c:136 ../../any_new.pm_.c:136
+#: ../../any.pm_.c:162
msgid "Restrict command line options"
msgstr "Îăđŕíč÷č îďöččňĺ, çŕäŕâŕíč îň ęîěŕíäíč˙ đĺä"
-#: ../../any.pm_.c:136 ../../any_new.pm_.c:136
+#: ../../any.pm_.c:162
msgid "restrict"
msgstr "îăđŕíč÷č"
-#: ../../any.pm_.c:142 ../../any_new.pm_.c:142
-msgid "Bootloader main options"
-msgstr "Îďöčč íŕ çŕđĺćäŕůŕňŕ ďđîăđŕěŕ"
+#: ../../any.pm_.c:164
+msgid "Clean /tmp at each boot"
+msgstr "Ďî÷čńňâŕíĺ íŕ /tmp ďđč âń˙ęî çŕđĺćäŕíĺ"
-#: ../../any.pm_.c:145 ../../any_new.pm_.c:145
+#: ../../any.pm_.c:165
+#, c-format
+msgid "Precise RAM size if needed (found %d MB)"
+msgstr "Ňî÷ĺí đŕçěĺđ íŕ RAM-ďŕěĺňňŕ, ŕęî ĺ íĺîáőîäčěî (íŕěĺđĺíč %d MB)"
+
+#: ../../any.pm_.c:167
+msgid "Enable multi profiles"
+msgstr "Âęëţ÷č ěíîăî ďđîôčëč"
+
+#: ../../any.pm_.c:171
+msgid "Give the ram size in MB"
+msgstr "Äŕéňĺ đŕçěĺđŕ RAM-ďŕěĺň â Mb"
+
+#: ../../any.pm_.c:173
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Îďöč˙ňŕ ``Îăđŕíč÷č îďöččňĺ îň ęîěŕíäíč˙ đĺä'' ĺ áĺçďîëĺçíŕ áĺç ďŕđîëŕ"
-#: ../../any.pm_.c:146 ../../any_new.pm_.c:146
-#: ../../install_steps_interactive.pm_.c:774
-#: ../../install_steps_interactive.pm_.c:829
-#: ../../standalone/adduserdrake_.c:56
+#: ../../any.pm_.c:174 ../../any.pm_.c:714
+#: ../../install_steps_interactive.pm_.c:899
msgid "Please try again"
msgstr "Ěîë˙, îďčňŕéňĺ îňíîâî"
-#: ../../any.pm_.c:146 ../../any_new.pm_.c:146
-#: ../../install_steps_interactive.pm_.c:774
-#: ../../install_steps_interactive.pm_.c:829
-#: ../../standalone/adduserdrake_.c:56
+#: ../../any.pm_.c:174 ../../any.pm_.c:714
+#: ../../install_steps_interactive.pm_.c:899
msgid "The passwords do not match"
msgstr "Ďŕđîëčňĺ íŕ ńúâďŕäŕň"
-#: ../../any.pm_.c:157 ../../any_new.pm_.c:157
+#: ../../any.pm_.c:181
+msgid "Init Message"
+msgstr "Ńňŕđňîâî ńúîáůĺíčĺ"
+
+#: ../../any.pm_.c:183
+msgid "Open Firmware Delay"
+msgstr "Čç÷ŕęâŕíĺ íŕ Open Firmware"
+
+#: ../../any.pm_.c:184
+msgid "Kernel Boot Timeout"
+msgstr "Čç÷ŕęâŕíĺ çŕ ńňŕđňčđŕíĺ íŕ ˙äđîňî"
+
+#: ../../any.pm_.c:185
+msgid "Enable CD Boot?"
+msgstr "Ńňŕđňčđŕíĺ îň CD ?"
+
+#: ../../any.pm_.c:186
+msgid "Enable OF Boot?"
+msgstr "Ńňŕđňčđŕíĺ îň OF ?"
+
+#: ../../any.pm_.c:187
+msgid "Default OS?"
+msgstr "ÎŃ ďî ďîäđŕçáčđŕíĺ ?"
+
+#: ../../any.pm_.c:209
msgid ""
"Here are the different entries.\n"
"You can add some more or change the existing ones."
@@ -584,143 +641,146 @@ msgstr ""
"Ňîâŕ ńŕ đŕçëč÷íčňĺ çŕďčńč.\n"
"Ěîćĺňĺ äŕ äîáŕâčňĺ îůĺ čëč äŕ ďđîěĺíčňĺ ńúůĺńňâóâŕůčňĺ."
-#: ../../any.pm_.c:165 ../../any_new.pm_.c:165 ../../printerdrake.pm_.c:352
-#: ../../standalone/rpmdrake_.c:302
+#: ../../any.pm_.c:219 ../../printerdrake.pm_.c:356
msgid "Add"
msgstr "Äîáŕâč"
-#: ../../any.pm_.c:165 ../../any_new.pm_.c:165 ../../diskdrake.pm_.c:46
-#: ../../install_steps_interactive.pm_.c:809 ../../netconnect.pm_.c:842
-#: ../../netconnect_new.pm_.c:984 ../../printerdrake.pm_.c:352
-#: ../../standalone/adduserdrake_.c:36
+#: ../../any.pm_.c:219 ../../any.pm_.c:725 ../../diskdrake.pm_.c:46
+#: ../../printerdrake.pm_.c:356
msgid "Done"
msgstr "Ăîňîâî"
-#: ../../any.pm_.c:174 ../../any_new.pm_.c:174
+#: ../../any.pm_.c:219
+#, fuzzy
+msgid "Modify"
+msgstr "Ěîäčôčöčđŕé RAID"
+
+#: ../../any.pm_.c:227
msgid "Which type of entry do you want to add?"
msgstr "Ęŕęúâ ňčď číôîđěŕöč˙ čńęŕňĺ äŕ ďđčáŕâčňĺ"
-#: ../../any.pm_.c:175 ../../any_new.pm_.c:175
+#: ../../any.pm_.c:228
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:175 ../../any_new.pm_.c:175
+#: ../../any.pm_.c:228
msgid "Other OS (SunOS...)"
msgstr "Äđóăŕ ÎŃ (SunOS...)"
-#: ../../any.pm_.c:175 ../../any_new.pm_.c:175
+#: ../../any.pm_.c:229
+msgid "Other OS (MacOS...)"
+msgstr "Äđóăŕ ÎŃ (MacOS...)"
+
+#: ../../any.pm_.c:229
msgid "Other OS (windows...)"
msgstr "Äđóăŕ ÎŃ (Windows...)"
-#: ../../any.pm_.c:196 ../../any_new.pm_.c:196
+#: ../../any.pm_.c:249 ../../any.pm_.c:251
msgid "Image"
msgstr "Îáđŕç"
-#: ../../any.pm_.c:197 ../../any.pm_.c:206 ../../any_new.pm_.c:197
-#: ../../any_new.pm_.c:206
+#: ../../any.pm_.c:252 ../../any.pm_.c:263
msgid "Root"
msgstr "Ăëŕâĺí"
-#: ../../any.pm_.c:198 ../../any_new.pm_.c:198
+#: ../../any.pm_.c:253 ../../any.pm_.c:282
msgid "Append"
msgstr "Äîďúëâŕíĺ"
-#: ../../any.pm_.c:200 ../../any_new.pm_.c:200
+#: ../../any.pm_.c:257
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:201 ../../any_new.pm_.c:201
+#: ../../any.pm_.c:258
msgid "Read-write"
msgstr "×ĺňĺíĺ-çŕďčń"
-#: ../../any.pm_.c:208 ../../any_new.pm_.c:208
+#: ../../any.pm_.c:265
msgid "Table"
msgstr "Ňŕáëčöŕ"
-#: ../../any.pm_.c:209 ../../any_new.pm_.c:209
+#: ../../any.pm_.c:266
msgid "Unsafe"
msgstr "Îďŕńĺí"
-#: ../../any.pm_.c:215 ../../any_new.pm_.c:215
+#: ../../any.pm_.c:273 ../../any.pm_.c:278 ../../any.pm_.c:281
msgid "Label"
msgstr "Ĺňčęĺň"
-#: ../../any.pm_.c:217 ../../any_new.pm_.c:217
+#: ../../any.pm_.c:275 ../../any.pm_.c:286
msgid "Default"
msgstr "Ďî ďîäđŕçáčđŕíĺ"
-#: ../../any.pm_.c:220 ../../any_new.pm_.c:220 ../../install_gtk.pm_.c:82
-#: ../../install_steps_interactive.pm_.c:762 ../../interactive.pm_.c:76
-#: ../../interactive.pm_.c:86 ../../interactive.pm_.c:250
-#: ../../interactive_newt.pm_.c:51 ../../interactive_newt.pm_.c:99
-#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:243
-#: ../../my_gtk.pm_.c:486 ../../my_gtk.pm_.c:661 ../../printerdrake.pm_.c:444
-#: ../../printerdrake.pm_.c:464
-msgid "Ok"
-msgstr "Ok"
+#: ../../any.pm_.c:283
+msgid "Initrd-size"
+msgstr "Initrd-ăîëĺěčíŕ"
+
+#: ../../any.pm_.c:285
+msgid "NoVideo"
+msgstr "Áĺç ăđŕôčęŕ"
-#: ../../any.pm_.c:220 ../../any_new.pm_.c:220
+#: ../../any.pm_.c:293
msgid "Remove entry"
msgstr "Ďđĺěŕőíč çŕďčń"
-#: ../../any.pm_.c:223 ../../any_new.pm_.c:223
+#: ../../any.pm_.c:296
msgid "Empty label not allowed"
msgstr "Ďđŕçĺí ĺňčęĺň íĺ ĺ đŕçđĺřĺí"
-#: ../../any.pm_.c:224 ../../any_new.pm_.c:224
+#: ../../any.pm_.c:297
msgid "This label is already used"
msgstr "Ňîçč ĺňčęĺň âĺ÷ĺ ńĺ čçďîëçâŕ"
-#: ../../any.pm_.c:500 ../../any_new.pm_.c:492
+#: ../../any.pm_.c:316
+msgid "What type of partitioning?"
+msgstr "Ęŕęúâ ňčď đŕçäĺë˙íĺ íŕ ä˙ëîâĺ ?"
+
+#: ../../any.pm_.c:604
#, c-format
msgid "Found %s %s interfaces"
msgstr "Íŕěĺđĺíč ńŕ %s %s číňĺđôĺéńč"
-#: ../../any.pm_.c:501 ../../any_new.pm_.c:493
+#: ../../any.pm_.c:605
msgid "Do you have another one?"
msgstr "Čěŕňĺ ëč äđóă(č) ?"
-#: ../../any.pm_.c:502 ../../any_new.pm_.c:494
+#: ../../any.pm_.c:606
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Čěŕňĺ ëč í˙ęŕęúâ %s číňĺđôĺéń?"
-#: ../../any.pm_.c:504 ../../any_new.pm_.c:496 ../../interactive.pm_.c:81
-#: ../../my_gtk.pm_.c:485 ../../netconnect.pm_.c:90 ../../netconnect.pm_.c:470
-#: ../../netconnect_new.pm_.c:148 ../../netconnect_new.pm_.c:509
-#: ../../printerdrake.pm_.c:233
+#: ../../any.pm_.c:608 ../../interactive.pm_.c:100 ../../my_gtk.pm_.c:615
+#: ../../printerdrake.pm_.c:237
msgid "No"
msgstr "Íĺ"
-#: ../../any.pm_.c:504 ../../any_new.pm_.c:496 ../../interactive.pm_.c:81
-#: ../../my_gtk.pm_.c:485 ../../netconnect.pm_.c:88 ../../netconnect.pm_.c:468
-#: ../../netconnect_new.pm_.c:146 ../../netconnect_new.pm_.c:507
+#: ../../any.pm_.c:608 ../../interactive.pm_.c:100 ../../my_gtk.pm_.c:615
msgid "Yes"
msgstr "Äŕ"
-#: ../../any.pm_.c:505 ../../any_new.pm_.c:497
+#: ../../any.pm_.c:609
msgid "See hardware info"
msgstr "Âčć őŕđäóĺđíŕňŕ číôîđěŕöč˙"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:522 ../../any_new.pm_.c:533
+#: ../../any.pm_.c:644
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Číńňŕëčđŕíĺ íŕ äđŕéâĺđ çŕ %s ďëŕňęŕ %s"
-#: ../../any.pm_.c:523 ../../any_new.pm_.c:534
+#: ../../any.pm_.c:645
#, c-format
msgid "(module %s)"
msgstr "(ěîäóë %s)"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:534 ../../any_new.pm_.c:545
+#: ../../any.pm_.c:656
#, c-format
msgid "Which %s driver should I try?"
msgstr "Ęîé %s äđŕéâĺđ äŕ ďđîáâŕě ?"
-#: ../../any.pm_.c:542 ../../any_new.pm_.c:553
+#: ../../any.pm_.c:664
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -739,20 +799,20 @@ msgstr ""
"îň ęî˙ňî ńĺ íóćäŕĺ ? Ďî ďđčíöčď ňîâŕ ěîćĺ äŕ çŕáčĺ ęîěďţňúđŕ âč, íî í˙ěŕ äŕ "
"ăî ďîâđĺäč."
-#: ../../any.pm_.c:547 ../../any_new.pm_.c:558
+#: ../../any.pm_.c:669
msgid "Autoprobe"
msgstr "Ŕâňîěŕňč÷íî çŕńč÷ŕíĺ"
-#: ../../any.pm_.c:547 ../../any_new.pm_.c:558
+#: ../../any.pm_.c:669
msgid "Specify options"
msgstr "Çŕäŕé îďöčč"
-#: ../../any.pm_.c:551 ../../any_new.pm_.c:562
+#: ../../any.pm_.c:673
#, c-format
msgid "You may now provide its options to module %s."
msgstr "Ńĺăŕ ěîćĺňĺ äŕ ďîäŕäĺňĺ îďöččňĺ ěó ęúě ěîäóëŕ %s."
-#: ../../any.pm_.c:557 ../../any_new.pm_.c:568
+#: ../../any.pm_.c:679
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -763,11 +823,11 @@ msgstr ""
"Îďöččňĺ ńŕ âúâ ôîđěŕň ``čěĺ=ńňîéíîńň čěĺ2=ńňîéíîńň2 ...''.\n"
"Íŕďđčěĺđ: ``io=0x300 irq=7''"
-#: ../../any.pm_.c:560 ../../any_new.pm_.c:571
+#: ../../any.pm_.c:682
msgid "Module options:"
msgstr "Îďöčč íŕ ěîäóëŕ:"
-#: ../../any.pm_.c:570 ../../any_new.pm_.c:581
+#: ../../any.pm_.c:693
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -776,12 +836,91 @@ msgstr ""
"Çŕđĺćäŕíĺňî íŕ ěîäóëŕ %s íĺ óńď˙.\n"
"Čńęŕňĺ ëč äŕ îďčňŕňĺ îňíîâî ń äđóăč ďŕđŕěĺňđč ?"
+#: ../../any.pm_.c:711
+#, c-format
+msgid "(already added %s)"
+msgstr "(âĺ÷ĺ ďđčáŕâčő %s)"
+
+#: ../../any.pm_.c:715
+msgid "This password is too simple"
+msgstr "Ňŕçč ďŕđîëŕ ĺ ďđĺęŕëĺíî ďđîńňŕ"
+
+#: ../../any.pm_.c:716
+msgid "Please give a user name"
+msgstr "Ěîë˙, çŕäŕéňĺ ďîňđĺáčňĺëńęî čěĺ"
+
+#: ../../any.pm_.c:717
+msgid ""
+"The user name must contain only lower cased letters, numbers, `-' and `_'"
+msgstr ""
+"Ďîňđĺáčňĺëńęîňî čěĺ ěîćĺ äŕ âęëţ÷âŕ ńŕěî ěŕëęč áóęâč, íîěĺđŕ, `-' č `_'"
+
+#: ../../any.pm_.c:718
+msgid "This user name is already added"
+msgstr "Ňîâŕ ďîňđĺáčňĺëńęî čěĺ ĺ âĺ÷ĺ äîáŕâĺíî"
+
+#: ../../any.pm_.c:722
+msgid "Add user"
+msgstr "Äîáŕâč ďîňđĺáčňĺë"
+
+#: ../../any.pm_.c:723
+#, c-format
+msgid ""
+"Enter a user\n"
+"%s"
+msgstr ""
+"Âúâĺäĺňĺ ďîňđĺáčňĺë\n"
+"%s"
+
+#: ../../any.pm_.c:724
+msgid "Accept user"
+msgstr "Ďđčĺěč ďîňđĺáčňĺë"
+
+#: ../../any.pm_.c:735
+msgid "Real name"
+msgstr "Čńňčíńęî čěĺ"
+
+#: ../../any.pm_.c:736 ../../printerdrake.pm_.c:97
+#: ../../printerdrake.pm_.c:131
+msgid "User name"
+msgstr "Ďîňđĺáčňĺëńęî čěĺ"
+
+#: ../../any.pm_.c:739
+msgid "Shell"
+msgstr "Řĺë"
+
+#: ../../any.pm_.c:741
+msgid "Icon"
+msgstr "Čęîíŕ"
+
+#: ../../any.pm_.c:762
+msgid "Autologin"
+msgstr "Autologin"
+
+#: ../../any.pm_.c:763
+msgid ""
+"I can set up your computer to automatically log on one user.\n"
+"If you don't want to use this feature, click on the cancel button."
+msgstr ""
+"Ěîăŕ äŕ íŕńňđî˙ ęîěďţňúđŕ âč çŕ ŕâňîěŕňč÷íî âëčçŕíĺ â ńčńňĺěŕňŕ ęŕňî "
+"ďîňđĺáčňĺë.\n"
+"Ŕęî íĺ âč őŕđĺńâŕ ňŕçč âúçěîćíîńň, íŕňčńíĺňĺ áóňîíŕ \"Îňě˙íŕ\""
+
+#: ../../any.pm_.c:765
+msgid "Choose the default user:"
+msgstr "Čçáĺđĺňĺ ďîäđŕçáčđŕů ńĺ ďîňđĺáčňĺë :"
+
+#: ../../any.pm_.c:766
+msgid "Choose the window manager to run:"
+msgstr "Čçáĺđĺňĺ Windows Manager çŕ ńňŕđňčđŕíĺ:"
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#
-#: ../../bootloader.pm_.c:234
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#: ../../bootloader.pm_.c:262
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -804,7 +943,8 @@ msgstr ""
# The lines must fit on screen, aka length < 80
# and only one line per string for the GRUB messages
#
-#: ../../bootloader.pm_.c:596
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#: ../../bootloader.pm_.c:795
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Welcome to GRUB the operating system chooser!"
@@ -816,10 +956,10 @@ msgstr "Welcome to GRUB the operating system chooser!"
# The lines must fit on screen, aka length < 80
# and only one line per string for the GRUB messages
#
-#: ../../bootloader.pm_.c:597
-#, fuzzy, c-format
+#: ../../bootloader.pm_.c:796
+#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
-msgstr "Čçďîëçâŕéňĺ ęëŕâčřčňĺ %c č %c, çŕ äŕ čçáĺđĺňĺ îńâĺňĺíčňĺ."
+msgstr "Use the %c and %c keys for selecting which entry is highlighted."
# NOTE: this message will be displayed by grub at boot time; that is
# using the BIOS font; that means cp437 charset on 99.99% of PC computers
@@ -829,10 +969,9 @@ msgstr "Čçďîëçâŕéňĺ ęëŕâčřčňĺ %c č %c, çŕ äŕ čçáĺđĺňĺ îńâĺňĺíčňĺ."
# The lines must fit on screen, aka length < 80
# and only one line per string for the GRUB messages
#
-#: ../../bootloader.pm_.c:598
-#, fuzzy
+#: ../../bootloader.pm_.c:797
msgid "Press enter to boot the selected OS, 'e' to edit the"
-msgstr "Íŕňčńíĺňĺ Enter, çŕ äŕ ńňŕđňčđŕňĺ čçáđŕíŕňŕ ÎŃ, 'e' çŕ ďîďđŕâęŕ íŕ"
+msgstr "Press enter to boot the selected OS, 'e' to edit the"
# NOTE: this message will be displayed by grub at boot time; that is
# using the BIOS font; that means cp437 charset on 99.99% of PC computers
@@ -842,10 +981,9 @@ msgstr "Íŕňčńíĺňĺ Enter, çŕ äŕ ńňŕđňčđŕňĺ čçáđŕíŕňŕ ÎŃ, 'e' çŕ ďîďđŕâęŕ íŕ"
# The lines must fit on screen, aka length < 80
# and only one line per string for the GRUB messages
#
-#: ../../bootloader.pm_.c:599
-#, fuzzy
+#: ../../bootloader.pm_.c:798
msgid "commands before booting, or 'c' for a command-line."
-msgstr "ęîěĺíäčňĺ ďđĺäč ńňŕđňčđŕíĺ, čëč 'c' çŕ ęîěŕíäĺí đĺä."
+msgstr "commands before booting, or 'c' for a command-line."
# NOTE: this message will be displayed by grub at boot time; that is
# using the BIOS font; that means cp437 charset on 99.99% of PC computers
@@ -855,39 +993,217 @@ msgstr "ęîěĺíäčňĺ ďđĺäč ńňŕđňčđŕíĺ, čëč 'c' çŕ ęîěŕíäĺí đĺä."
# The lines must fit on screen, aka length < 80
# and only one line per string for the GRUB messages
#
-#: ../../bootloader.pm_.c:600
-#, fuzzy, c-format
+#: ../../bootloader.pm_.c:799
+#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
-msgstr "Îńâĺňĺíčňĺ çŕďčńč ůĺ áúäŕň ńňŕđňčđŕíč ŕâňîěŕňč÷íî ńëĺä %d ńĺęóíäč."
+msgstr "The highlighted entry will be booted automatically in %d seconds."
-#: ../../bootloader.pm_.c:604
+#: ../../bootloader.pm_.c:803
msgid "not enough room in /boot"
msgstr "í˙ěŕ äîńňŕňú÷íî ě˙ńňî çŕ /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:696
+#: ../../bootloader.pm_.c:895
msgid "Desktop"
msgstr "Äĺńęňîď"
-#: ../../bootloader.pm_.c:696
+#: ../../bootloader.pm_.c:895
msgid "Start Menu"
msgstr "Ńňŕđňîâî Ěĺíţ"
-#: ../../common.pm_.c:610
+#: ../../bootlook.pm_.c:46
+msgid "no help implemented yet.\n"
+msgstr "í˙ěŕ âúâĺäĺíŕ ďîěîů îůĺ.\n"
+
+#: ../../bootlook.pm_.c:62
+msgid "Boot Style Configuration"
+msgstr "Íŕńňđîéęŕ íŕ íŕ÷číŕ íŕ ńňŕđňčđŕíĺ"
+
+#: ../../bootlook.pm_.c:79
+msgid "/_File"
+msgstr "/_Ôŕéëîâĺ"
+
+#: ../../bootlook.pm_.c:81
+msgid "/File/_New"
+msgstr "/Ôŕéë/_Íîâ"
+
+#: ../../bootlook.pm_.c:82
+msgid "<control>N"
+msgstr "<ęîíňđîë>N"
+
+#: ../../bootlook.pm_.c:84
+msgid "/File/_Open"
+msgstr "/Ôŕéë/_Îňâîđč"
+
+#: ../../bootlook.pm_.c:85
+msgid "<control>O"
+msgstr "<ęîíňđîë>O"
+
+#: ../../bootlook.pm_.c:87
+msgid "/File/_Save"
+msgstr "/Ôŕéë/_Çŕďčń"
+
+#: ../../bootlook.pm_.c:88
+msgid "<control>S"
+msgstr "<ęîíňđîë>S"
+
+#: ../../bootlook.pm_.c:90
+msgid "/File/Save _As"
+msgstr "/Ôŕéë/Çŕďčřč _Ęŕňî"
+
+#: ../../bootlook.pm_.c:91
+msgid "/File/-"
+msgstr "/Ôŕéë/-"
+
+#: ../../bootlook.pm_.c:93
+msgid "/File/_Quit"
+msgstr "/Ôŕéë/_Čçőîä"
+
+#: ../../bootlook.pm_.c:94
+msgid "<control>Q"
+msgstr "<ęîíňđîë>Q"
+
+#: ../../bootlook.pm_.c:96
+msgid "/_Options"
+msgstr "/_Îďöčč"
+
+#: ../../bootlook.pm_.c:98
+msgid "/Options/Test"
+msgstr "/Îďöčč/Ňĺńň"
+
+#: ../../bootlook.pm_.c:99
+msgid "/_Help"
+msgstr "/_Ďîěîů"
+
+#: ../../bootlook.pm_.c:101
+msgid "/Help/_About..."
+msgstr "/Ďîěîů/_Çŕ..."
+
+#: ../../bootlook.pm_.c:111 ../../standalone/drakgw_.c:634
+#: ../../standalone/draknet_.c:262 ../../standalone/tinyfirewall_.c:57
+msgid "Configure"
+msgstr "Íŕńňđîé"
+
+#: ../../bootlook.pm_.c:114
+#, fuzzy, c-format
+msgid ""
+"You are currently using %s as Boot Manager.\n"
+"Click on Configure to launch the setup wizard."
+msgstr ""
+"Äîáđĺ äîřëč â číńňđóěĺíňŕ çŕ ńďîäĺë˙íĺ íŕ Číňĺđíĺň âđúçęŕňŕ !\n"
+"\n"
+"%s\n"
+"\n"
+"Öúęíĺňĺ ``Íŕńňđîé'', ŕęî čńęŕňĺ äŕ ńňŕđňčđŕíĺ óńňŕíîâ˙âŕůč˙ ěŕăüîńíčę."
+
+#: ../../bootlook.pm_.c:121
+msgid "Lilo/grub mode"
+msgstr "Đĺćčě íŕ Lilo/grub"
+
+#: ../../bootlook.pm_.c:131
+msgid "NewStyle Categorizing Monitor"
+msgstr "NewStyle ęŕňĺăîđčçčđŕí ěîíčňîđ"
+
+#: ../../bootlook.pm_.c:134
+msgid "NewStyle Monitor"
+msgstr "NewStyle ěîíčňîđ"
+
+#: ../../bootlook.pm_.c:137
+msgid "Traditional Monitor"
+msgstr "Îáčęíîâĺí ěîíčňîđ"
+
+#: ../../bootlook.pm_.c:140
+msgid "Traditional Gtk+ Monitor"
+msgstr "Îáčęíîâĺí Gtk+ ěîíčňîđ"
+
+#: ../../bootlook.pm_.c:144
+msgid "Launch Aurora at boot time"
+msgstr "Ďóńíč Aurora ďđč ńňŕđňčđŕíĺ"
+
+#: ../../bootlook.pm_.c:169
+msgid "Boot mode"
+msgstr "Đĺćčě íŕ ńňŕđňčđŕíĺ"
+
+#: ../../bootlook.pm_.c:179
+msgid "Launch the X-Window system at start"
+msgstr "Ďóńíč X-Window ńčńňĺěŕňŕ ďđč ńňŕđňčđŕíĺ"
+
+#: ../../bootlook.pm_.c:187
+msgid "No, I don't want autologin"
+msgstr "Íĺ, íĺ čńęŕě autologin"
+
+#: ../../bootlook.pm_.c:193
+msgid "Yes, I want autologin with this (user, desktop)"
+msgstr "Äŕ, čńęŕě autologin ń ňîâŕ (ďîňđĺáčňĺë, äĺńęňîď)"
+
+#: ../../bootlook.pm_.c:210
+msgid "System mode"
+msgstr "Ńčńňĺěĺí đĺćčě"
+
+#: ../../bootlook.pm_.c:218 ../../standalone/draknet_.c:88
+#: ../../standalone/draknet_.c:120 ../../standalone/draknet_.c:184
+#: ../../standalone/draknet_.c:302 ../../standalone/draknet_.c:394
+#: ../../standalone/draknet_.c:471 ../../standalone/draknet_.c:507
+#: ../../standalone/draknet_.c:609
+msgid "OK"
+msgstr "OK"
+
+#: ../../bootlook.pm_.c:220 ../../install_steps_gtk.pm_.c:576
+#: ../../interactive.pm_.c:110 ../../interactive.pm_.c:265
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:357
+#: ../../my_gtk.pm_.c:360 ../../my_gtk.pm_.c:616
+#: ../../standalone/drakgw_.c:639 ../../standalone/draknet_.c:95
+#: ../../standalone/draknet_.c:127 ../../standalone/draknet_.c:295
+#: ../../standalone/draknet_.c:483 ../../standalone/draknet_.c:623
+#: ../../standalone/tinyfirewall_.c:63
+msgid "Cancel"
+msgstr "Îňě˙íŕ"
+
+#: ../../bootlook.pm_.c:297
+msgid "can not open /etc/inittab for reading: $!"
+msgstr "íĺ ěîăŕ äŕ îňâîđ˙ /etc/inittab çŕ ÷ĺňĺíĺ: $!"
+
+#: ../../bootlook.pm_.c:351
+msgid "can not open /etc/sysconfig/autologin for reading: $!"
+msgstr "íĺ ěîăŕ äŕ îňâîđ˙ /etc/sysconfig/autologin çŕ ÷ĺňĺíĺ: $!"
+
+#: ../../bootlook.pm_.c:416 ../../standalone/drakboot_.c:47
+msgid "Installation of LILO failed. The following error occured:"
+msgstr "Číńňŕëŕöč˙ňŕ íŕ LILO ďđîâŕëĺíŕ. Ďî˙âč ńĺ ńëĺäíŕňŕ ăđĺřęŕ:"
+
+#: ../../common.pm_.c:634
+msgid "GB"
+msgstr "ĂÁ"
+
+#: ../../common.pm_.c:634
+msgid "KB"
+msgstr "ĘÁ"
+
+#: ../../common.pm_.c:634 ../../diskdrake.pm_.c:660
+#: ../../install_steps_graphical.pm_.c:287
+#: ../../install_steps_graphical.pm_.c:334
+msgid "MB"
+msgstr "ĚÁ"
+
+#: ../../common.pm_.c:642
+msgid "TB"
+msgstr "ŇÁ"
+
+#: ../../common.pm_.c:655
#, c-format
msgid "%d minutes"
msgstr "%d ěčíóňč"
-#: ../../common.pm_.c:612
+#: ../../common.pm_.c:657
msgid "1 minute"
msgstr "1 ěčíóňŕ"
-#: ../../common.pm_.c:614
+#: ../../common.pm_.c:659
#, c-format
msgid "%d seconds"
msgstr "%d ńĺęóíäč"
-#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:427
+#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:462
msgid "Create"
msgstr "Ńúçäŕé"
@@ -895,7 +1211,7 @@ msgstr "Ńúçäŕé"
msgid "Unmount"
msgstr "Äĺěîíňčđŕé"
-#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:429
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:464
msgid "Delete"
msgstr "Čçňđčé"
@@ -903,16 +1219,16 @@ msgstr "Čçňđčé"
msgid "Format"
msgstr "Ôîđěŕňčđŕé"
-#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:610
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:653
msgid "Resize"
msgstr "Ďđîěĺíč ăîëĺěčíŕňŕ"
-#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:427
-#: ../../diskdrake.pm_.c:480
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:462
+#: ../../diskdrake.pm_.c:518
msgid "Type"
msgstr "Âčä"
-#: ../../diskdrake.pm_.c:24 ../../diskdrake.pm_.c:500
+#: ../../diskdrake.pm_.c:24 ../../diskdrake.pm_.c:539
msgid "Mount point"
msgstr "Ě˙ńňî íŕ ěîíňčđŕíĺ"
@@ -952,23 +1268,23 @@ msgstr "Çŕďŕçč íŕ äčńęĺňŕ"
msgid "Clear all"
msgstr "Čç÷čńňč âńč÷ęî"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "Format all"
msgstr "Ôîđěŕňčđŕé âńč÷ęî"
-#: ../../diskdrake.pm_.c:51
+#: ../../diskdrake.pm_.c:55
msgid "Auto allocate"
msgstr "Ŕâňîěŕňč÷íî ńúçäŕâŕíĺ"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:59
msgid "All primary partitions are used"
msgstr "Âńč÷ęč ďúđâč÷íč ä˙ëîâĺ ńĺ čçďîëçâŕň"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:59
msgid "I can't add any more partition"
msgstr "Íĺ ěîăŕ äŕ äîáŕâ˙ ďîâĺ÷ĺ ä˙ëîâĺ"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:59
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -976,63 +1292,60 @@ msgstr ""
"Ŕęî čńęŕňĺ îůĺ ä˙ëîâĺ, ěîë˙ čçňđčéňĺ ĺäčí, çŕ äŕ ěîćĺňĺ äŕ ńúçäŕäĺňĺ ĺäčí "
"đŕçřčđĺí ä˙ë"
-#: ../../diskdrake.pm_.c:57
-msgid "Rescue partition table"
-msgstr "Ńďŕń˙âŕíĺ íŕ ňŕáëčöŕňŕ ń ä˙ëîâĺ"
+#: ../../diskdrake.pm_.c:61
+msgid "Not enough space for auto-allocating"
+msgstr "Í˙ěŕ äîńňŕňú÷íî ě˙ńňî çŕ ŕâňîěŕňč÷íî çŕĺěŕíĺ"
-#: ../../diskdrake.pm_.c:58
+#: ../../diskdrake.pm_.c:63
msgid "Undo"
msgstr "Îňěĺíč"
-#: ../../diskdrake.pm_.c:59
+#: ../../diskdrake.pm_.c:64
msgid "Write partition table"
msgstr "Çŕďčńâŕíĺ íŕ ňŕáëčöŕňŕ íŕ ä˙ëîâĺňĺ"
-#: ../../diskdrake.pm_.c:60
-msgid "Reload"
-msgstr "Ďđĺçŕđĺćäŕíĺ"
+#: ../../diskdrake.pm_.c:65 ../../install_steps_interactive.pm_.c:185
+msgid "More"
+msgstr "Îůĺ"
-#: ../../diskdrake.pm_.c:101
-msgid "loopback"
-msgstr "loopback"
-
-#: ../../diskdrake.pm_.c:114
+#: ../../diskdrake.pm_.c:116
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake.pm_.c:114
+#: ../../diskdrake.pm_.c:116
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake.pm_.c:114
+#: ../../diskdrake.pm_.c:116
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake.pm_.c:114
+#: ../../diskdrake.pm_.c:116
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake.pm_.c:114
+#: ../../diskdrake.pm_.c:116
msgid "Swap"
msgstr "Swap"
-#: ../../diskdrake.pm_.c:115
+#: ../../diskdrake.pm_.c:117
msgid "Empty"
msgstr "Ďđŕçíŕ"
-#: ../../diskdrake.pm_.c:115 ../../mouse.pm_.c:125
+#: ../../diskdrake.pm_.c:117 ../../install_steps_gtk.pm_.c:407
+#: ../../mouse.pm_.c:145
msgid "Other"
msgstr "Äđóăŕ"
-#: ../../diskdrake.pm_.c:121
+#: ../../diskdrake.pm_.c:123
msgid "Filesystem types:"
msgstr "Âčäîâĺ ôŕéëîâŕ ńčńňĺěŕ:"
-#: ../../diskdrake.pm_.c:130
+#: ../../diskdrake.pm_.c:132 ../../install_steps_gtk.pm_.c:577
msgid "Details"
msgstr "Ďîäđîáíîńňč"
-#: ../../diskdrake.pm_.c:144
+#: ../../diskdrake.pm_.c:147
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1044,17 +1357,17 @@ msgstr ""
"Ďđĺäëŕăŕě ďúđâî äŕ ďđîěĺíčňĺ ăîëĺěčíŕňŕ íŕ ňîçč ä˙ë\n"
"(ůđŕęíĺňĺ âúđőó íĺăî, ŕ ńëĺä ňîâŕ ůđŕęíĺňĺ âúđőó \"Ďđîěĺíč ăîëĺěčíŕňŕ\")"
-#: ../../diskdrake.pm_.c:149
+#: ../../diskdrake.pm_.c:152
msgid "Please make a backup of your data first"
msgstr "Ďúđâî ńúçäŕéňĺ backup íŕ ńâîčňĺ äŕííč"
-#: ../../diskdrake.pm_.c:149 ../../diskdrake.pm_.c:166
-#: ../../diskdrake.pm_.c:175 ../../diskdrake.pm_.c:532
-#: ../../diskdrake.pm_.c:554
+#: ../../diskdrake.pm_.c:152 ../../diskdrake.pm_.c:170
+#: ../../diskdrake.pm_.c:179 ../../diskdrake.pm_.c:570
+#: ../../diskdrake.pm_.c:592
msgid "Read carefully!"
msgstr "Ďđî÷ĺňĺňĺ âíčěŕňĺëíî !"
-#: ../../diskdrake.pm_.c:152
+#: ../../diskdrake.pm_.c:155
msgid ""
"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
"enough)\n"
@@ -1064,77 +1377,81 @@ msgstr ""
"ńĺęňîđŕ\n"
"ńŕ äîńňŕňú÷íč) â íŕ÷ŕëîňî íŕ äčńęŕ"
-#: ../../diskdrake.pm_.c:166
+#: ../../diskdrake.pm_.c:170
msgid "Be careful: this operation is dangerous."
msgstr "Âíčěŕíčĺ: ňŕçč îďĺđŕöč˙ ĺ îďŕńíŕ"
-#: ../../diskdrake.pm_.c:203 ../../install_steps.pm_.c:73
-#: ../../install_steps_interactive.pm_.c:38
-#: ../../install_steps_interactive.pm_.c:315 ../../standalone/diskdrake_.c:60
-#: ../../standalone/rpmdrake_.c:294 ../../standalone/rpmdrake_.c:304
+#: ../../diskdrake.pm_.c:214 ../../install_steps.pm_.c:72
+#: ../../install_steps_interactive.pm_.c:37
+#: ../../install_steps_interactive.pm_.c:322 ../../standalone/diskdrake_.c:66
msgid "Error"
msgstr "Ăđĺřęŕ"
-#: ../../diskdrake.pm_.c:227 ../../diskdrake.pm_.c:708
+#: ../../diskdrake.pm_.c:238 ../../diskdrake.pm_.c:748
msgid "Mount point: "
msgstr "Ě˙ńňî íŕ ěîíňčđŕíĺ: "
-#: ../../diskdrake.pm_.c:228 ../../diskdrake.pm_.c:269
+#: ../../diskdrake.pm_.c:239 ../../diskdrake.pm_.c:298
msgid "Device: "
msgstr "Óńňđîéńňâî: "
-#: ../../diskdrake.pm_.c:229
+#: ../../diskdrake.pm_.c:240
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Áóęâŕ íŕ óńňđîéńňâîňî ďîä DOS: %s (ďđîńňî ďđĺäďîëîćĺíčĺ)\n"
-#: ../../diskdrake.pm_.c:230 ../../diskdrake.pm_.c:272
+#: ../../diskdrake.pm_.c:244 ../../diskdrake.pm_.c:251
+#: ../../diskdrake.pm_.c:301
msgid "Type: "
msgstr "Âčä: "
-#: ../../diskdrake.pm_.c:231
+#: ../../diskdrake.pm_.c:248
+msgid "Name: "
+msgstr "Čěĺ: "
+
+#: ../../diskdrake.pm_.c:253
#, c-format
msgid "Start: sector %s\n"
msgstr "Íŕ÷ŕëî: ńĺęňîđ %s\n"
-#: ../../diskdrake.pm_.c:232
+#: ../../diskdrake.pm_.c:254
#, c-format
-msgid "Size: %d MB"
-msgstr "Đŕçěĺđ: %d MB"
+msgid "Size: %s"
+msgstr "Đŕçěĺđ: %s"
-#: ../../diskdrake.pm_.c:234
+#: ../../diskdrake.pm_.c:256
#, c-format
msgid ", %s sectors"
msgstr ", %s ńĺęňîđŕ"
-#: ../../diskdrake.pm_.c:236
+#: ../../diskdrake.pm_.c:258
#, c-format
msgid "Cylinder %d to cylinder %d\n"
msgstr "Îň öčëčíäúđ %d äî öčëčíäúđ %d\n"
-#: ../../diskdrake.pm_.c:237
+#: ../../diskdrake.pm_.c:259
msgid "Formatted\n"
msgstr "Ôîđěŕňčđŕí\n"
-#: ../../diskdrake.pm_.c:238
+#: ../../diskdrake.pm_.c:260
msgid "Not formatted\n"
msgstr "Íĺôîđěŕňčđŕí\n"
-#: ../../diskdrake.pm_.c:239
+#: ../../diskdrake.pm_.c:261
msgid "Mounted\n"
msgstr "Ěîíňčđŕí\n"
-#: ../../diskdrake.pm_.c:240
+#: ../../diskdrake.pm_.c:262
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake.pm_.c:241
+#: ../../diskdrake.pm_.c:264
#, c-format
msgid "Loopback file(s): %s\n"
msgstr "Loopback ôŕéë(îâĺ): %s\n"
-#: ../../diskdrake.pm_.c:242
+#: ../../diskdrake.pm_.c:265
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -1142,79 +1459,116 @@ msgstr ""
"Ä˙ë, ęîéňî ńĺ ńňŕđňčđŕ ďî ďîäđŕçáčđŕíĺ\n"
" (çŕ MS-DOS boot, íĺ çŕ lilo)\n"
-#: ../../diskdrake.pm_.c:244
+#: ../../diskdrake.pm_.c:267
#, c-format
msgid "Level %s\n"
msgstr "Íčâî %s\n"
-#: ../../diskdrake.pm_.c:245
+#: ../../diskdrake.pm_.c:268
#, c-format
msgid "Chunk size %s\n"
msgstr "Đŕçěĺđ íŕ ďŕđ÷ĺňî %s\n"
-#: ../../diskdrake.pm_.c:246
+#: ../../diskdrake.pm_.c:269
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID-äčńęîâĺ %s\n"
-#: ../../diskdrake.pm_.c:248
+#: ../../diskdrake.pm_.c:271
#, c-format
msgid "Loopback file name: %s"
msgstr "Čěĺ íŕ loopback ôŕéëŕ: %s"
-#: ../../diskdrake.pm_.c:265
+#: ../../diskdrake.pm_.c:274
+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.pm_.c:277
+msgid ""
+"\n"
+"This special Bootstrap\n"
+"partition is for\n"
+"dual-booting your system.\n"
+msgstr ""
+"\n"
+"Ňŕçč ńďĺöčŕëíŕ ńňŕđňčđŕůŕ\n"
+"čâčöŕ íŕ ä˙ëŕ ĺ çŕ äâîéíî\n"
+"ńňŕđňčđŕíĺ íŕ ńčńňĺěŕňŕ âč.\n"
+
+#: ../../diskdrake.pm_.c:294
msgid "Please click on a partition"
msgstr "Čçáĺđĺňĺ ä˙ë ęŕňî ůđŕęíĺňĺ âúđőó íĺăî"
-#: ../../diskdrake.pm_.c:270
+#: ../../diskdrake.pm_.c:299
#, c-format
-msgid "Size: %d MB\n"
-msgstr "Đŕçěĺđ: %d MB\n"
+msgid "Size: %s\n"
+msgstr "Đŕçěĺđ: %s\n"
-#: ../../diskdrake.pm_.c:271
+#: ../../diskdrake.pm_.c:300
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Ăĺîěĺňđč˙: %s öčëčíäđč, %s ăëŕâč, %s ńĺęňîđč\n"
-#: ../../diskdrake.pm_.c:273
+#: ../../diskdrake.pm_.c:302
+#, c-format
+msgid "LVM-disks %s\n"
+msgstr "LVM-äčńęîâĺ %s\n"
+
+#: ../../diskdrake.pm_.c:303
#, c-format
msgid "Partition table type: %s\n"
msgstr "Ňčď íŕ ňŕáëčöŕňŕ ń ä˙ëîâĺ: %s\n"
-#: ../../diskdrake.pm_.c:274
+#: ../../diskdrake.pm_.c:304
#, c-format
msgid "on bus %d id %d\n"
msgstr "íŕ řčíŕ %d ŕäđĺń %d\n"
-#: ../../diskdrake.pm_.c:290
+#: ../../diskdrake.pm_.c:320
msgid "Mount"
msgstr "Ěîíňčđŕé"
-#: ../../diskdrake.pm_.c:292
+#: ../../diskdrake.pm_.c:322
msgid "Active"
msgstr "Ŕęňčâčđŕé"
-#: ../../diskdrake.pm_.c:294
+#: ../../diskdrake.pm_.c:324
msgid "Add to RAID"
msgstr "Ďđčáŕâč ęúě RAID"
-#: ../../diskdrake.pm_.c:296
+#: ../../diskdrake.pm_.c:326
msgid "Remove from RAID"
msgstr "Ďđĺěŕőíč îň RAID"
-#: ../../diskdrake.pm_.c:298
+#: ../../diskdrake.pm_.c:328
msgid "Modify RAID"
msgstr "Ěîäčôčöčđŕé RAID"
-#: ../../diskdrake.pm_.c:300
+#: ../../diskdrake.pm_.c:330
+msgid "Add to LVM"
+msgstr "Ďđčáŕâč ęúě LVM"
+
+#: ../../diskdrake.pm_.c:332
+msgid "Remove from LVM"
+msgstr "Ďđĺěŕőíč îň LVM"
+
+#: ../../diskdrake.pm_.c:334
msgid "Use for loopback"
msgstr "Čçďîëçâŕé çŕ loopback"
-#: ../../diskdrake.pm_.c:307
+#: ../../diskdrake.pm_.c:341
msgid "Choose action"
msgstr "Čçáĺđĺňĺ äĺéńňâčĺ"
-#: ../../diskdrake.pm_.c:400
+#: ../../diskdrake.pm_.c:435
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1226,7 +1580,7 @@ msgstr ""
"Čëč čçďîëçâŕňĺ LILO č ňî íĺ đŕáîňč, čëč íĺ čçďîëçâŕňĺ LILO č í˙ěŕňĺ íóćäŕ îň "
"/boot"
-#: ../../diskdrake.pm_.c:404
+#: ../../diskdrake.pm_.c:439
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1238,7 +1592,7 @@ msgstr ""
"Ŕęî ńě˙ňŕňĺ äŕ čçďîëçâŕňĺ boot ěĺíčäćúđŕ LILO, áúäĺňĺ âíčěŕňĺëíč ďđč\n"
"ďđčáŕâ˙íĺňî íŕ /boot ä˙ë"
-#: ../../diskdrake.pm_.c:410
+#: ../../diskdrake.pm_.c:445
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1248,57 +1602,57 @@ msgstr ""
"Í˙ěŕ çŕđĺćäŕůŕ ďđîăđŕěŕ, ęî˙ňî äŕ ěîćĺ äŕ ńĺ ńďđŕâč ń íĺăî áĺç /boot ä˙ë.\n"
"Ňŕęŕ ÷ĺ äîáŕâĺňĺ /boot ä˙ë"
-#: ../../diskdrake.pm_.c:427 ../../diskdrake.pm_.c:429
+#: ../../diskdrake.pm_.c:462 ../../diskdrake.pm_.c:464
#, c-format
msgid "Use ``%s'' instead"
msgstr "Âěĺńňî ňîâŕ čçďîëçâŕéňĺ ``%s''"
-#: ../../diskdrake.pm_.c:432
+#: ../../diskdrake.pm_.c:468
msgid "Use ``Unmount'' first"
msgstr "Ďúđâî čçďîëçâŕéňĺ 'Äĺěîíňčđŕíĺ'"
-#: ../../diskdrake.pm_.c:433 ../../diskdrake.pm_.c:475
+#: ../../diskdrake.pm_.c:469 ../../diskdrake.pm_.c:513
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Ńëĺä ďđîě˙íŕ íŕ ňčďŕ íŕ ä˙ëŕ %s, âńč÷ęč äŕííč âúđőó íĺăî ůĺ áúäŕň çŕăóáĺíč"
-#: ../../diskdrake.pm_.c:445
+#: ../../diskdrake.pm_.c:481
msgid "Continue anyway?"
msgstr "Ďđîäúëćĺíčĺ âúďđĺęč âńč÷ęî ?"
-#: ../../diskdrake.pm_.c:450
+#: ../../diskdrake.pm_.c:486
msgid "Quit without saving"
msgstr "Čçőîä áĺç çŕďčń"
-#: ../../diskdrake.pm_.c:450
+#: ../../diskdrake.pm_.c:486
msgid "Quit without writing the partition table?"
msgstr "Čçőîä, áĺç äŕ çŕďčń íŕ ňŕáëčöŕňŕ íŕ ä˙ëîâĺňĺ ?"
-#: ../../diskdrake.pm_.c:478
+#: ../../diskdrake.pm_.c:516
msgid "Change partition type"
msgstr "Ďđîě˙íŕ ňčďŕ íŕ ä˙ëŕ"
-#: ../../diskdrake.pm_.c:479
+#: ../../diskdrake.pm_.c:517
msgid "Which filesystem do you want?"
msgstr "Ęî˙ ôŕéëîâŕ ńčńňĺěŕ čńęŕňĺ ?"
-#: ../../diskdrake.pm_.c:482 ../../diskdrake.pm_.c:740
+#: ../../diskdrake.pm_.c:520 ../../diskdrake.pm_.c:780
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Íĺ ěîćĺňĺ äŕ číńňŕëčđŕíĺ ReiserFS íŕ ä˙ë ďî-ěŕëúę îň 32MB"
-#: ../../diskdrake.pm_.c:498
+#: ../../diskdrake.pm_.c:537
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Ęúäĺ čńęŕňĺ äŕ ěîíňčđŕňĺ loopback-ôŕéëŕ %s ?"
-#: ../../diskdrake.pm_.c:499
+#: ../../diskdrake.pm_.c:538
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Ęúäĺ čńęŕňĺ äŕ ěîíňčđŕňĺ óńňđîéńňâî %s ?"
-#: ../../diskdrake.pm_.c:504
+#: ../../diskdrake.pm_.c:542
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1307,146 +1661,138 @@ msgstr ""
"loopback.\n"
"Ďúđâî ěŕőíĺňĺ loopback"
-#: ../../diskdrake.pm_.c:523
+#: ../../diskdrake.pm_.c:561
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Ńëĺä ôîđěŕňčđŕíĺ íŕ ä˙ëŕ %s, âńč÷ęč äŕííč âúđőó íĺăî ůĺ áúäŕň çŕăóáĺíč"
-#: ../../diskdrake.pm_.c:525
+#: ../../diskdrake.pm_.c:563
msgid "Formatting"
msgstr "Ôîđěŕňčđŕíĺ"
-#: ../../diskdrake.pm_.c:526
+#: ../../diskdrake.pm_.c:564
#, c-format
msgid "Formatting loopback file %s"
msgstr "Ôîđěŕňčđŕíĺ íŕ loopback ôŕéëŕ %s"
-#: ../../diskdrake.pm_.c:527 ../../install_steps_interactive.pm_.c:402
+#: ../../diskdrake.pm_.c:565 ../../install_steps_interactive.pm_.c:430
#, c-format
msgid "Formatting partition %s"
msgstr "Ôîđěŕňčđŕíĺ íŕ ä˙ëŕ %s"
-#: ../../diskdrake.pm_.c:532
+#: ../../diskdrake.pm_.c:570
msgid "After formatting all partitions,"
msgstr "Ńëĺä ôîđěŕňčđŕíĺ íŕ âńč÷ęč ä˙ëîâĺ,"
-#: ../../diskdrake.pm_.c:532
+#: ../../diskdrake.pm_.c:570
msgid "all data on these partitions will be lost"
msgstr "âńč÷ęč äŕííč âúđőó ň˙ő ůĺ áúäŕň çŕăóáĺíč"
-#: ../../diskdrake.pm_.c:538
+#: ../../diskdrake.pm_.c:576
msgid "Move"
msgstr "Ďđĺěĺńňč"
-#: ../../diskdrake.pm_.c:539
+#: ../../diskdrake.pm_.c:577
msgid "Which disk do you want to move it to?"
msgstr "Íŕ ęîé äčńę čńęŕňĺ äŕ ăî ďđĺěĺńňčňĺ ?"
-#: ../../diskdrake.pm_.c:540
+#: ../../diskdrake.pm_.c:578
msgid "Sector"
msgstr "Ńĺęňîđ"
-#: ../../diskdrake.pm_.c:541
+#: ../../diskdrake.pm_.c:579
msgid "Which sector do you want to move it to?"
msgstr "Íŕ ęîé ńĺęňîđ čńęŕňĺ äŕ ăî ďđĺěĺńňčňĺ?"
-#: ../../diskdrake.pm_.c:544
+#: ../../diskdrake.pm_.c:582
msgid "Moving"
msgstr "Ěĺńňĺíĺ"
-#: ../../diskdrake.pm_.c:544
+#: ../../diskdrake.pm_.c:582
msgid "Moving partition..."
msgstr "Ěĺńňâ˙ ä˙ëŕ ... "
-#: ../../diskdrake.pm_.c:554
+#: ../../diskdrake.pm_.c:592
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Ňŕáëčöŕňŕ íŕ ä˙ëîâĺňĺ íŕ óńňđîéńňâî %s ůĺ áúäĺ çŕďčńŕíŕ âúđőó äčńęŕ !"
-#: ../../diskdrake.pm_.c:556
+#: ../../diskdrake.pm_.c:594
msgid "You'll need to reboot before the modification can take place"
msgstr "Ňđ˙áâŕ äŕ đĺńňŕđňčđŕňĺ, ďđĺäč ďđîěĺíčňĺ äŕ âë˙çŕň â ńčëŕ"
-#: ../../diskdrake.pm_.c:577
+#: ../../diskdrake.pm_.c:615
msgid "Computing FAT filesystem bounds"
msgstr "Čç÷čńë˙âŕě ăđŕíčöčňĺ íŕ fat ôŕéëîâŕňŕ ńčńňĺěŕ"
-#: ../../diskdrake.pm_.c:577 ../../diskdrake.pm_.c:637
+#: ../../diskdrake.pm_.c:615 ../../diskdrake.pm_.c:680
#: ../../install_interactive.pm_.c:107
msgid "Resizing"
msgstr "Ďđîě˙íŕ íŕ ăîëĺěčíŕňŕ"
-#: ../../diskdrake.pm_.c:600
-#, fuzzy
+#: ../../diskdrake.pm_.c:643
msgid "This partition is not resizeable"
-msgstr "Ęîé ä˙ë ćĺëŕĺňĺ äŕ ďđîěĺíčňĺ?"
+msgstr "Ăîëĺěčíŕňŕ íŕ ä˙ëŕ íĺ ěîćĺ äŕ áúäĺ ďđîěĺíĺíŕ"
-#: ../../diskdrake.pm_.c:605
+#: ../../diskdrake.pm_.c:648
msgid "All data on this partition should be backed-up"
msgstr "Âńč÷ęč äŕííč íŕ ňîçč ä˙ë ňđ˙áâŕ äŕ áúäŕň ŕđőčâčđŕíč"
-#: ../../diskdrake.pm_.c:607
+#: ../../diskdrake.pm_.c:650
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Ńëĺä ďđîě˙íŕ ăîëĺěčíŕňŕ íŕ ä˙ëŕ %s, äŕííčte âúđőó íĺăî ůĺ áúäŕň çŕăóáĺíč"
-#: ../../diskdrake.pm_.c:617
+#: ../../diskdrake.pm_.c:660
msgid "Choose the new size"
msgstr "Čçáĺđĺňĺ íîâŕ ăîëĺěčíŕ"
-#: ../../diskdrake.pm_.c:617 ../../install_steps_graphical.pm_.c:287
-#: ../../install_steps_graphical.pm_.c:334
-#: ../../install_steps_interactive.pm_.c:518
-#: ../../partition_table_raw.pm_.c:101
-msgid "MB"
-msgstr "MB"
-
-#: ../../diskdrake.pm_.c:674
+#: ../../diskdrake.pm_.c:714
msgid "Create a new partition"
msgstr "Ńúçäŕé íîâ ä˙ë"
-#: ../../diskdrake.pm_.c:700
+#: ../../diskdrake.pm_.c:740
msgid "Start sector: "
msgstr "Íŕ÷ŕëĺí ńĺęňîđ: "
-#: ../../diskdrake.pm_.c:704 ../../diskdrake.pm_.c:779
+#: ../../diskdrake.pm_.c:744 ../../diskdrake.pm_.c:819
msgid "Size in MB: "
msgstr "Ăîëĺěčíŕ â MB: "
-#: ../../diskdrake.pm_.c:707 ../../diskdrake.pm_.c:782
+#: ../../diskdrake.pm_.c:747 ../../diskdrake.pm_.c:822
msgid "Filesystem type: "
msgstr "Âčä ôŕéëîâŕ ńčńňĺěŕ: "
-#: ../../diskdrake.pm_.c:710
+#: ../../diskdrake.pm_.c:750
msgid "Preference: "
msgstr "Ďđĺäďî÷čňŕíčĺ: "
-#: ../../diskdrake.pm_.c:758
+#: ../../diskdrake.pm_.c:798
msgid "This partition can't be used for loopback"
msgstr "Ňîçč ä˙ë íĺ ěîćĺ äŕ áúäĺ čçďîëçâŕí çŕ loopback"
-#: ../../diskdrake.pm_.c:768
+#: ../../diskdrake.pm_.c:808
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake.pm_.c:778
+#: ../../diskdrake.pm_.c:818
msgid "Loopback file name: "
msgstr "Čěĺ íŕ loopback ôŕéëŕ: "
-#: ../../diskdrake.pm_.c:804
+#: ../../diskdrake.pm_.c:844
msgid "File already used by another loopback, choose another one"
msgstr "Ôŕéëúň âĺ÷ĺ ńĺ čçďîëçâŕ ňî äđóă loopback, čçáĺđĺňĺ äđóă ôŕéë."
-#: ../../diskdrake.pm_.c:805
+#: ../../diskdrake.pm_.c:845
msgid "File already exists. Use it?"
msgstr "Ôŕéëúň âĺ÷ĺ ńúřĺńňâóâŕ. Äŕ ăî čçďîëçâŕě ëč ?"
-#: ../../diskdrake.pm_.c:827 ../../diskdrake.pm_.c:843
+#: ../../diskdrake.pm_.c:867 ../../diskdrake.pm_.c:883
msgid "Select file"
msgstr "Čçáĺđĺňĺ ôŕéë"
-#: ../../diskdrake.pm_.c:836
+#: ../../diskdrake.pm_.c:876
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1454,11 +1800,11 @@ msgstr ""
"Đĺçĺđâíŕňŕ ňŕáëčöŕ íŕ ä˙ëîâĺňĺ íĺ ĺ ńúń ńúůŕňŕ ăîëĺěčíŕ\n"
"Äŕ ďđîäúëćŕ ëč âńĺ ďŕę ?"
-#: ../../diskdrake.pm_.c:844
+#: ../../diskdrake.pm_.c:884
msgid "Warning"
msgstr "Ďđĺäóďđĺćäĺíčĺ"
-#: ../../diskdrake.pm_.c:845
+#: ../../diskdrake.pm_.c:885
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1466,79 +1812,112 @@ msgstr ""
"Ńëîćĺňĺ äčńęĺňŕ âúâ ôëîďčňî\n"
"Âńč÷ęč äŕííč, íŕěčđŕůč ńĺ âúđőó äčńęĺňŕňŕ, ůĺ áúäŕň çŕăóáĺíč"
-#: ../../diskdrake.pm_.c:856
+#: ../../diskdrake.pm_.c:896
msgid "Trying to rescue partition table"
msgstr "Îďčňâŕě ńĺ äŕ ńďŕń˙ ňŕáëčöŕňŕ íŕ ä˙ëîâĺňĺ"
-#: ../../diskdrake.pm_.c:867
+#: ../../diskdrake.pm_.c:905
msgid "device"
msgstr "óńňđîéńňâî"
-#: ../../diskdrake.pm_.c:868
+#: ../../diskdrake.pm_.c:906
msgid "level"
msgstr "íčâî"
-#: ../../diskdrake.pm_.c:869
+#: ../../diskdrake.pm_.c:907
msgid "chunk size"
msgstr "ăîëĺěčíŕ íŕ ďŕđ÷ĺňî"
-#: ../../diskdrake.pm_.c:881
+#: ../../diskdrake.pm_.c:919
msgid "Choose an existing RAID to add to"
msgstr "Čçáĺđĺňĺ ńúůĺńňâóâŕů RAID çŕ ďđčáŕâ˙íĺ"
-#: ../../diskdrake.pm_.c:882
+#: ../../diskdrake.pm_.c:920 ../../diskdrake.pm_.c:946
msgid "new"
msgstr "íîâ"
+#: ../../diskdrake.pm_.c:944
+msgid "Choose an existing LVM to add to"
+msgstr "Čçáĺđĺňĺ ńúůĺńňâóâŕů LVM çŕ ďđčáŕâ˙íĺ"
+
+#: ../../diskdrake.pm_.c:949
+msgid "LVM name?"
+msgstr "LVM čěĺ ?"
+
+#: ../../diskdrake.pm_.c:976
+msgid "Removable media automounting"
+msgstr "Ŕâňîěŕňč÷íî ěîíňčđŕíĺ íŕ ńěĺí˙ĺěčňĺ äčńęîâĺ"
+
+#: ../../diskdrake.pm_.c:977
+msgid "Rescue partition table"
+msgstr "Ńďŕń˙âŕíĺ íŕ ňŕáëčöŕňŕ ń ä˙ëîâĺ"
+
+#: ../../diskdrake.pm_.c:979
+msgid "Reload"
+msgstr "Ďđĺçŕđĺćäŕíĺ"
+
#: ../../fs.pm_.c:88 ../../fs.pm_.c:95 ../../fs.pm_.c:101 ../../fs.pm_.c:107
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s ôîđěŕňčđŕíĺ îň %s ďđîâŕëĺíî"
-#: ../../fs.pm_.c:133
+#: ../../fs.pm_.c:135
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "íĺ çíŕě ęŕę äŕ ôîđěŕňčđŕě %s â ňčď %s"
-#: ../../fs.pm_.c:218
+#: ../../fs.pm_.c:220
msgid "mount failed: "
msgstr "ěîíňčđŕíĺňî íĺ óńď˙: "
-#: ../../fs.pm_.c:230
+#: ../../fs.pm_.c:232
#, c-format
msgid "error unmounting %s: %s"
msgstr "ăđĺřęŕ ďđč äĺěîíňčđŕíĺňî íŕ %s: %s"
-#: ../../fsedit.pm_.c:235
+#: ../../fsedit.pm_.c:21
+msgid "simple"
+msgstr "ďđîńň"
+
+#: ../../fsedit.pm_.c:30
+msgid "server"
+msgstr "ńúđâúđ"
+
+#: ../../fsedit.pm_.c:261
msgid "Mount points must begin with a leading /"
msgstr "Ňî÷ęčňĺ íŕ ěîíňčđŕíĺ ňđ˙áâŕ äŕ çŕďî÷âŕň ń /"
-#: ../../fsedit.pm_.c:238
+#: ../../fsedit.pm_.c:264
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Âĺ÷ĺ čěŕ ä˙ë ń ňŕçč ě˙ńňî íŕ ěîíňčđŕíĺ %s\n"
-#: ../../fsedit.pm_.c:246
+#: ../../fsedit.pm_.c:272
#, c-format
msgid "Circular mounts %s\n"
msgstr "\"Îěŕăüîńŕí ęđúă\" îň ěîíňčđŕíč˙: %s\n"
-#: ../../fsedit.pm_.c:258
+#: ../../fsedit.pm_.c:284
+#, c-format
+msgid "You can't use a LVM Logical Volume for mount point %s"
+msgstr "Íĺ ěîćĺňĺ äŕ čçďîëçâŕňĺ LVM ëîăč÷ĺńęč ňčď çŕ ě˙ńňî íŕ ěîíňčđŕíĺ %s"
+
+#: ../../fsedit.pm_.c:285
msgid "This directory should remain within the root filesystem"
msgstr "Ňŕçč äčđĺęňîđč˙ ňđ˙áâŕ äŕ îńňŕíĺ â đŕěęčňĺ íŕ root ôŕéëîâŕňŕ ńčńňĺěŕ."
-#: ../../fsedit.pm_.c:259
+#: ../../fsedit.pm_.c:286
msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
msgstr ""
"Íóćäŕĺňĺ ńĺ îň čńňčíńęŕ ôŕéëîâŕ ńčńňĺěŕ (ext2, reiserfs) çŕ ňŕçč ňî÷ęŕ íŕ "
"ěîíňčđŕíĺ\n"
-#: ../../fsedit.pm_.c:335
+#: ../../fsedit.pm_.c:368
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Ăđĺřęŕ ďđč îňâŕđ˙íĺ íŕ %s çŕ çŕďčń: %s"
-#: ../../fsedit.pm_.c:417
+#: ../../fsedit.pm_.c:452
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"
@@ -1547,7 +1926,7 @@ msgstr ""
"ńúçäŕäĺíč íîâč ôŕéëîâč ńčńňĺěč. Ěîë˙ ďđîâĺđĺňĺ őŕđä äčńęŕ ńč çŕ ďđč÷číŕňŕ çŕ "
"ňîçč ďđîáëĺě"
-#: ../../fsedit.pm_.c:431
+#: ../../fsedit.pm_.c:466
msgid "You don't have any partitions!"
msgstr "Í˙ěŕňĺ íčęŕęâč ä˙ëîâĺ!"
@@ -1557,7 +1936,6 @@ msgid ""
msgstr "Čçáĺđĺňĺ ďđĺäďî÷čňŕí ĺçčę çŕ číńňŕëŕöč˙ č ńčńňĺěíî čçďîëçâŕíĺ."
#: ../../help.pm_.c:12
-#, fuzzy
msgid ""
"You need to accept the terms of the above license to continue installation.\n"
"\n"
@@ -1569,7 +1947,7 @@ msgid ""
"end without modifying your current\n"
"configuration."
msgstr ""
-"Ňđ˙áâŕ äŕ ďđčĺěĺňĺ óńëîâč÷ňŕ íŕ ďî-ăîđíč˙ ëčöĺíç, çŕ äŕ ďđîäúëćčňĺ "
+"Ňđ˙áâŕ äŕ ďđčĺěĺňĺ óńëîâč˙ňŕ íŕ ëčöĺíçŕ ďî-ăîđĺ, çŕ äŕ ďđîäúëćč "
"číńňŕëŕöč˙ňŕ.\n"
"\n"
"\n"
@@ -1598,7 +1976,6 @@ msgstr ""
"\"Âńč÷ęč\"."
#: ../../help.pm_.c:30
-#, fuzzy
msgid ""
"Please choose \"Install\" if there are no previous version of "
"Linux-Mandrake\n"
@@ -1613,15 +1990,15 @@ msgid ""
"levels to install or update your\n"
"Linux-Mandrake operating system:\n"
"\n"
-"\t* Recommanded: if you have never installed a GNU/Linux operating system "
+"\t* Recommended: if you have never installed a GNU/Linux operating system "
"choose this. Installation will be\n"
"\t be very easy and you will be asked only on few questions.\n"
"\n"
"\n"
"\t* Customized: if you are familiar enough with GNU/Linux, you may choose "
"the primary usage (workstation, server,\n"
-"\t development) of your sytem. You will need to answer to more questions "
-"than in \"Recommanded\" installation\n"
+"\t development) of your system. You will need to answer to more questions "
+"than in \"Recommended\" installation\n"
"\t class, so you need to know how GNU/Linux works to choose this "
"installation class.\n"
"\n"
@@ -1636,41 +2013,41 @@ msgid ""
"knowledge in GNU/Linux. So, don't choose\n"
"\t this installation class unless you know what you are doing."
msgstr ""
-"Ěîë˙, čçáĺđĺňĺ \"Číńňŕëŕöč˙\", ŕęî í˙ěŕňĺ číńňŕëčđŕíŕ ďđĺäčříŕ âĺđńč˙ íŕ "
+"Ěîë˙, čçáĺđĺňĺ \"Číńňŕëŕöč˙\", ŕęî í˙ěŕňĺ číńňŕëčđŕíč ďđĺäčříč âĺđńčč íŕ "
"Linux-Mandrake\n"
-"čëč ŕęî čńęŕňĺ äŕ čěŕňĺ í˙ęîëęî îďĺđŕöčîííč ńčńňĺěč.\n"
+"čëč ŕęî čńęŕňĺ í˙ęîëęî îďĺđŕöčîííč ńčńňĺěč.\n"
"\n"
"\n"
-"Ěîë˙, čçáĺđĺňĺ \"Îáíîâ˙âŕíĺ\", ŕęî čńęŕňĺ äŕ čńęŕňĺ äŕ îáíîâčňĺ âĺ÷ĺ "
-"ńúůĺńňâóâŕůŕ âĺđńč˙ íŕ Linux-Mandrake\n"
+"Ěîë˙, čçáĺđĺňĺ \"Îáíîâ˙âŕíĺ\", ŕęî čńęŕňĺ äŕ îáíîâčňĺ âĺ÷ĺ číńňŕëčđŕíŕ "
+"âĺđńč˙ íŕ Linux-Mandrake.\n"
"\n"
"\n"
-"Ńďîđĺä çíŕíč˙ňŕ ńč â GNU/Linux, ěîćĺňĺ äŕ čçáĺđĺňĺ í˙ęîĺ îň ńëĺäíčňĺ íčâŕ íŕ "
-"číńňŕëčđŕíĺ čëč îáíîâ˙âŕíĺ íŕ\n"
-"Linux-Mandrake ńčńňĺěŕňŕ âč:\n"
+"Â çŕâčńčěîńň îň ďîçíŕíč˙ňŕ âč ďî GNU/Linux, ěîćĺňĺ äŕ čçáĺđĺňĺ ĺäíî îň "
+"ńëĺäíčňĺ íčâŕ íŕ číńňŕëŕöč˙ čëč îáíîâ˙âŕíĺ\n"
+"íŕ Linux-Mandrake îďĺđŕöčîííŕňŕ ńčńňĺěŕ:\n"
"\n"
-"\t* Ďđĺďîđú÷čňĺëíŕ: ŕęî íĺ ńňĺ číńňŕëčđŕëč GNU/Linux ńčńňĺěŕ ďđĺäč, čçáĺđĺňĺ "
-"ňîâŕ. Číńňŕëŕöč˙ňŕ ůĺ áúäĺ\n"
-"\t ěíîăî ëĺńíŕ č ůĺ âč áúäŕň çŕäŕäĺíč ńŕěî í˙ęîëęî âúďđîńŕ.\n"
+"\t* Ďđĺďîđú÷čňĺëíî: ŕęî íčęîăŕ íĺ ńňĺ číńňŕëčđŕëč GNU/Linux îďĺđŕöčîííŕ "
+"ńčńňĺěŕ, čçáĺđĺňĺ ňîâŕ. Číńňŕëŕöč˙ňŕ ůĺ áúäĺ\n"
+"\t ěíîăî ëĺńíŕ č ůĺ áúäĺňĺ ďîďčňŕíč ńŕěî í˙ęîëęî âúďđîńŕ.\n"
"\n"
"\n"
-"\t* Ęëčĺíňńęŕ: ŕęî ńňĺ äîńňŕňú÷íî çŕďîçíŕňč ń GNU/Linux, ěîćĺňĺ äŕ čçáĺđĺňĺ "
-"ăëŕâíîňî ďđĺäíŕçíŕ÷ĺíčĺ íŕ\n"
-"\t ńčńňĺěŕňŕ ńč (đŕáîňíŕ ńňŕíöč˙, ńúđâúđ, đŕçđŕáîňęŕ). Ůĺ ňđ˙áâŕ äŕ "
-"îňăîâîđčňĺ íŕ ďîâĺ÷ĺ âúďđîńč, îňęîëęîňî\n"
-"\t â \"Ďđĺďîđú÷čňĺëíč˙\" číńňŕëŕöčîíĺí ęëŕń, ňŕęŕ ÷ĺ ňđ˙áâŕ äŕ çíŕĺňĺ ęŕę "
-"đŕáîňč GNU/Linux, çŕ äŕ čçáĺđĺňĺ ňîçč ęëŕń.\n"
+"\t* Ęëčĺíňńęŕ: ŕęî ńňĺ äîńňŕňú÷íî çŕďîçíŕň ń GNU/Linux, ěîćĺňĺ äŕ čçáĺđĺňĺ "
+"ăëŕâíŕňŕ óďîňđĺáŕ (đŕáîňíŕ ńňŕíöč˙, ńúđâúđ,\n"
+"\t đŕçđŕáîňęŕ) íŕ ńčńňĺěŕňŕ ńč. Ůĺ ňđ˙áâŕ äŕ îňăîâîđčňĺ íŕ ďîâĺ÷ĺ âúďđîńč, "
+"îňęîëęîňî â \"Ďđĺďîđú÷čňĺëíŕňŕ\" číńňŕëŕöčîíĺí\n"
+"\t ęëŕń, ňŕęŕ ÷ĺ ňđ˙áâŕ äŕ çíŕĺňĺ ęŕę đŕáîňč GNU/Linux, çŕ äŕ čçáĺđĺňĺ ňîçč "
+"číńňŕëŕöčîíĺí ęëŕń.\n"
"\n"
"\n"
-"\t* Ĺęńďĺđňíŕ: ŕęî čěŕňĺ äîáđč ďîçíŕíč˙ ďî GNU/Linux, ěîćĺňĺ äŕ čçáĺđĺňĺ "
-"ňîçč číńňŕëŕöčîíĺí ęëŕń. Ęŕęňî č â \"Ęëčĺíňńęč˙\"\n"
-"\t číńňŕëŕöčîíĺí ęëŕń, ůĺ ěîćĺňĺ äŕ čçáĺđĺňĺ ăëŕâíîňî ďđĺäíŕçíŕ÷ĺíčĺ "
-"(đŕáîňíŕ ńňŕíöč˙, ńúđâúđ, đŕçđŕáîňęŕ). Áúäĺňĺ ěíîăî\n"
-"\t âíčěŕňĺëíč, ďđĺäč äŕ čçáĺđĺňĺ ňîçč číńňŕëŕöčîíĺí ęëŕń. Ůĺ ěîćĺňĺ äŕ "
-"čçâúđřčňĺ ěíîăî ęëčĺíňńęŕ číńňŕëŕöč˙.\n"
-"\t Îňăîâŕđ˙íĺňî íŕ í˙ęîč âúďđîńč ůĺ áúäĺ ěíîăî ňđóäíî, ŕęî íĺ ńňĺ "
-"äîńňŕňú÷íî çŕďîçíŕňč ń GNU/Linux. Ňŕęŕ ÷ĺ,\n"
-"\t íĺ čçáčđŕéňĺ ňîçč číńňŕëŕöčîíĺí ęëŕń, îńâĺí ŕęî íĺ çíŕĺňĺ ęŕęâî ďđŕâčňĺ."
+"\t* Ĺęńďĺđň: ŕęî čěŕňĺ äîáđč ďîçíŕíč˙ ďî GNU/Linux, ěîćĺňĺ äŕ čçáĺđĺňĺ ňîçč "
+"číńňŕëŕöčîíĺí ęëŕń. Ęŕęňî č â \"Ęëčĺíňńęč˙\"\n"
+"\t číńňŕëŕöčîíĺí ęëŕń, ůĺ ěîćĺňĺ äŕ čçáĺđĺňĺ ăëŕâíŕňŕ óďîňđĺáŕ (đŕáîňíŕ "
+"ńňŕíöč˙, ńúđâúđ, đŕçđŕáîňęŕ). Áúäĺňĺ ěíîăî\n"
+"\t âíčěŕňĺëíč ďđĺäč äŕ čçáĺđĺňĺ ňîçč číńňŕëŕöčîíĺí ęëŕń. Ůĺ ěîćĺňĺ äŕ "
+"ďđîâĺäĺňĺ ńčëíî ęëčĺíňńęŕ číńňŕëŕöč˙.\n"
+"\t Îňăîâîđčňĺ íŕ í˙ęîč âúďđîńč ěîćĺ äŕ áúäŕň ěíîăî ňđóäíč, ŕęî í˙ěŕňĺ äîáđč "
+"ďîçíŕíč˙ â GNU/Linux. Ňŕęŕ ÷ĺ íĺ\n"
+"\t čçáčđŕéňĺ ňîçč číńňŕëŕöčîíĺí ęëŕń, îńâĺí ŕęî íĺ çíŕňĺ ęŕęâî ďđŕâčňĺ."
#: ../../help.pm_.c:56
msgid ""
@@ -1803,7 +2180,6 @@ msgstr ""
"îň Microsoft Windows (ŕęî ăî čěŕňĺ číńňŕëčđŕí íŕ ńčńňĺěŕňŕ ńč)."
#: ../../help.pm_.c:108
-#, fuzzy
msgid ""
"At this point, you need to choose where to install your\n"
"Linux-Mandrake operating system on your hard drive. If it is empty or if an\n"
@@ -1873,70 +2249,74 @@ msgid ""
"lose all your data very easily. So,\n"
"\t don't choose this solution unless you know what you are doing."
msgstr ""
-"Ńĺăŕ ěîćĺňĺ äŕ čçáĺđĺňĺ ęúäĺ íŕ őŕđä äčńęŕ ńč äŕ číńňŕëčđŕňĺ\n"
-"âŕřŕňŕ Linux-Mandrake îďĺđŕöčîííŕ ńčńňĺěŕ. Ŕęî ĺ ďđŕçĺí čëč ńúůĺńňâóâŕůŕ\n"
-"îďĺđŕöčîííŕ ńčńňĺěŕ čçďîëçâŕ ö˙ëîňî ďđîńňđŕíńňâî íŕ íĺăî, ůĺ ňđ˙áâŕ äŕ ăî\n"
-"đŕçäĺëčňĺ íŕ ä˙ëîâĺ. Đŕçäĺë˙íĺňî íŕ ä˙ëîâĺ ďđĺäńňŕâë˙âŕ ďđîńňî ĺäíî\n"
-"ëîăč÷ĺńęî đŕçäĺë˙íĺ, çŕ äŕ ńúçäŕâŕíĺ íŕ ě˙ńňî, ęúäĺňî äŕ číńňŕëčđŕňĺ íîâŕ\n"
+"Â ňîçč ěîěĺíň, ňđ˙áâŕ äŕ čçáĺđĺňĺ ęúäĺ íŕ őŕđä äčńęŕ ńč äŕ číńňŕëčđŕňĺ\n"
+"ńâî˙ňŕ Linux-Mandrade. Ŕęî ĺ ďđŕçĺí čëč í˙ęî˙ ńúůĺńňâóâŕůŕ îďĺđŕöčîííŕ\n"
+"čçďîëçâŕ ö˙ëîňî ďđîńňđŕíńňâî íŕ íĺăî, ůĺ ňđ˙áâŕ äŕ ăî đŕçäĺëčňĺ íŕ ä˙ëîâĺ.\n"
+"Îáůî ęŕçŕíî, đŕçäĺë˙íĺňî íŕ ä˙ëîâĺ íŕ őŕđä äčńęŕ ďđĺäńňŕâë˙âŕ ëîăč÷ĺńęî\n"
+"đŕçäĺë˙íĺ, çŕ äŕ ńĺ ńúçäŕäĺ ďđîńňđŕíńňâî çŕ číńňŕëŕöč˙ íŕ íîâŕňŕ\n"
"Linux-Mandrake ńčńňĺěŕ.\n"
"\n"
"\n"
-"Ňúé ďđîöĺńŕ íŕ đŕçäĺë˙íĺ îáčęíîâĺíî ĺ íĺîáđŕňčě, ňîé ěîćĺ äŕ ńĺ ńňîđč\n"
-"ńňđŕřĺí č ńňđ˙ńęŕů çŕ íĺîďčňĺí ďîňđĺáčňĺë.\n"
-"Ěŕăüîńíčęúň îďđîńň˙âŕ ňîçč ďđîöĺń. Ďđĺäč äŕ çŕďî÷íĺňĺ, ęîíńóëňčđŕéňĺ ńĺ\n"
-"ń đúęîâîäńňâîňî č ńĺ ńíŕáäĺňĺ ń âđĺěĺ.\n"
+"Ňúé ęŕňî ĺôĺęňčňĺ îň ďđîöĺńŕ íŕ đŕçäĺë˙íĺ îáčęíîâĺíî ńŕ íĺîáđŕňčěč, ňîé "
+"ěîćĺ\n"
+"äŕ ńĺ ńňîđč ńňđŕřĺí č ńňđ˙ńęŕů çŕ íĺîďčňĺí ďîňđĺáčňĺë. Ěŕăüîńíčęúň "
+"îďđîńň˙âŕ\n"
+"ňîçč ďđîöĺń. Ďđĺäč äŕ çŕďî÷íĺňĺ, ěîë˙, ęîíńóëňčđŕéňĺ ńĺ ń đúęîâîäńňâîňî č\n"
+"č ńĺ ďîäńčăóđĺňĺ ń âđĺěĺ.\n"
"\n"
"\n"
-"Íóćäŕĺňĺ ńĺ îň íŕé-ěŕëęî äâŕ ä˙ëŕ. Ĺäčíč˙ň ĺ çŕ ńŕěŕňŕ îďĺđŕöčîííŕ ńčńňĺěŕ,\n"
-"ŕ äđóăč˙ň ĺ çŕ âčđóňŕëíŕňŕ ďŕěĺň (íŕđč÷ŕíŕ îůĺ \"Swap\").\n"
+"Ůĺ âč ňđ˙áâŕň ďîíĺ äâŕ ä˙ëŕ. Ĺäčí âč ňđ˙áâŕ çŕ ńŕěŕňŕ îďĺđŕöčîííŕ ńčńňĺěŕ, "
+"ŕ\n"
+"äđóăč˙ň çŕ âčđňóŕëíŕňŕ ďŕěĺň (íŕđč÷ŕíŕ îůĺ Swap).\n"
"\n"
"\n"
-"Ŕęî âĺ÷ĺ ńŕ îďđĺäĺëĺíč ä˙ëîâĺ (îň ďđĺäčříŕ číńňŕëŕöč˙ č đŕçäĺë˙ůŕ "
-"ďđîăđŕěŕ),\n"
-"ňđ˙áâŕ ńŕěî äŕ čçáĺđĺňĺ ňîçč çŕ číńňŕëčđŕíĺ íŕ Linux ńčńňĺěŕňŕ.\n"
+"Ŕęî đŕçäĺë˙íĺňî âĺ÷ĺ čěŕ đŕçäĺë˙íĺ (îň ďđĺäčříŕ číńňŕëŕöč˙ čëč îň äđóă\n"
+"đŕçäĺë˙ů číńňđóěĺíň), ďđîńňî ůĺ ňđ˙áâŕ äŕ čçáĺđĺňĺ ä˙ëŕ, çŕ číńňŕëŕöč˙ íŕ\n"
+"Linux ńčńňĺěŕňŕ.\n"
"\n"
"\n"
-"Ŕęî âńĺ îůĺ íĺ ńŕ îďđĺäĺëĺíč ä˙ëîâĺ, ůĺ ňđ˙áâŕ äŕ ăč ńúçäŕäĺňĺ. Çŕ äŕ,\n"
-"íŕďđŕâčňĺ ňîâŕ, čçďîëçâŕéĺ ěŕăüîńíčęŕ ďî-ăîđĺ. Â çŕâčńčěîńň îň ńúńňŕâŕ íŕ\n"
-"őŕđä äčńęŕ âč, čěŕ í˙ęîëęî đĺřĺíč˙:\n"
+"Ŕęî ä˙ëîâĺňĺ íĺ ńŕ îďđĺäĺëĺíčě, ůĺ ňđ˙áâŕ äŕ ăč ńúçäŕäĺňĺ. Çŕ äŕ íŕďđŕâčňĺ\n"
+"ňîâŕ, čçďîëçâŕéňĺ äîńňúďíč˙ ěŕăüîńíčę ďî-ăîđĺ. Â çŕâčńčěîńň îň íŕńňđîéęčňĺ\n"
+"íŕ őŕđä äčńęŕ âč ńŕ âúçěîćíč í˙ęîëęî đĺřĺíč˙:\n"
"\n"
-"\t* Čçďîëçâŕíĺ íŕ ńúůĺńňâóâŕů ä˙ë: Ěŕăüîńíčęúň ĺ çŕń˙ęúë ĺäčí čëč ďîâĺ÷ĺ "
-"Linuxä˙ëŕ ńúůĺńňâóâŕůč íŕ ńčńňĺěŕňŕ âč. Ŕęî\n"
-"\t čńęŕňĺ äŕ ăč çŕďŕçčňĺ, čçďîëçâŕéňĺ ňŕçč îďöč˙.\n"
+"\t* Čçďîëçâŕíĺ íŕ ńúůĺńňâóâŕů ä˙ë: ěŕăüîńíčęúň ĺ çŕń˙ęúë ĺäčí čëč ďîâĺ÷ĺ "
+"ńúůĺńňâóâŕůč Linux ä˙ëŕ íŕ äčńęŕ. Ŕęî\n"
+"\t čńęŕňĺ äŕ ăč çŕďŕçčňĺ, čçáĺđĺňĺ ňîâŕ. \n"
"\n"
"\n"
-"\t* Čçňđčâŕíĺ íŕ öĺëč˙ äčńę: Ŕęî čńęŕňĺ äŕ čçňđčĺňĺ âńč÷ęč äŕííč č ä˙ëîâĺ "
-"ńúůĺńňâóâŕůč íŕ őŕđä äčńęŕ âč č äŕ ăč çŕěĺíčňĺ\n"
-"\t ń íîâŕňŕ ńč Linux-Mandrake ńčńňĺěŕ, ěîćĺňĺ äŕ čçáĺđĺňĺ ňŕçč îďöč˙. "
-"Âíčěŕâŕéňĺ ń ňîâŕ đĺřĺíčĺ - í˙ěŕ äŕ ěîćĺňĺ äŕ\n"
-"\t ńĺ îňęŕćĺňĺ, ńëĺä ęŕňî ďîňâúđäčňĺ.\n"
+"\t* Čçňđčé öĺëč˙ äčńę: ŕęî čńęŕňĺ äŕ čçňđčĺňĺ ö˙ëŕňŕ číôîđěŕöč˙ č ä˙ëîâĺ "
+"ńúůĺńňâóâŕůč íŕ äčńęŕ âč č äŕ ăč çŕěĺíčňĺ ń\n"
+"\t íîâŕňŕ ńč Linux-Mandrake ńčńňĺěŕ, ěîćĺ äŕ čçáĺđĺňĺ ňîâŕ. Âíčěŕâŕéňĺ, ń "
+"ňîâŕ đĺřĺíčĺ, í˙ěŕ äŕ ěîćĺňĺ äŕ\n"
+"\t ăî ďđîěĺíčňĺ, ńëĺä ďîňâúđćäĺíčĺňî.\n"
"\n"
"\n"
-"\t* Čçďîëçâŕíĺ íŕ ě˙ńňîňî âúđőó Windows ä˙ëŕ: Ŕęî íŕ ńčńňĺěŕňŕ âč ĺ "
-"číńňŕëčđŕí Microsoft Windows č çŕĺěŕ ö˙ëîňî\n"
-"\t ďđîńňđŕíńňâî íŕ íĺăî, ňđ˙áâŕ äŕ ńúçäŕäĺňĺ ě˙ńňî íŕ Linux. Çŕ äŕ "
-"íŕďđŕâčňĺ ňîâŕ, ěîćĺňĺ äŕ čçňđčĺňĺ äŕííčňĺ č ä˙ëŕ ń\n"
-"\t Microsoft Windows. Ďđîě˙íŕ íŕ ăîëĺěčíŕňŕ ěîćĺ äŕ ńňŕíĺ č áĺç çŕăóáŕ íŕ "
-"äŕííč. Ňîâŕ đĺřĺíčĺ ńĺ ďđĺďîđú÷âŕ, ŕęî čńęŕňĺ\n"
-"\t äŕ čçďîëçâŕňĺ ĺäíîâđĺěĺííî Linux-Mandrake č Microsoft Windows íŕ ĺäčí č "
-"ńúůč ęîěďţňúđ.\n"
+"\t* Čçďîëçâŕé ńâîáîäíîňî ďđîńňđŕíńňâî íŕ Windows ä˙ë: ŕęî čěŕňĺ číńňŕëčđŕí "
+"Microsoft Windows íŕ äčńęŕ ńč č\n"
+"\t çŕĺěŕ ö˙ëîňî ďđîńňđŕíńňâî íŕ íĺăî, ňđ˙áâŕ äŕ ńúçäŕäĺňĺ ňŕęîâŕ č çŕ "
+"Linux. Çŕ äŕ ăî íŕďđŕâčňĺ, ěîćĺňĺ äŕ\n"
+"\t čçňđčĺňĺ Microsoft Windows ä˙ëŕ č äŕííčňĺ (âčć \"Čçňđčé öĺëč˙ äčńę\" čëč "
+"\"Ĺęńďĺđĺí đĺćčě\" đĺřĺíč˙ňŕ) čëč äŕ ďđîěĺíčňĺ\n"
+"\t ăîëĺěčíŕňŕ íŕ Microsoft Windows ä˙ëŕ. Ďđîě˙íŕňŕ ěîćĺ äŕ áúäĺ íŕďđŕâĺíŕ "
+"áĺç çŕăóáŕ íŕ äŕííč. Ňîâŕ đĺřĺíčĺ ńĺ\n"
+"\t ďđĺďîđú÷âŕ, ŕęî čńęŕňĺ äŕ ďîëçâŕňĺ Linux-Mandrake č Microsoft Windows íŕ "
+"ĺäčí č ńúů ęîěďţňúđ.\n"
"\n"
"\n"
-"\t Ďđĺäč äŕ âçĺěĺňĺ ňîâŕ đĺřĺíčĺ, ěîë˙, çíŕéňĺ ÷ĺ ăîëĺěčíŕňŕ íŕ Microsoft "
-"Windows\n"
-"\t ä˙ëŕ âč ůĺ ĺ ďî-ěŕëęŕ, îňęîëęîňî äî ńĺăŕ. Ňîâŕ îçíŕ÷ŕâŕ, ÷ĺ ůĺ čěŕňĺ "
-"ďî-ěŕëęî ě˙ńňî ďîä Microsoft Windows,\n"
-"äŕ ńúőđŕí˙âŕňĺ äŕííč č číńňŕëčđŕňĺ íîâ ńîôňóĺđ.\n"
+"\t Ďđĺäč äŕ čçáĺđĺňĺ ňîâŕ đĺřĺíčĺ, ěîë˙, đŕçáĺđĺňĺ, ÷ĺ ăîëĺěčíŕňŕ íŕ âŕřč˙ "
+"Microsoft\n"
+"\t Windows ä˙ë ůĺ ĺ ďî-ěŕëęŕ, îňęîëęîňî ĺ ńĺăŕ. Ňîâŕ çíŕ÷č, ÷ĺ ůĺ čěŕňĺ ďî "
+"ěŕëęî ńâîáîäíî ďđîńňđŕíńňâî ďîä\n"
+"\t Microsoft Windows, ęúäĺňî äŕ ńúőđŕí˙âŕňĺ äŕííč č číńňŕëčđŕňĺ ńîôňóĺđ.\n"
"\n"
"\n"
-"\t* Ĺęńďĺđňĺí đĺćčě: Ŕęî čńęŕňĺ äŕ đŕçäĺë˙ňĺ đú÷íî őŕđä äčńęŕ ńč, ěîćĺňĺ äŕ "
-"čçáĺđĺňĺ ňŕçč îďöč˙. Âíčěŕâŕéňĺ, ŕęî\n"
-"\t čçáĺđĺňĺ ňîâŕ đĺřĺíčĺ. Ňî ĺ ěîůíî, íî îďŕńíî. Ěîćĺňĺ ěíîăî ëĺńíî äŕ "
-"čçăóáčňĺ äŕííč. Ňŕęŕ ÷ĺ íĺ čçáčđŕéňĺ\n"
-"\t ňîâŕ đĺřĺíčĺ, îńâĺí ŕęî íĺ çíŕĺňĺ ęŕęâî ďđŕâčňĺ."
+"\t* Ĺęńďĺđňĺí đĺćčě: Ŕęî čńęŕňĺ äŕ đŕçäĺëčňĺ đú÷íî äčńęŕ ńč, ěîćĺňĺ äŕ "
+"čçáĺđĺňĺ ňîâŕ. Áúäĺňĺ âíčěŕňĺëíč ďđĺäč\n"
+"\t äŕ čçáĺđĺňĺ ňîâŕ đĺřĺíčĺ. Ňî ĺ ěîůíî, íî ěíîăî îďŕńíî. Ěîćĺ äŕ çŕăóáčňĺ "
+"âńč÷ęč äŕííč ěíîăî ëĺńíî. Ňŕęŕ ÷ĺ\n"
+"\t íĺ čçáčđŕéňĺ ňîâŕ đĺřĺíčĺ, îńâĺí ŕęî íĺ çíŕĺňĺ ęŕęâî ďđŕâčňĺ."
#: ../../help.pm_.c:160
-#, fuzzy
msgid ""
"At this point, you need to choose what\n"
"partition(s) to use to install your new Linux-Mandrake system. If "
@@ -1961,7 +2341,7 @@ msgid ""
"hard drive.\n"
"\n"
"\n"
-" * Auto allocate:: this option allows you to automatically create Ext2 and "
+" * Auto allocate: this option allows you to automatically create Ext2 and "
"swap partitions in free space of your\n"
" hard drive.\n"
"\n"
@@ -2008,80 +2388,18 @@ msgid ""
"\n"
" * Ctrl-d to delete a partition\n"
"\n"
-" * Ctrl-m to set the mount point"
-msgstr ""
-"Ńĺăŕ, ňđ˙áâŕ äŕ čçáĺđĺňĺ ęîé(č) ä˙ë(îâĺ)\n"
-"äŕ čçďîëçâŕňĺ çŕ číńňŕëčđŕíĺ íŕ Linux-Mandrake ńčńňĺěŕňŕ ńč. Ŕęî ä˙ëîâĺňĺ\n"
-"âĺ÷ĺ ńŕ îďđĺäĺëĺíč (îň ďđĺäőîäíŕ číńňŕëŕöč˙ íŕ GNU/Linux čëč îň äđóăŕ "
-"đŕçäĺë˙ůŕ\n"
-"ďđîăđŕěŕ), ěîćĺňĺ äŕ čçďîëçâŕňĺ ńúůĺńňâóâŕůčňĺ ä˙ëîâĺ. Číŕ÷ĺ ňđ˙áâŕ äŕ "
-"îďđĺäĺëčňĺ\n"
-"ä˙ëîâĺ íŕ őŕđä äčńęŕ.\n"
-"\n"
-"\n"
-"Çŕ äŕ ńúçäŕäĺňĺ ä˙ëîâĺ, ňđ˙áâŕ ďúđâî äŕ ďîńî÷čňĺ őŕđä äčńę. Ěîćĺňĺ äŕ\n"
-"ďîńî÷čňĺ äčńę çŕ đŕçäĺë˙íĺ, ęŕňî öúęíĺňĺ íŕ \"hda\" çŕ ďúđâîňî IDE\n"
-"óńňđîéńňâî, \"hdb\" çŕ âňîđî IDE óńňđîéńňâî čëč \"sda\" çŕ ďúđâîňî SCSI\n"
-"óńňđîéńňâî č ň.í..\n"
-"\n"
-"\n"
-"Çŕ äŕ đŕçäĺëčňĺ ďîńî÷ĺíč˙ äčńę, ěîćĺňĺ äŕ čçáĺđĺňĺ ńëĺäíčňĺ îďöčč:\n"
+" * Ctrl-m to set the mount point\n"
+" \n"
"\n"
-" * Čç÷čńňč âńč÷ęî: ňŕçč îďöč˙ čçňđčâŕ âńč÷ęč ä˙ëîâĺ äîńňúďíč íŕ ďîńî÷ĺíč˙\n"
-" őŕđä äčńę.\n"
-"\n"
-"\n"
-" * Ŕâňîěŕňč÷íî ńúçäŕâŕíĺ: Ňŕçč îďöč˙ âč ďîçâîë˙âŕ äŕ ńúçäŕäĺňĺ ŕâňîěŕňč÷íî "
-"ext2 č swap ä˙ëîâĺ íŕ ńâîáîäíîňî\n"
-" ďđîńňđŕíńňâî íŕ őŕđä äčńęŕ ńč.\n"
-"\n"
-"\n"
-" * Ńďŕń˙âŕíĺ íŕ ňŕáëčöŕňŕ ń ä˙ëîâĺ: ŕęî ňŕáëčöŕňŕ âč ń ä˙ëîâĺ ĺ ďîâđĺäĺíŕ, "
-"ěîćĺňĺ äŕ îďčňŕňĺ äŕ ˙ âúçńňŕíîâčňĺ, ęŕňî\n"
-" čçďîëçâŕňĺ ňŕçč îďöč˙. Ěîë˙, âíčěŕâŕéňĺ č çŕďîěíĺňĺ, ÷ĺ ěîćĺ äŕ ńĺ "
-"ďđîâŕëč.\n"
-"\n"
-"\n"
-" * Îňěĺíč: ěîćĺňĺ äŕ čçďîëçâŕňĺ ňŕçč îďöč˙, çŕ äŕ îňęŕćĺňĺ ďđîěĺíčňĺ.\n"
-"\n"
-"\n"
-" * Ďđĺçŕđĺäč: ěîćĺňĺ äŕ čçďîëçâŕňĺ ňŕçč îďöč˙, çŕ äŕ îňěĺíčňĺ âńč÷ęč "
-"ďđîěĺíč č äŕ çŕđĺäčňĺ ďúđâč÷íŕňŕ ňŕáëčöŕ ń ä˙ëîâĺ.\n"
-"\n"
-"\n"
-" * Ěŕăüîńíčę: ŕęî čńęŕňĺ äŕ čçďîëçâŕňĺ ěŕăüîńíčę äŕ đŕçäĺëč äčńęŕ âč, "
-"ěîćĺňĺ äŕ čçďîëçâŕňĺ ňŕçč îďöč˙. Ďđĺďîđú÷čňĺëíŕ\n"
-" ĺ, ŕęî íĺ ńňĺ ěíîăî çŕďîçíŕňč ń đŕçäĺë˙íĺňî.\n"
-"\n"
-"\n"
-" * Âúçńňŕíîâ˙âŕíĺ îň äčńęĺňŕ: ŕęî ńňĺ çŕďŕçčëč ňŕáëčöŕňŕ ńč ń ä˙ëîâĺ íŕ "
-"äčńęĺňŕ ďđč ďđĺäčříŕ číńňŕëŕöč˙, ěîćĺňĺ\n"
-" äŕ ˙ âúçńňŕíîâčňĺ ń ňŕçč îďöč˙.\n"
-"\n"
-"\n"
-" * Çŕďčń íŕ äčńęĺňŕ: ŕęî čńęŕňĺ äŕ çŕďŕçčňĺ ňŕáëčöŕňŕ ńč ń ä˙ëîâĺ íŕ "
-"äčńęĺňŕ, çŕ äŕ ěîćĺňĺ äŕ ˙ âúçńňŕíîâčňĺ,\n"
-" ěîćĺňĺ äŕ čçďîëçâŕňĺ ňŕçč îďöč˙. Ńčëíî ńĺ ďđĺďîđú÷âŕ óďîňđĺáŕňŕ č.\n"
-"\n"
-"\n"
-" * Ăîňîâî: ęîăŕňî ńâúđřčňĺ ń đŕçäĺë˙íĺňî íŕ őŕđä äčńęŕ ńč, čçďîëçâŕéňĺ "
-"ňŕçč îďöč˙, çŕ äŕ çŕďŕçčňĺ ďđîěĺíčňĺ.\n"
-"\n"
-"\n"
-"Çŕ âŕřŕ číôîđěŕöč˙, ěîćĺňĺ äŕ ńňčăíĺňĺ äî âń˙ęŕ îďöč˙ čçďîëçâŕéęč "
-"ęëŕâčŕňóđŕňŕ: ěčíŕâŕéňĺ ďđĺç ä˙ëîâĺňĺ ń Tab č ńňđĺëęčňĺ\n"
-"Íŕăîđĺ/Íŕäîëó.\n"
-"\n"
-"\n"
-"Ęîăŕňî čçáĺđĺňĺ ä˙ë, ěîćĺňĺ äŕ čçďîëçâŕňĺ:\n"
-"\n"
-" * Ctrl-C, çŕ äŕ ńúçäŕäĺňĺ íîâ ä˙ë (ęîăŕňî ĺ čçáđŕí ďđŕçĺí ä˙ë)\n"
-"\n"
-" * Ctrl-D, çŕ äŕ čçňđčĺňĺ ä˙ë\n"
-"\n"
-" * Ctrl-M, çŕ äŕ čçáĺđĺňĺ ňî÷ęŕ íŕ ěîíňčđŕíĺ"
+" \n"
+"If you are installing on a PPC Machine, you will want to create a small HFS "
+"'bootstrap' partition of at least 1MB for use\n"
+"by the yaboot bootloader. If you opt to make the partition a bit larger, say "
+"50MB, you may find it a useful place to store \n"
+"a spare kernel and ramdisk image for emergency boot situations."
+msgstr ""
-#: ../../help.pm_.c:218
+#: ../../help.pm_.c:224
msgid ""
"Above are listed the existing Linux partitions detected on\n"
"your hard drive. You can keep choices make by the wizard, they are good for "
@@ -2158,7 +2476,7 @@ msgstr ""
"Ďđč SCSI óńňđîéńňâŕ, \"a\" îçíŕ÷ŕâŕ \"ďúđâč őŕđä äčńę\", \"b\" îçíŕ÷ŕâŕ "
"\"âňîđč őŕđä äčńę\" č ň.í.."
-#: ../../help.pm_.c:252
+#: ../../help.pm_.c:258
msgid ""
"Choose the hard drive you want to erase to install your\n"
"new Linux-Mandrake partition. Be careful, all data present on it will be "
@@ -2170,7 +2488,7 @@ msgstr ""
"áúäŕň çŕăóáĺíč\n"
"č í˙ěŕ äŕ ěîăŕň äŕ ńĺ âúçńňŕíîâ˙ň."
-#: ../../help.pm_.c:257
+#: ../../help.pm_.c:263
msgid ""
"Click on \"OK\" if you want to delete all data and\n"
"partitions present on this hard drive. Be careful, after clicking on \"OK\", "
@@ -2193,7 +2511,7 @@ msgstr ""
"Öúęíĺňĺ \"Îňě˙íŕ\", çŕ äŕ îňěĺíčňĺ ňŕçč îďĺđŕöč˙ áĺç çŕăóáŕ äŕ äŕííčňĺ č\n"
"ä˙ëîâĺňĺ ńúůĺńňâóâŕůč íŕ ňîçč őŕđä äčńę."
-#: ../../help.pm_.c:267
+#: ../../help.pm_.c:273
msgid ""
"More than one Microsoft Windows partition have been\n"
"detected on your hard drive. Please choose the one you want resize to "
@@ -2266,11 +2584,11 @@ msgstr ""
"\"Windows čěĺňî\" ĺ áóęâŕňŕ íŕ őŕđä äčńęŕ âč ďîä Windows (ďúđâč˙ň äčńę čëč\n"
"ä˙ë ńĺ íŕđč÷ŕ \"C:\")."
-#: ../../help.pm_.c:300
+#: ../../help.pm_.c:306
msgid "Please be patient. This operation can take several minutes."
msgstr "Ěîë˙, áúäĺňĺ ňúđďĺëčâč. Ňŕçč îďĺđŕöč˙ ěîćĺ äŕ îňíĺěĺ í˙ęîëęî ěčíóňč."
-#: ../../help.pm_.c:303
+#: ../../help.pm_.c:309
msgid ""
"Any partitions that have been newly defined must be\n"
"formatted for use (formatting meaning creating a filesystem).\n"
@@ -2330,7 +2648,7 @@ msgstr ""
"Öúęíĺňĺ \"Îňě˙íŕ\", ŕęî čńęŕňĺ äŕ čçáĺđĺňĺ äđóăč ä˙ëîâĺ, íŕ ęîčňî äŕ\n"
"číńňŕëčđŕňĺ íîâŕňŕ ńč Linux-Mandrake îďĺđŕöčîíí ńčńňĺěŕ."
-#: ../../help.pm_.c:329
+#: ../../help.pm_.c:335
msgid ""
"You may now select the group of packages you wish to\n"
"install or upgrade.\n"
@@ -2359,7 +2677,7 @@ msgstr ""
"ďŕęĺňč\";\n"
"â ňîçč ńëó÷ŕé, ůĺ ňđ˙áâŕ äŕ îáőîäčňĺ ďîâĺ÷ĺ îň 1000 ďŕęĺňŕ ..."
-#: ../../help.pm_.c:341
+#: ../../help.pm_.c:347
msgid ""
"You can now choose individually all the packages you\n"
"wish to install.\n"
@@ -2398,7 +2716,7 @@ msgstr ""
"ňčőîěúëęîě\n"
"äŕ čçęëţ÷č í˙ęîč äđóăč ďŕęĺňč, ęîčňî çŕâčń˙ň îň íĺăî."
-#: ../../help.pm_.c:358
+#: ../../help.pm_.c:364
msgid ""
"If you have all the CDs in the list above, click Ok. If you have\n"
"none of those CDs, click Cancel. If only some CDs are missing, unselect "
@@ -2410,8 +2728,7 @@ msgstr ""
"čçęëţ÷ĺňĺ ăč,\n"
"č íŕňčńíĺňĺ Ok."
-#: ../../help.pm_.c:363
-#, fuzzy
+#: ../../help.pm_.c:369
msgid ""
"Your new Linux-Mandrake operating system is currently being\n"
"installed. This operation should take a few minutes (it depends on size you\n"
@@ -2420,14 +2737,14 @@ msgid ""
"\n"
"Please be patient."
msgstr ""
-"Íîâŕňŕ âč Linux-Mandrake îďĺđŕöčîííŕ ńčńňĺěŕ ĺ číńňŕëčđŕíŕ.\n"
-"Ňŕçč îďĺđŕöč˙ áč ňđ˙áâŕëî äŕ îňíĺěĺ í˙ęîëęî ěčíóňč (ňîâŕ çŕâčńč îň\n"
-"čçáđŕíŕňŕ ăîëĺěčíŕňŕ íŕ číńňŕëŕöč˙ňŕ č îň ńęîđîńňňŕ íŕ ęîěďţňúđŕ âč).\n"
+"Íîâŕňŕ âč Linux-Mandrake îďĺđŕöčîííŕ ńčńňĺěŕ â ěîěĺíňŕ ńĺ číńňŕëčđŕ.\n"
+"Ňŕçč îďĺđŕöč˙ ůĺ îňíĺěĺ í˙ęîëęî ěčíóňč (çŕâčńč îň čçáđŕíŕňŕ ăîëĺěčíŕňŕ íŕ\n"
+"číńňŕëŕöč˙ňŕ č ńęîđîńňňŕ íŕ ęîěďţňúđŕ âč).\n"
"\n"
"\n"
"Ěîë˙, áúäĺňĺ ňúđďĺëčâč."
-#: ../../help.pm_.c:371
+#: ../../help.pm_.c:377
msgid ""
"You can now test your mouse. Use buttons and wheel to verify\n"
"if settings are good. If not, you can click on \"Cancel\" to choose another\n"
@@ -2437,7 +2754,7 @@ msgstr ""
"ďđîâĺđčňĺ äŕëč íŕńňđîéęčňĺ ńŕ íŕđĺä. Ŕęî íĺ, ěîćĺňĺ äŕ öúęíĺňĺ \"Îňě˙íŕ\",\n"
"çŕ äŕ čçáĺđĺňĺ äđóă äđŕéâĺđ."
-#: ../../help.pm_.c:376
+#: ../../help.pm_.c:382
msgid ""
"Please select the correct port. For example, the COM1\n"
"port under MS Windows is named ttyS0 under GNU/Linux."
@@ -2445,7 +2762,7 @@ msgstr ""
"Ěîë˙, čçáĺđĺňĺ âĺđíč˙ ďîđň. Íŕďđčěĺđ, ďîđňúň COM1\n"
"ďîä Windows ďîä GNU/Linux ńĺ íŕđč÷ŕ ttyS0."
-#: ../../help.pm_.c:380
+#: ../../help.pm_.c:386
msgid ""
"If you wish to connect your computer to the Internet or\n"
"to a local network please choose the correct option. Please turn on your "
@@ -2476,8 +2793,7 @@ msgstr ""
"Ŕęî čńęŕňĺ äŕ íŕńňđîčňĺ ěđĺćŕňŕ ďî-ęúńíî, ńëĺä číńňŕëŕöč˙ňŕ, čëč ńňĺ "
"ďđčęëţ÷čëč ń íŕńňđîéęŕňŕ íŕ ěđĺćŕňŕ, čçáĺđĺňĺ \"Ăîňîâî\"."
-#: ../../help.pm_.c:393
-#, fuzzy
+#: ../../help.pm_.c:399
msgid ""
"No modem has been detected. Please select the serial port on which it is "
"plugged.\n"
@@ -2486,13 +2802,13 @@ msgid ""
"For information, the first serial port (called \"COM1\" under Microsoft\n"
"Windows) is called \"ttyS0\" under Linux."
msgstr ""
-"Íĺ áĺ îňęđčň ěîäĺě. Ěîë˙, ďîńî÷ĺňĺ ńĺđčéíč˙ ďîđň, ęúě ęîéňî ĺ ńâúđçŕí.\n"
+"Íĺ áĺřĺ îňęđčň ěîäĺě. Ěîë˙, ďîńî÷ĺňĺ ńĺđčéíč˙ ďîđň, ęúě ęîéňî ĺ ńâúđçŕí.\n"
"\n"
"\n"
"Çŕ číôîđěŕöč˙, ďúđâč˙ň ńĺđčĺí ďîđň (íŕđč÷ŕí \"COM1\" ďîä Microsoft\n"
"Windows) ńĺ íŕđč÷ŕ \"ttyS0\" ďîä Linux."
-#: ../../help.pm_.c:400
+#: ../../help.pm_.c:406
msgid ""
"You may now enter dialup options. If you don't know\n"
"or are not sure what to enter, the correct informations can be obtained "
@@ -2509,7 +2825,7 @@ msgstr ""
"ňóę, ňŕçč číôîđěŕöč˙ ůĺ áúäĺ âçĺňŕ Číňĺđíĺň äîńňŕâ÷čęŕ âč ďî âđĺěĺ íŕ\n"
"ńâúđçâŕíĺ."
-#: ../../help.pm_.c:407
+#: ../../help.pm_.c:413
msgid ""
"If your modem is an external modem, please turn on it now to let DrakX "
"detect it automatically."
@@ -2517,11 +2833,11 @@ msgstr ""
"Ŕęî ěîäĺěúň âč ĺ âúířĺí, ěîćĺ, âęëţ÷ĺňĺ ăî ńĺăŕ, çŕ äŕ ďîçâîëčňĺ íŕ DrakX äŕ "
"ăî çŕńĺ÷ĺ ŕâňîěŕňč÷íî."
-#: ../../help.pm_.c:410
+#: ../../help.pm_.c:416
msgid "Please turn on your modem and choose the correct one."
msgstr "Ěîë˙, âęëţ÷ĺňĺ ěîäĺěŕ ńč č čçáĺđĺňĺ ďîäőîä˙ůč˙."
-#: ../../help.pm_.c:413
+#: ../../help.pm_.c:419
msgid ""
"If you are not sure if informations above are\n"
"correct or if you don't know or are not sure what to enter, the correct\n"
@@ -2537,7 +2853,7 @@ msgstr ""
"DNS (name server), ň˙ ůĺ áúäĺ âçĺňŕ îň Číňĺđíĺň äîńňŕâ÷čęŕ âč ďî âđĺěĺ íŕ\n"
"ńâúđçâŕíĺ."
-#: ../../help.pm_.c:420
+#: ../../help.pm_.c:426
msgid ""
"You may now enter your host name if needed. If you\n"
"don't know or are not sure what to enter, the correct informations can be\n"
@@ -2547,7 +2863,7 @@ msgstr ""
"çíŕĺňĺ čëč íĺ ńňĺ ńčăóđíč ęŕęâî ňđ˙áâŕ äŕ âúâĺäĺňĺ, ń ďđŕâčëíŕ číôîđěŕöč˙\n"
"ěîćĺňĺ äŕ ńĺ ńäîáčĺňĺ îň Číňĺđíĺň äîńňŕâ÷čęŕ ńč."
-#: ../../help.pm_.c:425
+#: ../../help.pm_.c:431
msgid ""
"You may now configure your network device.\n"
"\n"
@@ -2582,7 +2898,7 @@ msgstr ""
" îň ńňîéíîńň çŕ \"IP ŕäđĺń\". Ŕęî íĺ çíŕĺňĺ čëč íĺ ńňĺ ńčăóđíč ęŕęâî "
"ňđ˙áâŕ äŕ âúâĺäĺňĺ, ďîďčňŕéňĺ ěđĺćîâč˙ ńč ŕäěčíčńňđŕňîđ."
-#: ../../help.pm_.c:437
+#: ../../help.pm_.c:443
msgid ""
"You may now enter your host name if needed. If you\n"
"don't know or are not sure what to enter, ask your network administrator."
@@ -2590,7 +2906,7 @@ msgstr ""
"Ńĺăŕ ěîćĺňĺ äŕ âúâĺäĺňĺ čěĺňî íŕ őîńňŕ ńč. Ŕęî íĺ çíŕĺňĺ\n"
"čëč íĺ ńňĺ ńčăóđíč ęŕęâî äŕ âúâĺäĺňĺ, ďîďčňŕéňĺ ěđĺćîâč˙ ńč ŕäěčíčńňđŕňîđ."
-#: ../../help.pm_.c:441
+#: ../../help.pm_.c:447
msgid ""
"You may now enter your host name if needed. If you\n"
"don't know or are not sure what to enter, leave blank."
@@ -2598,7 +2914,7 @@ msgstr ""
"Ńĺăŕ ěîćĺňĺ äŕ âúâĺäĺňĺ čěĺňî íŕ őîńňŕ ńč, ŕęî ňđ˙áâŕ. Ŕęî\n"
"íĺ çíŕĺňĺ čëč íĺ ńňĺ ńčăóđíč ęŕęâî äŕ âúâĺäĺňĺ, îńňŕâĺňĺ ăî ďđŕçíî."
-#: ../../help.pm_.c:445
+#: ../../help.pm_.c:451
msgid ""
"You may now enter dialup options. If you're not sure what to enter, the\n"
"correct information can be obtained from your ISP."
@@ -2606,7 +2922,7 @@ msgstr ""
"Ńĺăŕ ěîćĺňĺ äŕ âúâĺäĺňĺ îďöččňĺ çŕ íŕáčđŕíĺ. Ŕęî íĺ ńňĺ ńčăóđíč,\n"
"ďđŕâčëíŕ číôîđěŕöč˙ ěîćĺňĺ äŕ ďîëó÷čňĺ îň Číňĺđíĺň äîńňŕâ÷čęŕ ńč."
-#: ../../help.pm_.c:449
+#: ../../help.pm_.c:455
msgid ""
"If you will use proxies, please configure them now. If you don't know if\n"
"you should use proxies, ask your network administrator or your ISP."
@@ -2614,7 +2930,7 @@ msgstr ""
"Ŕęî ůĺ čçďîëçâŕňĺ proxy ńúđâúđč, ěîë˙, íŕńňđîéňĺ ăč ńĺăŕ. Ŕęî íĺçíŕĺňĺ,\n"
"ďîďčňŕéňĺ ěđĺćîâč˙ ŕäěčíčńňđŕňîđ čëč Číňĺđíĺň äîńňŕâ÷čęŕ ńč."
-#: ../../help.pm_.c:453
+#: ../../help.pm_.c:459
msgid ""
"You can install cryptographic package if your internet connection has been\n"
"set up correctly. First choose a mirror where you wish to download packages "
@@ -2634,11 +2950,11 @@ msgstr ""
"Îňáĺëĺćĺňĺ, ÷ĺ ňđ˙áâŕ äŕ čçáĺđĺňĺ îăëĺäŕëĺí ńŕéň č ęđčďňîăđŕôńęč ďŕęĺňč,\n"
"ńúîáđŕçíî âŕřĺňî çŕęîíîäŕňĺëńňâî."
-#: ../../help.pm_.c:462
+#: ../../help.pm_.c:468
msgid "You can now select your timezone according to where you live."
msgstr "Ńĺăŕ ěîćĺňĺ äŕ ďîńî÷čňĺ âđĺěĺâŕňŕ çîíŕ ńďđ˙ěî ěĺńňîćčâĺĺíĺňî ńč."
-#: ../../help.pm_.c:465
+#: ../../help.pm_.c:471
msgid ""
"GNU/Linux manages time in GMT (Greenwich Manage\n"
"Time) and translates it in local time according to the time zone you have\n"
@@ -2654,7 +2970,7 @@ msgstr ""
"\n"
"Ŕęî čçďîëçâŕňĺ Microsoft Windows íŕ ňîçč ęîěďţňúđ, čçáĺđĺňĺ \"Íĺ\"."
-#: ../../help.pm_.c:473
+#: ../../help.pm_.c:479
msgid ""
"You may now choose which services you want to start at boot time.\n"
"\n"
@@ -2683,7 +2999,7 @@ msgstr ""
"áúäŕň âęëţ÷ĺíč íŕ ńúđâúđ.\n"
"Ďî ďđčíöčď, čçáčđŕéňĺ ńŕěî óńëóăčňĺ, îň ęîčňî íŕčńňčíŕ ńĺ íóćäŕĺňĺ."
-#: ../../help.pm_.c:486
+#: ../../help.pm_.c:492
msgid ""
"You can configure a local printer (connected to your computer) or remote\n"
"printer (accessible via a Unix, Netware or Microsoft Windows network)."
@@ -2691,7 +3007,7 @@ msgstr ""
"Ěîćĺňĺ äŕ íŕńňđîčňĺ ëîęŕëĺí ďđčíňĺđ (ńâúđçŕí ęúě ěŕřčíŕňŕ âč) čëč îňäŕëĺ÷ĺí\n"
"ďđčíňĺđ (äîńňúďĺí ÷đĺç Unix, Netware čëč Microsoft Windows ěđĺćŕ)."
-#: ../../help.pm_.c:490
+#: ../../help.pm_.c:496
msgid ""
"If you wish to be able to print, please choose one printing system between\n"
"CUPS and LPR.\n"
@@ -2725,7 +3041,7 @@ msgstr ""
"\n"
"Ŕęî í˙ěŕňĺ ďđčíňĺđ, öúęíĺňĺ \"Íčęŕęúâ\"."
-#: ../../help.pm_.c:505
+#: ../../help.pm_.c:511
msgid ""
"GNU/Linux can deal with many types of printer. Each of these types requires\n"
"a different setup.\n"
@@ -2744,7 +3060,7 @@ msgid ""
"(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
msgstr ""
"GNU/Linux ěîćĺ äŕ ďîääúđćŕ í˙ęîëęî ňčďŕ ďđčíňĺđč. Âńĺęč îň ňĺçč ňčďîâĺ\n"
-"čçčńęâŕ đŕçëč÷íŕ íŕńňđîéęŕ.\n"
+"čçčńęâŕ đŕçëč÷íŕ óńňŕíîâęŕ.\n"
"\n"
"\n"
"Ŕęî ďđčíňĺđúň ĺ ôčçč÷ĺńęč ńâúđçŕí ęúě ęîěďţňúđŕ âč, čçáĺđĺňĺ \"Ëîęŕëĺí\n"
@@ -2760,8 +3076,7 @@ msgstr ""
"(čëč íŕ Unix ěŕřčíŕ čçďîëçâŕůŕ SMB ďđîňîęîë), čçáĺđĺňĺ \"SMB/Windows "
"95/98/NT\"."
-#: ../../help.pm_.c:521
-#, fuzzy
+#: ../../help.pm_.c:527
msgid ""
"Please turn on your printer before continuing to let DrakX detect it.\n"
"\n"
@@ -2796,23 +3111,24 @@ msgstr ""
"čěĺ íŕ ďđčíňĺđ. Ňŕęŕ ÷ĺ ňđ˙áâŕ äŕ čěŕňĺ\n"
"ďđčíňĺđ íŕđĺ÷ĺí \"lp\".\n"
" Ŕęî čěŕňĺ ńŕěî ĺäčí ďđčíňĺđ, ěîćĺňĺ äŕ čçďîëçâŕňĺ í˙ęîëęî čěĺíŕ çŕ "
-"íĺăî. Ďđîńňî ňđ˙áâŕ äŕ ăč îňäĺëčňĺ ń pipe\n"
+"íĺăî. Ňđ˙áâŕ ńŕěî äŕ ăč îňäĺëčňĺ ń pipe\n"
" ńčěâîëŕ (\"|\"). Ňŕęŕ ÷ĺ, ŕęî ďđĺäďî÷čňŕňĺ ďî-ńěčńëĺíî čěĺ, ěîćĺňĺ äŕ "
"ăî ńëîćčňĺ ďúđâî, íŕďđ. \"My printer|lp\".\n"
-" Ďđčíňĺđúň ńúäúđćŕů \"lp\" â čěĺňî(ŕňŕ) ńč, ůĺ ńĺ ďîëçâŕ ďî "
+" Ďđčíňĺđúň ńúäúđćŕů \"lp\" â čěĺňî(ŕňŕ) ńč ůĺ ńĺ ďîëçâŕ ďî "
"ďîäđŕçáčđŕíĺ.\n"
"\n"
"\n"
-" * Îďčńŕíčĺ: Ňîâŕ ĺ íĺçŕäúëćčňĺëíî, íî ěîćĺ äŕ âëĺçĺ â óďîňđĺáŕ, ŕęî čěŕňĺ "
-"í˙ęîëęî ďđčíňĺđŕ ńâúđçŕíč ęúě ęîěďţňúđŕ ńč\n"
-"čëč ŕęî ďîçâîë˙âŕňĺ íŕ äđóăč ęîěďţňđč äîńňúď äî ňîçč ďđčíňĺđ.\n"
+" * Îďčńŕíčĺ: Ňîâŕ ĺ íĺçŕäúëćčňĺëíî, íî ěîćĺ äŕ ĺ ďîëĺçíî, ŕęî čěŕ í˙ęîëęî "
+"ďđčíňĺđŕ ńâúđçŕíč ęúě ęîěďţňúđŕ âč čëč ŕęî\n"
+" đŕçđĺřŕâŕňĺ äîńňúď äî íĺăî íŕ äđóăč ęîěďţňđč.\n"
"\n"
"\n"
" * Ěĺńňîďîëîćĺíčĺ: ŕęî čńęŕňĺ äŕ äŕäĺňĺ číôîđěŕöč˙ çŕ ěĺńňîďîëîćĺíčĺňî\n"
-" íŕ ďđčíňĺđŕ ńč, äŕéňĺ ˙ ňóę (ěîćĺňĺ äŕ íŕďčřĺňĺ ęŕęâîňî ńč čńęŕňĺ,\n"
+" íŕ ďđčíňĺđŕ ńč, íŕďđŕâĺňĺ ăî ňóę (ěîćĺňĺ äŕ íŕďčřĺňĺ ęŕęâîňî ńč "
+"čńęŕňĺ,\n"
" íŕďđčěĺđ \"2-đč ĺňŕć\").\n"
-#: ../../help.pm_.c:542
+#: ../../help.pm_.c:548
msgid ""
"You need to enter some informations here.\n"
"\n"
@@ -2878,7 +3194,7 @@ msgstr ""
" Ŕęî čńęŕňĺ äîńňúď äî ďđčíňĺđ íŕěčđŕů ńĺ íŕ NetWare ěđĺćŕ, čçáĺđĺňĺ "
"\"NetWare\".\n"
-#: ../../help.pm_.c:567
+#: ../../help.pm_.c:573
msgid ""
"Your printer has not been detected. Please enter the name of the device on\n"
"which it is connected.\n"
@@ -2896,12 +3212,11 @@ msgstr ""
"Çŕ číôîđěŕöč˙, ďîâĺ÷ĺňî ďđčíňĺđč ńŕ ńâúđçŕíč íŕ ďúđâč˙ ďŕđŕëĺëĺí ďîđň. Ňîçč\n"
"ńĺ íŕđč÷ŕ \"/dev/lp0\" ďîä GNU/Linux č \"LPT1\" ďîä Microsoft Windows."
-#: ../../help.pm_.c:575
+#: ../../help.pm_.c:581
msgid "You must now select your printer in the above list."
msgstr "Ńĺăŕ ěîćĺňĺ äŕ čçáĺđĺňĺ ďđčíňĺđ îň ńďčńúęŕ ďî-ăîđĺ."
-#: ../../help.pm_.c:578
-#, fuzzy
+#: ../../help.pm_.c:584
msgid ""
"Please select the right options according to your printer.\n"
"Please see its documentation if you don't know what choose here.\n"
@@ -2910,14 +3225,14 @@ msgid ""
"You will be able to test your configuration in next step and you will be "
"able to modify it if it doesn't work as you want."
msgstr ""
-"Ěîë˙, čçáĺđĺňĺ ďîäőîä˙ůčňĺ îďöčč ńďîđĺä ďđčíňĺđŕ âč.\n"
-"Ěîë˙, ďîăëĺäíĺňĺ äîęóěĺíňŕöč˙ňŕ ěó, ŕęî íĺ çíŕĺňĺ ęŕęâî äŕ čçáĺđĺňĺ ňóę.\n"
+"Ěîë˙, čçáĺđĺňĺ ďîäőîä˙ůč çŕ ďđčíňĺđŕ âč íŕńňîéęč.\n"
+"Ěîë˙, ďîăëĺäíĺňĺ äîęóěĺíňŕöč˙ňŕ, ŕęî íĺ çíŕĺňĺ ęŕęâî äŕ čçáĺđĺňĺ ňóę.\n"
"\n"
"\n"
-"Ůĺ ěîćĺňĺ äŕ čçďđîáâŕňĺ íŕńňđîéęŕňŕ â ńëĺäâŕůŕňŕ ńňúďŕ č äŕ ˙ ńěĺíčňĺ, ŕęî "
+"Ůĺ ěîćĺňĺ äŕ čçďđîáâŕňĺ íŕńňđîéęŕňŕ â ńëĺäâŕůŕňŕ ńňúďęŕ č äŕ ˙ ńěĺíčňĺ, ŕęî "
"íĺ đŕáîňč ęŕęňî ňđ˙áâŕ."
-#: ../../help.pm_.c:585
+#: ../../help.pm_.c:591
msgid ""
"You can now enter the root password for your Linux-Mandrake system.\n"
"The password must be entered twice to verify that both password entries are "
@@ -2961,7 +3276,7 @@ msgstr ""
"ěîćĺňĺ\n"
"äŕ ˙ çŕďîěíčňĺ áĺç ěíîăî óńčëč˙."
-#: ../../help.pm_.c:603
+#: ../../help.pm_.c:609
msgid ""
"To enable a more secure system, you should select \"Use shadow file\" and\n"
"\"Use MD5 passwords\"."
@@ -2969,7 +3284,7 @@ msgstr ""
"Çŕ ďî-ńčăóđíŕ ńčńňĺěŕ, ňđ˙áâŕ äŕ čçáĺđĺňĺ \"Čçďîëçâŕé shadow ôŕéë\"\n"
"č \"Čçďîëçâŕé MD5 ďŕđîëč\"."
-#: ../../help.pm_.c:607
+#: ../../help.pm_.c:613
msgid ""
"If your network uses NIS, select \"Use NIS\". If you don't know, ask your\n"
"network administrator."
@@ -2977,7 +3292,7 @@ msgstr ""
"Ŕęî ěđĺćŕňŕ âč čçďîëçâŕ NIS, čçáĺđĺňĺ \"Čçďîëçâŕé NIS\". Ŕęî íĺ çíŕĺňĺ,\n"
"ďîďčňŕéňĺ ěđĺćîâč˙ ŕäěčíčńňđŕňîđ."
-#: ../../help.pm_.c:611
+#: ../../help.pm_.c:617
msgid ""
"You may now create one or more \"regular\" user account(s), as\n"
"opposed to the \"privileged\" user account, root. You can create\n"
@@ -3016,18 +3331,17 @@ msgstr ""
"Çŕňîâŕ âëčçŕéňĺ ń ďîňđĺáčňĺëńęč˙ ńč ŕęŕóíň â ńčńňĺěŕňŕ č, ńŕěî ŕęî âč ńĺ\n"
"íŕëîćč, čçďîëçâŕéňĺ ŕäěčíčńňđŕňîđńęč˙ ŕęŕóíň."
-#: ../../help.pm_.c:630
-#, fuzzy
+#: ../../help.pm_.c:636
msgid ""
"Creating a boot disk is strongly recommended. If you can't\n"
"boot your computer, it's the only way to rescue your system without\n"
"reinstalling it."
msgstr ""
-"Ńúçäŕâŕíĺňî íŕ boot äčńęĺňŕ ńčëíî ńĺ ďđĺďîđú÷âŕ. Ŕęî íĺ ěîćĺňĺ äŕ "
-"ńňŕđňčđŕňĺ\n"
-"ęîěďţňúđŕ ńč, ňîâŕ ĺ ĺäčíńňâĺíč˙ íŕ÷čí äŕ ăî ńďŕńčňĺ áĺç ďđĺčíńňŕëŕöč˙."
+"Ńúçäŕâŕíĺňî íŕ boot äčńęĺňŕ ĺ ńčëíî ďđĺďîđú÷čňĺëíî. Ŕęî íĺ\n"
+"ěîćĺňĺ äŕ ńňŕđňčđŕňĺ ęîěďţňúđŕ ńč, ňîâŕ ĺ ĺäčíńňâĺíč˙ íŕ÷čí äŕ\n"
+"ńďŕńčňĺ ńčńňĺěŕňŕ áĺç ďđĺčíńňŕëŕöč˙."
-#: ../../help.pm_.c:635
+#: ../../help.pm_.c:641
msgid ""
"You need to indicate where you wish\n"
"to place the information required to boot to GNU/Linux.\n"
@@ -3043,7 +3357,7 @@ msgstr ""
"Ŕęî íĺ ńňĺ ńčăóđíč â ňîâŕ, ęîĺňî ďđŕâčňĺ, čçáĺđĺňĺ \"Ďúđâč˙ ńĺęňîđ íŕ\n"
"óńňđîéńňâîňî (MBR)\"."
-#: ../../help.pm_.c:643
+#: ../../help.pm_.c:649
msgid ""
"Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
" (primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
@@ -3051,7 +3365,7 @@ msgstr ""
"Îńâĺí ŕęî íĺ ńňĺ ńčăóđíč â îáđŕňíîňî, îáčęíîâĺíč˙ čçáîđ ĺ \"/dev/hda\"\n"
"(ďúđâč âîäĺůî IDE äčńę) čëč \"/dev/sda\" (ďúđâč SCSI äčńę)."
-#: ../../help.pm_.c:647
+#: ../../help.pm_.c:653
msgid ""
"LILO (the LInux LOader) and Grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3076,7 +3390,7 @@ msgstr ""
"â ęîéňî ńëó÷ŕé ěîćĺňĺ äŕ čçňđčĺňĺ ńúîňâĺňíčňĺ çŕďčńč. Íî â ňŕęúâ ńëó÷ŕé,\n"
"ůĺ ńĺ íóćäŕĺňĺ îň boot-äčńęĺňŕ, çŕ äŕ ăč ńňŕđňčđŕňĺ !"
-#: ../../help.pm_.c:659
+#: ../../help.pm_.c:665
msgid ""
"LILO and grub main options are:\n"
" - Boot device: Sets the name of the device (e.g. a hard disk\n"
@@ -3096,7 +3410,22 @@ msgid ""
"\n"
" * normal: select normal 80x25 text mode.\n"
"\n"
-" * <number>: use the corresponding text mode."
+" * <number>: use the corresponding text mode.\n"
+"\n"
+"\n"
+" - Clean \"/tmp\" at each boot: if you want delete all files and "
+"directories\n"
+"stored in \"/tmp\" when you boot your system, select this option.\n"
+"\n"
+"\n"
+" - Precise RAM if needed: unfortunately, there is no standard method to ask "
+"the\n"
+"BIOS about the amount of RAM present in your computer. As consequence, Linux "
+"may\n"
+"fail to detect your amount of RAM correctly. If this is the case, you can\n"
+"specify the correct amount or RAM here. Please note that a difference of 2 "
+"or 4\n"
+"MB between detected memory and memory present in your system is normal."
msgstr ""
"Ăëŕâíčňĺ îďöčč íŕ LILO č GRUB ńŕ:\n"
" - Boot óńňđîéńňâî: Îďđĺäĺë˙ čěĺňî íŕ óńňđîéńňâîňî (ň.ĺ. ä˙ë îň őŕđä\n"
@@ -3116,9 +3445,144 @@ msgstr ""
"ďđč íŕ÷ŕëíî çŕđĺćäŕíĺ. Âúçěîćíč ńŕ ńëĺäíčňĺ ńňîéíîńňč:\n"
" * normal: čçáčđŕ îáčęíîâĺí 80x25 ňĺęńňîâ đĺćčě.\n"
"\n"
-" * <number>: čçďîëçâŕ ńúîňâĺňíč˙ ňĺęńňîâ đĺćčě."
+" * <number>: čçďîëçâŕ ńúîňâĺňíč˙ ňĺęńňîâ đĺćčě.\n"
+"\n"
+"\n"
+" - Ďî÷čńňâŕíĺ íŕ \"/tmp\" ďđč çŕđĺćäŕíĺ: ŕęî čńęŕňĺ äŕ ńĺ čçňđčâŕň âńč÷ęč\n"
+"ôŕéëîâĺ č äčđĺęňîđčč ńúőđŕí˙âŕíč â \"/tmp\", ęîăŕňî çŕđĺćäŕňĺ ńčńňĺěŕňŕ ńč,\n"
+"čçáĺđĺňĺ ňŕçč îďöč˙.\n"
+"\n"
+"\n"
+" - Ňî÷íî RAM, ŕęî ĺ íóćíî: çŕ ńúćŕëĺíčĺ, í˙ěŕ ńňŕíäŕđňĺí ěĺňîä, äŕ ńĺ\n"
+"ďîďčňŕ BIOS çŕ îáĺěŕ íŕ RAM â ęîěďţňúđŕ. Ęŕňî ďîńëĺäńňâčĺ, GNU/Linux ěîćĺ\n"
+"äŕ íĺ óńďĺĺ äŕ çŕńĺ÷ĺ ďđŕâčëíî îáĺěŕ íŕ RAM. Ŕęî ĺ ňŕęúâ ńëó÷ŕ˙, ňóę\n"
+"ěîćĺňĺ äŕ çŕäŕäĺňĺ ňî÷íč˙ îáĺě íŕ RAM. Ěîë˙, îňáĺëĺćĺňĺ ÷ĺ îň 2 čëč 4 MB\n"
+"ěĺćäó çŕńĺ÷ĺíŕňŕ č ďđčńúńňâŕůŕňŕ RAM ĺ íîđěŕëíŕ."
+
+#: ../../help.pm_.c:697
+msgid ""
+"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able\n"
+"to boot either GNU/Linux, MacOS, or MacOSX, if present on your computer.\n"
+"Normally, these other operating systems are correctly detected and\n"
+"installed. If this is not the case, you can add an entry by hand in this\n"
+"screen. Be careful as to choose the correct parameters.\n"
+"\n"
+"\n"
+"Yaboot main options are:\n"
+"\n"
+"\n"
+" - Init Message: A simple text message that is displayed before the boot\n"
+"prompt.\n"
+"\n"
+"\n"
+" - Boot Device: Indicate where you want to place the information required "
+"to \n"
+"boot to GNU/Linux. Generally, you will have setup a bootstrap partition "
+"earlier \n"
+"to hold this information.\n"
+"\n"
+"\n"
+" - Open Firmware Delay: Unlike LILO, there are two delays available with \n"
+"yaboot. The first delay is measured in seconds and at this point you can \n"
+"choose between CD, OF boot, MacOS, or Linux.\n"
+"\n"
+"\n"
+" - Kernel Boot Timeout: This timeout is similar to the LILO boot delay. "
+"After \n"
+"selecting Linux, you will have this delay in 0.1 seconds before your "
+"default\n"
+"kernel description is selected.\n"
+"\n"
+"\n"
+" - Enable CD Boot?: Checking this option will allow you to choose 'C' for "
+"CD at\n"
+"the first boot prompt.\n"
+"\n"
+"\n"
+" - Enable OF Boot?: Checking this option will allow you to choose 'N' for "
+"Open\n"
+"Firmware at the first boot prompt.\n"
+"\n"
+"\n"
+" - Default OS: You can select which OS will boot by default when the Open "
+"Firmware \n"
+"Delay expires."
+msgstr ""
-#: ../../help.pm_.c:680
+#: ../../help.pm_.c:738
+msgid ""
+"You can add additional entries for yaboot, either for other operating "
+"systems,\n"
+"alternate kernels, or for an emergency boot image.\n"
+"\n"
+"\n"
+"For other OS's - the entry consists only of a label and the root partition.\n"
+"\n"
+"\n"
+"For Linux, there are a few possible options: \n"
+"\n"
+"\n"
+" - Label: This is simply the name will type at the yaboot prompt to select "
+"this \n"
+"boot option.\n"
+"\n"
+"\n"
+" - Image: This would be the name of the kernel to boot. Typically vmlinux "
+"or\n"
+"a variation of vmlinux with an extension.\n"
+"\n"
+"\n"
+" - Root: The root device or '/' for your Linux installation.\n"
+"\n"
+"\n"
+" \n"
+" - Append: On Apple hardware, the kernel append option is used quite often "
+"to\n"
+"assist in initializing video hardware, or to enable keyboard mouse button "
+"emulation\n"
+"for the often lacking 2nd and 3rd mouse buttons on a stock Apple mouse. The "
+"following \n"
+"are some examples:\n"
+"\n"
+"\n"
+"\t\t video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+"hda=autotune\n"
+"\n"
+"\t\t video=atyfb:vmode:12,cmode:24 adb_buttons=103,111 \n"
+"\n"
+"\n"
+" \n"
+" - Initrd: This option can be used either to load initial modules, before "
+"the boot \n"
+"device is available, or to load a ramdisk image for an emergency boot "
+"situation.\n"
+"\n"
+"\n"
+" - Initrd-size: The default ramdisk size is generally 4096 bytes. If you "
+"should need\n"
+"to allocate a large ramdisk, this option can be used.\n"
+"\n"
+"\n"
+" - Read-write: Normally the 'root' partition is initially brought up "
+"read-only, to allow\n"
+"a filesystem check before the system becomes 'live'. You can override this "
+"option here.\n"
+"\n"
+"\n"
+" - NoVideo: Should the Apple video hardware prove to be exceptionally "
+"problematic, you can\n"
+"select this option to boot in 'novideo' mode, with native framebuffer "
+"support.\n"
+"\n"
+"\n"
+" - Default: Selects this entry as being the default Linux selection, "
+"selectable by just\n"
+"pressing ENTER at the yaboot prompt. This entry will also be highlighted "
+"with a '*', if you\n"
+"press TAB to see the boot selections."
+msgstr ""
+
+#: ../../help.pm_.c:793
msgid ""
"SILO is a bootloader for SPARC: it is able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3143,7 +3607,7 @@ msgstr ""
"â ęîéňî ńëó÷ŕé ěîćĺňĺ äŕ čçňđčĺňĺ ńúîňâĺňíčňĺ çŕďčńč. Íî â ňŕęúâ ńëó÷ŕé,\n"
"ůĺ ńĺ íóćäŕĺňĺ îň boot-äčńęĺňŕ, çŕ äŕ ăč ńňŕđňčđŕňĺ !"
-#: ../../help.pm_.c:692
+#: ../../help.pm_.c:805
msgid ""
"SILO main options are:\n"
" - Bootloader installation: Indicate where you want to place the\n"
@@ -3169,7 +3633,7 @@ msgstr ""
"ńĺ âęëţ÷č ęëŕâčŕňóđŕňŕ. Çŕđĺćäŕůŕňŕ ďđîăđŕěŕ íĺ ÷ŕęŕ, ŕęî \"delay\" ĺ\n"
"ďđîďóńíŕň čëč ĺ íóëŕ."
-#: ../../help.pm_.c:705
+#: ../../help.pm_.c:818
msgid ""
"Now it's time to configure the X Window System, which is the\n"
"core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
@@ -3195,7 +3659,7 @@ msgstr ""
"íĺ âč óńňđîéâŕň, ěîćĺňĺ äŕ ńĺ âđúůŕňĺ č äŕ ăč ďđîěĺí˙ňĺ, ęîëęîňî ďúňč âč\n"
"ĺ íĺîáőîäčěî."
-#: ../../help.pm_.c:718
+#: ../../help.pm_.c:831
msgid ""
"If something is wrong in X configuration, use these options to correctly\n"
"configure the X Window System."
@@ -3203,7 +3667,7 @@ msgstr ""
"Ŕęî íĺůî íĺ ĺ íŕđĺä ń íŕńňđîéęŕňŕ íŕ X, čçďîëçâŕéňĺ ňĺçč îďöčč çŕ\n"
"ďđŕâčëíŕ íŕńňđîéęŕ íŕ X Window ńčńňĺěŕňŕ."
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:835
msgid ""
"If you prefer to use a graphical login, select \"Yes\". Otherwise, select\n"
"\"No\"."
@@ -3211,87 +3675,19 @@ msgstr ""
"Ŕęî ďđĺäďî÷čňŕňĺ äŕ čçďîëçâŕňĺ ăđŕôč÷íî âëčçŕíĺ, čçáĺđĺňĺ \"Äŕ\". Â\n"
"ďđîňčâĺí ńëó÷ŕé, čçáĺđĺňĺ \"Íĺ\"."
-#: ../../help.pm_.c:726
+#: ../../help.pm_.c:839
msgid ""
-"You can now select some miscellaneous options for your system.\n"
-"\n"
-"* Use hard drive optimizations: this option can improve hard disk "
-"performance but is only for advanced users. Some buggy\n"
-" chipsets can ruin your data, so beware. Note that the kernel has a builtin "
-"blacklist of drives and chipsets, but if\n"
-" you want to avoid bad surprises, leave this option unset.\n"
-"\n"
-"\n"
-"* Choose security level: you can choose a security level for your system. "
-"Please refer to the manual for complete\n"
+"You can choose a security level for your system. Please refer to the manual "
+"for complete\n"
" information. Basically, if you don't know what to choose, keep the default "
"option.\n"
-"\n"
-"\n"
-"* Precise RAM if needed: unfortunately, there is no standard method to ask "
-"the BIOS about the amount of RAM present in\n"
-" your computer. As consequence, Linux may fail to detect your amount of RAM "
-"correctly. If this is the case, you can\n"
-" specify the correct amount or RAM here. Please note that a difference of 2 "
-"or 4 MB between detected memory and memory\n"
-" present in your system is normal.\n"
-"\n"
-"\n"
-"* Removable media automounting: if you would prefer not to manually mount "
-"removable media (CD-Rom, floppy, Zip, etc.) by\n"
-" typing \"mount\" and \"umount\", select this option.\n"
-"\n"
-"\n"
-"* Clean \"/tmp\" at each boot: if you want delete all files and directories "
-"stored in \"/tmp\" when you boot your system,\n"
-" select this option.\n"
-"\n"
-"\n"
-"* Enable num lock at startup: if you want NumLock key enabled after booting, "
-"select this option. Please note that you\n"
-" should not enable this option on laptops and that NumLock may or may not "
-"work under X."
msgstr ""
-"Ńĺăŕ ěîćĺňĺ äŕ čçáĺđĺňĺ í˙ęîč äîďúëíčňĺëíč îďöčč çŕ ńčńňĺěŕňŕ ńč.\n"
-"\n"
-"* Čçďîëçâŕíĺ îďňčěčçŕöčč çŕ őŕđä äčńęŕ: ňŕçč îďöč˙ ěîćĺ äŕ ďîäîáđč đŕáîňŕňŕ "
-"íŕ őŕđä äčńęŕ âč, íî ĺ ńŕěî çŕ íŕďđĺäíŕëč\n"
-" ďîňĺđĺáčňĺëč: í˙ęîč íĺäîä˙ëŕíč ÷čďńĺňč ěîăŕň äŕ ńúńčď˙ň äŕííčňĺ âč, ňŕęŕ "
-"÷ĺ âíčěŕâŕéňĺ. Îňáĺëĺćĺňĺ, ÷ĺ ˙äđîňî čěŕ\n"
-" âăđŕäĺí ÷ĺđĺí ńďčńúę îň óńňđîéńňâŕ č ÷čďńĺňč, íî, ŕęî čńęŕňĺ äŕ čçáĺăíĺňĺ "
-"ëîřč čçíĺíŕäč, îńňŕâĺňĺ ňŕçč îďöč˙ čçęëţ÷ĺíŕ.\n"
-"\n"
-"\n"
-"* Čçáĺđĺňĺ íčâî íŕ ńčăóđíîńň: ěîćĺňĺ äŕ čçáĺđĺňĺ íčâî íŕ ńčăóđíîńň çŕ "
-"ńčńňĺěŕňŕ\n"
-" ńč. Ěîë˙, îáúđíĺňĺ ńĺ ęúě đúęîâîäńňâîňî çŕ ďúëíŕ číôîđěŕöč˙. Ďđîńňî, ŕęî\n"
-" íĺ çíŕĺňĺ ęŕęâî äŕ čçáĺđĺňĺ, îńňŕâĺňĺ ňîâŕ ďî ďîäđŕçáčđŕíĺ.\n"
-"\n"
-"\n"
-"* Ňî÷íî RAM, ŕęî ĺ íóćíî: çŕ ńúćŕëĺíčĺ, í˙ěŕ ńňŕíäŕđňĺí ěĺňîä, äŕ ńĺ ďîďčňŕ "
-"BIOS çŕ îáĺěŕ íŕ RAM â ęîěďţňúđŕ. Ęŕňî\n"
-" ďîńëĺäńňâčĺ, GNU/Linux ěîćĺ äŕ íĺ óńďĺĺ äŕ çŕńĺ÷ĺ ďđŕâčëíî îáĺěŕ íŕ RAM. "
-"Ŕęî ĺ ňŕęúâ ńëó÷ŕ˙, ňóę ěîćĺňĺ äŕ\n"
-" çŕäŕäĺňĺ ňî÷íč˙ îáĺě íŕ RAM. Ěîë˙, îňáĺëĺćĺňĺ ÷ĺ îň 2 čëč 4 MB ěĺćäó "
-"çŕńĺ÷ĺíŕňŕ č ďđčńúńňâŕůŕňŕ RAM ĺ íîđěŕëíŕ.\n"
-"\n"
-"\n"
-"* Ŕâňîěŕňč÷íî ěîíňčđŕíĺ íŕ ďđĺíîńčěč óńňđîéńňâŕ: ŕęî ďđĺäďî÷čňŕňĺ äŕ íĺ "
-"ěîíňčđŕňĺ đú÷íî ďđĺíîńčěč óńňđîéńňâŕ (CD-ROM,\n"
-" ôëîďč, Zip č ň.í.) ďčřĺéęč \"mount\" č \"umount\", čçáĺđĺňĺ ňŕçč îďöč˙.\n"
-"\n"
-"\n"
-"* Ďî÷čńňâŕíĺ íŕ \"/tmp\" ďđč çŕđĺćäŕíĺ: ŕęî čńęŕňĺ äŕ ńĺ čçňđčâŕň âńč÷ęč "
-"ôŕéëîâĺ č äčđĺęňîđčč ńúőđŕí˙âŕíč â \"/tmp\",\n"
-" ęîăŕňî çŕđĺćäŕňĺ ńčńňĺěŕňŕ ńč, čçáĺđĺňĺ ňŕçč îďöč˙.\n"
-"\n"
-"\n"
-"* Âęëţ÷âŕíĺ íŕ NumLock ďđč çŕđĺćäŕíĺ: ŕęî čńęŕňĺ äŕ ńĺ âęëţ÷âŕ NumLock ďđč "
-"ńňŕđňčđŕíĺ, čçáĺđĺňĺ ňŕçč îďöč˙. Ěîë˙, îňáĺëĺćĺňĺ ÷ĺ\n"
-" íĺ ňđ˙áâŕ äŕ âęëţ÷âŕňĺ ňŕçč îďöč˙ ďđč ëŕďňîďč č ÷ĺ ěîćĺ č äŕ íĺ đŕáîňč ďîä "
-"X)."
+"Ěîćĺňĺ äŕ čçáĺđĺňĺ íčâî íŕ ńčăóđíîńň íŕ ńčńňĺěŕňŕ ńč. Ěîë˙, îáúđíĺňĺ ńĺ ęúě "
+"đúęîâîäńňâîňî çŕ\n"
+"číôîđěŕöč˙. Íŕęđŕňęî, ŕęî íĺ çíŕĺňĺ ęŕęâî äŕ čçáĺđĺňĺ, îńňŕâĺňĺ ňîâŕ ďî "
+"ďîäđŕçáčđŕíĺ.\n"
-#: ../../help.pm_.c:755
+#: ../../help.pm_.c:844
msgid ""
"Your system is going to reboot.\n"
"\n"
@@ -3305,104 +3701,140 @@ msgstr ""
"ŕâňîěŕňč÷íî. Ŕęî čńęŕňĺ äŕ ďóńíĺňĺ äđóăŕ ńúůĺńňâóâŕůŕ îďĺđŕöčîííŕ ńčńňĺěŕ,\n"
"ďđî÷ĺňĺňĺ äîďúëíčňĺëíčňĺ číńňđóęöčč."
-#: ../../install2.pm_.c:40
+#: ../../install2.pm_.c:39
msgid "Choose your language"
msgstr "Čçáîđ íŕ ĺçčę"
-#: ../../install2.pm_.c:41
+#: ../../install2.pm_.c:40
msgid "Select installation class"
msgstr "Čçáîđ íŕ ęëŕń číńňŕëŕöč˙"
-#: ../../install2.pm_.c:42
+#: ../../install2.pm_.c:41
msgid "Hard drive detection"
msgstr "Çŕńč÷ŕíĺ íŕ äčńęîâĺňĺ"
-#: ../../install2.pm_.c:43
+#: ../../install2.pm_.c:42
msgid "Configure mouse"
msgstr "Íŕńňđîéęŕ íŕ ěčřęŕ"
-#: ../../install2.pm_.c:44
+#: ../../install2.pm_.c:43
msgid "Choose your keyboard"
msgstr "Čçáîđ íŕ ęëŕâčŕňóđŕ"
-#: ../../install2.pm_.c:45 ../../install_steps_interactive.pm_.c:497
-msgid "Miscellaneous"
-msgstr "Äîďúëíčňĺëíč"
+#: ../../install2.pm_.c:44
+msgid "Security"
+msgstr "Ńčăóđíîńň"
-#: ../../install2.pm_.c:46
+#: ../../install2.pm_.c:45
msgid "Setup filesystems"
-msgstr "Ôŕéëîâčňĺ ńčńňĺěč"
+msgstr "Ôŕéëîâč ńčńňĺěč"
-#: ../../install2.pm_.c:47
+#: ../../install2.pm_.c:46
msgid "Format partitions"
msgstr "Ôîđěŕňčđŕíĺ íŕ ä˙ëîâĺ"
-#: ../../install2.pm_.c:48
+#: ../../install2.pm_.c:47
msgid "Choose packages to install"
msgstr "Ďŕęĺňč çŕ číńňŕëčđŕíĺ"
-#: ../../install2.pm_.c:49
+#: ../../install2.pm_.c:48
msgid "Install system"
msgstr "Číńňŕëčđŕíĺ íŕ ńčńňĺěŕňŕ"
+#: ../../install2.pm_.c:49 ../../install_steps_interactive.pm_.c:894
+#: ../../install_steps_interactive.pm_.c:895
+msgid "Set root password"
+msgstr "Âúâĺäĺňĺ ďŕđîëŕ çŕ root"
+
#: ../../install2.pm_.c:50
+msgid "Add a user"
+msgstr "Äîáŕâ˙íĺ íŕ ďîňđĺáčňĺë"
+
+#: ../../install2.pm_.c:51
msgid "Configure networking"
msgstr "Íŕńňîéęŕ íŕ ěđĺćŕňŕ"
-#: ../../install2.pm_.c:52
-msgid "Configure timezone"
-msgstr "Âđĺěĺâŕňŕ çîíŕ"
+#: ../../install2.pm_.c:53 ../../install_steps_interactive.pm_.c:818
+msgid "Summary"
+msgstr "Îáîáůĺíčĺ"
-#: ../../install2.pm_.c:53
+#: ../../install2.pm_.c:54
msgid "Configure services"
msgstr "Íŕńňđîéęŕ íŕ óńëóăčňĺ"
-#: ../../install2.pm_.c:54
-msgid "Configure printer"
-msgstr "Íŕńňđîéęŕ íŕ ďđčíňĺđŕ"
-
-#: ../../install2.pm_.c:55 ../../install_steps_interactive.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:763
-msgid "Set root password"
-msgstr "Âúâĺäĺňĺ ďŕđîëŕ çŕ root"
-
#: ../../install2.pm_.c:56
-msgid "Add a user"
-msgstr "Äîáŕâ˙íĺ íŕ ďîňđĺáčňĺë"
-
-#: ../../install2.pm_.c:58
msgid "Create a bootdisk"
msgstr "Ńúçäŕâŕíĺ íŕ boot-äčńęĺňŕ"
-#: ../../install2.pm_.c:60
+#: ../../install2.pm_.c:58
msgid "Install bootloader"
msgstr "Číńňŕëčđŕíĺ íŕ bootloader"
-#: ../../install2.pm_.c:61
+#: ../../install2.pm_.c:59
msgid "Configure X"
msgstr "Íŕńňđîéęŕ íŕ Ő"
-#: ../../install2.pm_.c:63
-msgid "Auto install floppy"
-msgstr "Ŕâňîěŕňč÷íî číńňŕëčđŕíĺ îň ôëîďč"
-
-#: ../../install2.pm_.c:65
+#: ../../install2.pm_.c:60
msgid "Exit install"
msgstr "Čçőîä îň číńňŕëŕöčîííŕňŕ ďđîăđŕěŕ"
-#: ../../install_any.pm_.c:578
+#: ../../install_any.pm_.c:373
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They don't have any known security\n"
+"issues, but some new could be found. In that case, you must make sure to "
+"upgrade\n"
+"as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+
+#: ../../install_any.pm_.c:404
+msgid "Can't use broadcast with no NIS domain"
+msgstr ""
+
+#: ../../install_any.pm_.c:647
+#, c-format
+msgid "Insert a FAT formatted floppy in drive %s"
+msgstr "Ńëîćĺňĺ FAT ôîđěŕňčđŕíŕ äčńęĺňŕ â óńňđîéńňâî %s"
+
+#: ../../install_any.pm_.c:651
+msgid "This floppy is not FAT formatted"
+msgstr "Ňŕçč äčńęĺňŕ íĺ ĺ ôîđěŕňčđŕíŕ íŕ FAT"
+
+#: ../../install_any.pm_.c:661
+msgid ""
+"To use this saved packages selection, boot installation with ``linux "
+"defcfg=floppy''"
+msgstr ""
+"Çŕ äŕ čçďîëçâŕňĺ çŕďŕçĺí čçáîđ íŕ ďŕęĺňč, ńňŕđňčđŕéňĺ číńňŕëŕöč˙ňŕ ń ``linux "
+"defcfg=floppy''"
+
+#: ../../install_any.pm_.c:683
msgid "Error reading file $f"
msgstr "Ăđĺřęŕ ďđč ÷ĺňĺíĺ íŕ ôŕéëŕ $f"
-#: ../../install_gtk.pm_.c:426
+#: ../../install_gtk.pm_.c:84 ../../install_steps_gtk.pm_.c:310
+#: ../../interactive.pm_.c:95 ../../interactive.pm_.c:110
+#: ../../interactive.pm_.c:265 ../../interactive_newt.pm_.c:166
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:356
+#: ../../my_gtk.pm_.c:616 ../../my_gtk.pm_.c:639
+msgid "Ok"
+msgstr "Ok"
+
+#: ../../install_gtk.pm_.c:423
msgid "Please test the mouse"
msgstr "Ěîë˙, ďđîáâŕéňĺ ěčřęŕňŕ ńč"
-#: ../../install_gtk.pm_.c:427
+#: ../../install_gtk.pm_.c:424
msgid "To activate the mouse,"
msgstr "Çŕ äŕ ŕęňčâčđŕňĺ ěčřęŕňŕ ńč,"
-#: ../../install_gtk.pm_.c:428
+#: ../../install_gtk.pm_.c:425
msgid "MOVE YOUR WHEEL!"
msgstr "ÁÓŇÍĹŇĹ ŇÎĎ×ĹŇÎ !"
@@ -3446,7 +3878,7 @@ msgstr "Čçďîëçâŕé ńâîáîäíîňî ě˙ńňî"
#: ../../install_interactive.pm_.c:70
msgid "Not enough free space to allocate new partitions"
-msgstr "Í˙ěŕ äîńňŕňú÷íî ě˙ŕňî çŕ ńúçäŕâŕíĺ íŕ íîâ ä˙ë"
+msgstr "Í˙ěŕ äîńňŕňú÷íî ě˙ńňî çŕ ńúçäŕâŕíĺ íŕ íîâ ä˙ë"
#: ../../install_interactive.pm_.c:78
msgid "Use existing partition"
@@ -3561,12 +3993,8 @@ msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "ÂŃČ×ĘČ ńúůĺńňâóâŕůč ä˙ëîâĺ č äŕííčňe âúđőó ň˙ő íŕ %s ůĺ áúäŕň çŕăóáĺíč"
#: ../../install_interactive.pm_.c:165
-msgid "Expert mode"
-msgstr "Ĺęńďĺđňĺí đĺćčě"
-
-#: ../../install_interactive.pm_.c:165
-msgid "Use diskdrake"
-msgstr "Čçďîëçâŕé diskdrake"
+msgid "Custom disk partitioning"
+msgstr "Ęëčĺíňńęî đŕçäĺë˙íĺ íŕ äčńęŕ"
#: ../../install_interactive.pm_.c:169
msgid "Use fdisk"
@@ -3581,33 +4009,32 @@ msgstr ""
"Ńĺăŕ ěîćĺňĺ äŕ đŕçäĺëčňĺ %s.\n"
"Ęîăŕňî ńňĺ ăîňîâč, íĺ çŕáđŕâ˙éňĺ äŕ çŕďčřĺňĺ čçďîëçâŕéęč `w'"
-#: ../../install_interactive.pm_.c:196
-#, fuzzy
+#: ../../install_interactive.pm_.c:201
msgid "You don't have enough free space on your Windows partition"
-msgstr "Čçďîëçâŕé ńâîáîäíîňî ě˙ńňî íŕ Windows ä˙ëŕ"
+msgstr "Í˙ěŕ äîńňŕňú÷íî ńâîáîäíî ě˙ńňî íŕ ä˙ëŕ"
-#: ../../install_interactive.pm_.c:211
+#: ../../install_interactive.pm_.c:217
msgid "I can't find any room for installing"
msgstr "Íĺ ěîăŕ äŕ íŕěĺđ˙ íčęŕęâî ě˙ńňî çŕ číńňŕëŕöč˙"
-#: ../../install_interactive.pm_.c:214
+#: ../../install_interactive.pm_.c:221
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Ďîěîůíčęúň çŕ đŕçäĺëčíĺ íŕ ä˙ëîâĺ íŕ DrakX íŕěĺđč ńëĺäíčňĺ đĺřĺíč˙:"
-#: ../../install_interactive.pm_.c:219
+#: ../../install_interactive.pm_.c:226
#, c-format
msgid "Partitioning failed: %s"
msgstr "Íĺóńďĺříî đŕçäĺë˙íĺ íŕ: %s"
-#: ../../install_interactive.pm_.c:234
+#: ../../install_interactive.pm_.c:232
msgid "Bringing up the network"
msgstr "Âęëţ÷âŕě ěđĺćŕňŕ"
-#: ../../install_interactive.pm_.c:239
+#: ../../install_interactive.pm_.c:237
msgid "Bringing down the network"
msgstr "Čçęëţ÷âŕíĺ íŕ ěđĺćŕňŕ"
-#: ../../install_steps.pm_.c:74
+#: ../../install_steps.pm_.c:73
msgid ""
"An error occurred, but I don't know how to handle it nicely.\n"
"Continue at your own risk."
@@ -3615,7 +4042,7 @@ msgstr ""
"Ďî˙âč ńĺ ăđĺřęŕ, íî íĺ çíŕě ęŕę äŕ ńĺ ńďđŕâ˙ ń íĺ˙ äĺëčęŕňíî.\n"
"Ěîćĺňĺ äŕ ďđîäúëćčňĺ íŕ ńâîé đčńę."
-#: ../../install_steps.pm_.c:202
+#: ../../install_steps.pm_.c:203
#, c-format
msgid "Duplicate mount point %s"
msgstr "Äóáëčđŕé ňî÷ęŕňŕ íŕ ěîíňčđŕíĺ %s"
@@ -3632,16 +4059,16 @@ msgstr ""
"Ďđîâĺđĺňĺ ęîěďŕęň äčńęŕ íŕ číńňŕëčđŕíč˙ ęîěďţňúđ čçďîëçâŕéęč \"rpm -qpl "
"Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:451
#, c-format
msgid "Welcome to %s"
msgstr "Äîáđĺ äîřëč â %s"
-#: ../../install_steps.pm_.c:670
+#: ../../install_steps.pm_.c:634
msgid "No floppy drive available"
msgstr "Í˙ěŕ ôëîďč óńňđîéńňâî"
-#: ../../install_steps_auto_install.pm_.c:43
+#: ../../install_steps_auto_install.pm_.c:51
#: ../../install_steps_stdio.pm_.c:23
#, c-format
msgid "Entering step `%s'\n"
@@ -3655,73 +4082,71 @@ msgstr "Čçáĺđĺňĺ ăîëĺěčíŕňŕ, ęî˙ňî čńęŕňĺ äŕ číńňŕëčđŕňĺ"
msgid "Total size: "
msgstr "Îáůŕ ăîëĺěčíŕ: "
-#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:353
-#: ../../standalone/rpmdrake_.c:136
+#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:437
#, c-format
msgid "Version: %s\n"
msgstr "Âĺđńč˙: %s\n"
-#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:354
-#: ../../standalone/rpmdrake_.c:137
+#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:438
#, c-format
msgid "Size: %d KB\n"
msgstr "Ăîëĺěčíŕ: %d KB\n"
-#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:260
+#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:520
msgid "Choose the packages you want to install"
msgstr "Čçáĺđĺňĺ ďŕęĺňčňĺ, ęîčňî čńęŕňĺ äŕ číńňŕëčđŕňĺ"
-#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:263
+#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:340
msgid "Info"
msgstr "Číôîđěŕöč˙"
-#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:268
-#: ../../install_steps_interactive.pm_.c:216 ../../standalone/rpmdrake_.c:161
+#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_interactive.pm_.c:226
msgid "Install"
msgstr "Číńňŕëčđŕéňĺ"
-#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:466
-#: ../../install_steps_interactive.pm_.c:594
+#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:558
+#: ../../install_steps_interactive.pm_.c:675
msgid "Installing"
msgstr "Číńňŕëčđŕě"
-#: ../../install_steps_graphical.pm_.c:499 ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_graphical.pm_.c:499
msgid "Please wait, "
msgstr "Ěîë˙, čç÷ŕęŕéňĺ, "
-#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:474
+#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:570
msgid "Time remaining "
msgstr "Îńňŕâŕůî âđĺěĺ "
-#: ../../install_steps_graphical.pm_.c:502 ../../install_steps_gtk.pm_.c:475
+#: ../../install_steps_graphical.pm_.c:502
msgid "Total time "
msgstr "Îáůŕ ďđîäúëćčňĺëíîńň "
-#: ../../install_steps_graphical.pm_.c:507 ../../install_steps_gtk.pm_.c:484
-#: ../../install_steps_interactive.pm_.c:594
+#: ../../install_steps_graphical.pm_.c:507
+#: ../../install_steps_interactive.pm_.c:675
msgid "Preparing installation"
msgstr "Ďîäăîňâ˙ě číńňŕëŕöč˙ňŕ"
-#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:500
+#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:618
#, c-format
msgid "Installing package %s"
msgstr "Číńňŕëčđŕíĺ íŕ ďŕęĺňŕ %s"
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:569
-#: ../../install_steps_gtk.pm_.c:573
+#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:695
+#: ../../install_steps_gtk.pm_.c:699
msgid "Go on anyway?"
msgstr "Äŕ ďđîäúëćŕ ëč âńĺ ďŕę ?"
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:569
+#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:695
msgid "There was an error ordering packages:"
msgstr "Ďî˙âč ńĺ ăđĺřęŕ ďđč ďîđú÷âŕíĺňî íŕ ďŕęĺňčňĺ:"
#: ../../install_steps_graphical.pm_.c:577
-#: ../../install_steps_interactive.pm_.c:1003
msgid "Use existing configuration for X11?"
msgstr "Äŕ čçďîëçâŕě ëč ńĺăŕříŕňŕ íŕńňđîéęŕ íŕ X11 ?"
-#: ../../install_steps_gtk.pm_.c:136
+#: ../../install_steps_gtk.pm_.c:142
msgid ""
"Your system is low on resource. You may have some problem installing\n"
"Linux-Mandrake. If that occurs, you can try a text install instead. For "
@@ -3733,17 +4158,17 @@ msgstr ""
"Çŕöĺëňŕ,\n"
"íŕňčńíĺňĺ 'F1', ęîăŕňî ńňŕđňčđŕňĺ îň CDROM č âúâĺäĺňĺ 'ňĺüň'."
-#: ../../install_steps_gtk.pm_.c:150
+#: ../../install_steps_gtk.pm_.c:156
msgid "Please, choose one of the following classes of installation:"
msgstr "Ěîë˙, čçáĺđĺňĺ ĺäčí îň ńëĺäíčňĺ ęëŕńîâĺ íŕ číńňŕëŕöč˙:"
-#: ../../install_steps_gtk.pm_.c:215
+#: ../../install_steps_gtk.pm_.c:222
#, c-format
msgid ""
"The total size for the groups you have selected is approximately %d MB.\n"
msgstr "Îáůŕňŕ ăîëĺěčíŕ íŕ ăđóďčňĺ, ęîčňî ńňĺ ěŕđęčđŕëč, ĺ îęîëî %d MB.\n"
-#: ../../install_steps_gtk.pm_.c:217
+#: ../../install_steps_gtk.pm_.c:224
msgid ""
"If you wish to install less than this size,\n"
"select the percentage of packages that you want to install.\n"
@@ -3757,7 +4182,7 @@ msgstr ""
"Ďđč íčńúę ďđîöĺíň ůĺ ńĺ číńňŕëčđŕň ńŕěî íŕé-âŕćíčňĺ ďŕęĺňč;\n"
"ďđč 100%% ůĺ číńňŕëčđŕň âńč÷ęč ěŕđęčđŕíč ďŕęĺňč."
-#: ../../install_steps_gtk.pm_.c:222
+#: ../../install_steps_gtk.pm_.c:229
msgid ""
"You have space on your disk for only %d%% of these packages.\n"
"\n"
@@ -3773,77 +4198,85 @@ msgstr ""
"Ďđč íčńúę ďđîöĺíň ůĺ ńĺ číńňŕëčđŕň ńŕěî íŕé-âŕćíčňĺ ďŕęĺňč;\n"
"ďđč %d%% ůĺ číńňŕëčđŕň âńč÷ęč čçáđŕíč ďŕęĺňč."
-#: ../../install_steps_gtk.pm_.c:228
+#: ../../install_steps_gtk.pm_.c:235
msgid "You will be able to choose them more specifically in the next step."
msgstr "Ůĺ čěŕňĺ âúçěîćíîńňňŕ äŕ čçáĺđĺňĺ ďî-ňî÷íî ďđč ńëĺäâŕůč˙ ĺňŕď."
-#: ../../install_steps_gtk.pm_.c:230
+#: ../../install_steps_gtk.pm_.c:237
msgid "Percentage of packages to install"
msgstr "Ďđîöĺíň ďŕęĺňč çŕ číńňŕëčđŕíĺ"
-#: ../../install_steps_gtk.pm_.c:272
-msgid "Automatic dependencies"
-msgstr "Ďđîâĺđ˙âŕě çŕâčńčěîńňčňĺ"
+#: ../../install_steps_gtk.pm_.c:285 ../../install_steps_interactive.pm_.c:599
+msgid "Package Group Selection"
+msgstr "Čçáîđ íŕ ăđóďŕ ďŕęĺňč"
+
+#: ../../install_steps_gtk.pm_.c:305 ../../install_steps_interactive.pm_.c:614
+msgid "Individual package selection"
+msgstr "Čçáčđŕíĺ íŕ ďŕęĺňč ĺäčí ďî ĺäčí"
+
+#: ../../install_steps_gtk.pm_.c:349
+msgid "Show automatically selected packages"
+msgstr "Ďîęŕćč ŕâňîěŕňč÷íî îňáĺë˙çŕíčňĺ ďŕęĺňč"
-#: ../../install_steps_gtk.pm_.c:332 ../../standalone/rpmdrake_.c:101
+#: ../../install_steps_gtk.pm_.c:416
msgid "Expand Tree"
msgstr "Đŕçřčđč äúđâîňî"
-#: ../../install_steps_gtk.pm_.c:333 ../../standalone/rpmdrake_.c:102
+#: ../../install_steps_gtk.pm_.c:417
msgid "Collapse Tree"
msgstr "Čç÷čńňč äúđâîňî"
-#: ../../install_steps_gtk.pm_.c:334
+#: ../../install_steps_gtk.pm_.c:418
msgid "Toggle between flat and group sorted"
msgstr "Ďđĺâęëţ÷âŕíĺ ěĺćäó íîđěŕëíî č ńîđňčđŕíĺ ďî ăđóďč"
-#: ../../install_steps_gtk.pm_.c:351
+#: ../../install_steps_gtk.pm_.c:435
msgid "Bad package"
msgstr "Ëîř ďŕęĺň"
-#: ../../install_steps_gtk.pm_.c:352
+#: ../../install_steps_gtk.pm_.c:436
#, c-format
msgid "Name: %s\n"
msgstr "Čěĺ: %s\n"
-#: ../../install_steps_gtk.pm_.c:355
+#: ../../install_steps_gtk.pm_.c:439
#, c-format
msgid "Importance: %s\n"
msgstr "Âŕćíîńň: %s\n"
-#: ../../install_steps_gtk.pm_.c:363
+#: ../../install_steps_gtk.pm_.c:448 ../../install_steps_interactive.pm_.c:578
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Îáůŕ ăîëĺěčíŕ: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:382
+#: ../../install_steps_gtk.pm_.c:467
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Íĺ ěîćĺňĺ äŕ îńňŕâčňĺ ďŕęĺňŕ íĺěŕđęčđŕí, çŕůîňî í˙ěŕňĺ ě˙ńňî äŕ ăî "
"číńňŕëčđŕňĺ"
-#: ../../install_steps_gtk.pm_.c:386
+#: ../../install_steps_gtk.pm_.c:471
msgid "The following packages are going to be installed"
msgstr "Ńëĺäíčňĺ ďŕęĺňč ůĺ áúäŕň číńňŕëčđŕíč"
-#: ../../install_steps_gtk.pm_.c:387
+#: ../../install_steps_gtk.pm_.c:472
msgid "The following packages are going to be removed"
msgstr "Ńëĺäíčňĺ ďŕęĺňč ůĺ áúäŕň ďđĺěŕőíŕňč"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:482
msgid "You can't select/unselect this package"
msgstr "Íĺ ěîćĺňĺ äŕ îňáĺëĺćĺňĺ/äĺîňáĺëĺćĺňĺ ňîçč ďŕęĺň"
-#: ../../install_steps_gtk.pm_.c:416
+#: ../../install_steps_gtk.pm_.c:501
msgid "This is a mandatory package, it can't be unselected"
msgstr "Ňîâŕ ĺ íóćĺí ďŕęĺň, íĺ ěîćĺ äŕ áúäĺ íĺěŕđęčđŕí"
-#: ../../install_steps_gtk.pm_.c:418
+#: ../../install_steps_gtk.pm_.c:503
msgid "You can't unselect this package. It is already installed"
msgstr "Íĺ ěîćĺňĺ äŕ îńňŕâčňĺ ňîçč ďŕęĺň íĺěŕđęčđŕí. Ňîé âĺ÷ĺ ĺ číńňŕëčđŕí"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:507
msgid ""
"This package must be upgraded\n"
"Are you sure you want to deselect it?"
@@ -3851,27 +4284,24 @@ msgstr ""
"Ňîçč ďŕęĺň ňđ˙áâŕ äŕ áúäĺ îáíîâĺí\n"
"Ńčăóđíč ëč ńňĺ, ÷ĺ čńęŕňĺ äŕ ăî čçęëţ÷čňĺ ?"
-#: ../../install_steps_gtk.pm_.c:425
+#: ../../install_steps_gtk.pm_.c:510
msgid "You can't unselect this package. It must be upgraded"
msgstr "Íĺ ěîćĺňĺ äŕ čçęëţ÷čňĺ ňîçč ďŕęĺň. Ňîé ňđ˙áâŕ äŕ áúäĺ îáíîâĺí"
-#: ../../install_steps_gtk.pm_.c:469
+#: ../../install_steps_gtk.pm_.c:563
msgid "Estimating"
msgstr "Ďđĺńě˙ňŕíĺ"
-#: ../../install_steps_gtk.pm_.c:481 ../../interactive.pm_.c:86
-#: ../../interactive.pm_.c:249 ../../interactive_newt.pm_.c:51
-#: ../../interactive_newt.pm_.c:99 ../../interactive_stdio.pm_.c:27
-#: ../../my_gtk.pm_.c:246 ../../my_gtk.pm_.c:486
-msgid "Cancel"
-msgstr "Îňě˙íŕ"
+#: ../../install_steps_gtk.pm_.c:582
+msgid "Please wait, preparing installation"
+msgstr "Ěîë˙, čç÷ŕęŕéňĺ, ďîäăîňâ˙íĺ íŕ číńňŕëŕöč˙ňŕ"
-#: ../../install_steps_gtk.pm_.c:495
+#: ../../install_steps_gtk.pm_.c:613
#, c-format
msgid "%d packages"
msgstr "%d ďŕęĺňŕ"
-#: ../../install_steps_gtk.pm_.c:531
+#: ../../install_steps_gtk.pm_.c:652
msgid ""
"\n"
"Warning\n"
@@ -3902,12 +4332,45 @@ msgid ""
"respective authors and are protected by intellectual property and \n"
"copyright laws applicable to software programs.\n"
msgstr ""
+"\n"
+"Âíčěŕíčĺ\n"
+"\n"
+"Ěîë˙, ďđî÷ĺňĺňĺ óńëîâč˙ňŕ ďî-äîëó. Ŕęî íĺ ńňĺ ńúăëŕńíč ń í˙ęîĺ îň ň˙ő,\n"
+"íĺ ěîćĺňĺ äŕ ďđîäúëćčňĺ číńňŕëŕöč˙ňŕ íŕ ńëĺäâŕůč˙ CD íîńčňĺë. Íŕňčńíĺňĺ\n"
+"'Îňęŕćč', çŕ äŕ ďđîäúëćčňĺ číńňŕëŕöč˙ňŕ áĺç ňĺçč íîńčňĺëč.\n"
+"\n"
+"\n"
+"Í˙ęîč ęîěďîíĺíňč ńúäúđćŕůč ńĺ â ńëĺäâŕůč˙ CD íîńčňĺë íĺ ńŕ đŕçďđîńňđŕí˙âŕň\n"
+"ďîä GPL Ëčöĺíçŕ čëč ďîäîáĺí ňŕęúâ. Âńĺęč ňŕęúâ ęîěďîíĺíň ĺ ďîä óńëîâč˙ňŕ\n"
+"č ďîëîćĺíč˙ňŕ íŕ ńďĺöčôč÷íč˙ ěó ëčöĺíç. Ěîë˙, ďđî÷ĺňĺňĺ âíčěŕňĺëíî č čçö˙ëî\n"
+"ňĺçč ńďĺöčôč÷íč ëčöĺíçč ďđĺäč äŕ čçďîëçâŕňĺ čëč đŕçďđîńňđŕí˙âŕňĺ "
+"ńďîěĺíŕňčňĺ\n"
+"ęîěďîíĺíňč.\n"
+"Ňŕęčâŕ ëčöĺíçč ďî ďđčíöčď ďđĺäîňâđŕň˙âŕ ďđĺíîńŕ, ęîďčđŕíĺňî (îńâĺí ń öĺë\n"
+"ńúőđŕíĺíčĺ), đŕçďđîńňđŕí˙âŕíĺňî, îáđŕňíč˙ číćĺíĺđčíă, äĺŕńĺěáëčđŕíĺňî\n"
+"äĺęîěďčëŕöč˙ňŕ čëč ěîäčôčęŕöč˙ňŕ íŕ ęîěďîíĺíňčňĺ.\n"
+"Âń˙ęî íŕđóřŕâŕíĺ íŕ ńďîăîäáŕňŕ íĺçŕáŕâíî ďđĺóńňŕíîâ˙âŕ ďđŕâŕňŕ âč ďî\n"
+"ńďĺöčôč÷íč˙ ëčöĺíç. Îńâĺí ŕęî ńďĺöčôč÷íč˙ ëčöĺíç âč äŕâŕ ňŕęčâŕ ďđŕâŕ,\n"
+"îáčęíîâĺíî íĺ ěîćĺňĺ äŕ číńňŕëčđŕňĺ ďđîăđŕěčňĺ íŕ ďîâĺ÷ĺ îň ĺäíŕ ńčńňĺěŕ\n"
+"čëč äŕ ăč ďđčăŕćäŕňĺ çŕ čçďîëçâŕíĺ â ěđĺćŕ. Ŕęî íĺ ńňĺ ńčăóđíč, ěîë˙\n"
+"ńâúđćĺňĺ ńĺ ń äčńňđčáóöč˙ čëč đĺäŕęňîđŕ íŕ ęîěďîíĺíŕ.\n"
+"Ďđĺőâúđë˙íĺňî íŕ ňđĺňč ëčöŕ čëč ęîďčđŕíĺňî íŕ âń˙ęŕ ęîěďîíĺíňŕ, âęëţ÷čňĺëíî\n"
+"íŕ äîęóěĺíňŕöč˙ňŕ, îáčęíîâĺíî ńŕ çŕáđŕíĺíč.\n"
+"\n"
+"\n"
+"Âńč÷ęč ďđŕâŕ íŕ ęîěďîíĺíňčňĺ îň ńëĺäâŕůč˙ CD íîńčňĺë ďđčíŕäëĺćŕň íŕ\n"
+"ńúîňâĺňíčňĺ čě ŕâňîđč č ńŕ çŕůčňĺíč ęŕňî číňĺëĺęňóŕëíŕ ńîáńňâĺíîńň îň\n"
+"çŕęîíčňĺ çŕ ŕâňîđńęč ďđŕâŕ ďđčëîćčěč çŕ ńîôňóĺđíčňĺ ďđîăđŕěč.\n"
-#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+#: ../../install_steps_gtk.pm_.c:680 ../../install_steps_interactive.pm_.c:163
msgid "Accept"
msgstr "Ďđčĺěč"
-#: ../../install_steps_gtk.pm_.c:559
+#: ../../install_steps_gtk.pm_.c:680 ../../install_steps_interactive.pm_.c:163
+msgid "Refuse"
+msgstr "Îňęŕćč"
+
+#: ../../install_steps_gtk.pm_.c:681
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -3923,27 +4386,32 @@ msgstr ""
"Ŕęî ăî í˙ěŕňĺ, íŕňčńíĺňĺ Îňě˙íŕ, çŕ äŕ čçáĺăíĺňĺ číńňŕëčđŕíĺňî îň ňîçč "
"CD-ROM."
-#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
-msgid "Refuse"
-msgstr "Îňęŕćč"
-
-#: ../../install_steps_gtk.pm_.c:573
+#: ../../install_steps_gtk.pm_.c:699
msgid "There was an error installing packages:"
msgstr "Ďî˙âč ńĺ ăđĺřęŕ ďđč číńňŕëčđŕíĺ íŕ ďŕęĺňčňĺ:"
-#: ../../install_steps_interactive.pm_.c:38
+#: ../../install_steps_interactive.pm_.c:37
msgid "An error occurred"
msgstr "Ďî˙âč ńĺ ăđĺřęŕ"
-#: ../../install_steps_interactive.pm_.c:54
+#: ../../install_steps_interactive.pm_.c:55
msgid "Please, choose a language to use."
msgstr "Ěîë˙, čçáĺđĺňĺ čçďîëçâŕí ĺçčę."
-#: ../../install_steps_interactive.pm_.c:70
+#: ../../install_steps_interactive.pm_.c:56
+msgid "You can choose other languages that will be available after install"
+msgstr "Ěîćĺňĺ äŕ čçáĺđĺňĺ äđóăč ĺçčöč, ęîčňî ůĺ áúäŕň íŕëčöĺ ńëĺäčíńňŕëŕöč˙ňŕ"
+
+#: ../../install_steps_interactive.pm_.c:68
+#: ../../install_steps_interactive.pm_.c:613
+msgid "All"
+msgstr "Âńč÷ęč"
+
+#: ../../install_steps_interactive.pm_.c:86
msgid "License agreement"
-msgstr ""
+msgstr "Ëčöĺíçčîíĺí äîăîâîđ"
-#: ../../install_steps_interactive.pm_.c:71
+#: ../../install_steps_interactive.pm_.c:87
msgid ""
"Introduction\n"
"\n"
@@ -4063,131 +4531,222 @@ msgid ""
"Paris - France.\n"
"For any question on this document, please contact MandrakeSoft S.A. \n"
msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:154
-#: ../../standalone/keyboarddrake_.c:21
+"Âúâĺäĺňíčĺ\n"
+"\n"
+"Îďĺđŕöčîííŕňŕ ńčńňĺěŕ č đŕçëč÷íčňĺ ęîěďîíĺíňč äîńňúďíč â Linux-Mandrake "
+"äčńňđčáóöč˙ňŕ ďî-äîëó ůĺ ńĺ\n"
+"íŕđč÷ŕň \"Ńîôňóĺđĺí Ďđîäóęňč\". Ńîôňóĺđíčňĺ Ďđîäóęňč âęëţ÷âŕň, íî íĺ ńĺ "
+"îăđŕíč÷ŕâŕň ńŕěî äî, íŕáîđŕ\n"
+"ďđîăđŕěč, ěĺňîäč, ďđŕâčëŕ č äîęóěĺíňŕöč˙ îňíŕń˙ůŕ ńĺ äî îďĺđŕöčîííŕňŕ "
+"ńčńňĺěŕ č đŕçëč÷íčňĺ\n"
+"ęîěďîíĺíňč íŕ Linux-Mandrake äčńňđčáóöč˙ňŕ.\n"
+"\n"
+"\n"
+"1. Ëčöĺíçčîíĺí äîăîâîđ\n"
+"\n"
+"Ěîë˙, ďđî÷ĺňĺňĺ âíčěŕňĺëíî ňîçč äîęóěĺíň. Ňîçč äîęóěĺíň ĺ ëčöĺíçčîíĺí "
+"äîăîâîđ ěĺćäó âŕń č\n"
+"MandrakeSoft S.A., ęîéňî ńĺ îňíŕń˙ äî Ńîôňóĺđíč˙ Ďđîäóęň. ×đĺç "
+"číńňŕëčđŕíĺňî, ęîďčđŕíĺňî\n"
+"čëč čçďîëçâŕíĺňî íŕ Ńîôňóĺđíč˙ Ďđîäóęň ďî ęŕęúâňî č äŕ ĺ íŕ÷čí âčĺ čçđč÷íî "
+"ďđčĺěŕňĺ č\n"
+"íŕďúëíî ńĺ ńúăëŕń˙âŕňĺ äŕ ńďŕçâŕňĺ ńđîęîâĺňĺ č óńëîâč˙ňŕ íŕ ňîçč Ëčöĺíç.\n"
+"Ŕęî íĺ ńĺ ńúăëŕń˙âŕňĺ ń í˙ęî˙ ÷ŕńň íŕ Ëčöĺíçŕ, í˙ěŕňĺ ďđŕâî äŕ číńňŕëčđŕňĺ, "
+"ęîďčđŕňĺ čëč\n"
+"čçďîëçâŕňĺ Ńîôňóĺđíč˙ Ďđîäóęň. Îďčňčňĺ äŕ ńĺ číńňŕëčđŕ, ęîďčđŕ čëč čçďîëçâŕ "
+"Ńîôňóĺđíč˙ Ďđîäóęň\n"
+"íĺńúîáđŕçíî ńúń ńđîęîâĺňĺ č óńëîâč˙ňŕ íŕ ňîçč Ëčöĺíç ńĺ çŕáđŕí˙âŕň č ňŕęčâŕ "
+"ďđĺęđŕň˙âŕň ďđŕâŕňŕ\n"
+"âč ďî ňîçč Ëčöĺíç. Ďđč ďđĺęđŕň˙âŕíĺ íŕ Ëčöĺíçŕ, ňđ˙áâŕ íĺçŕáŕâíî äŕ "
+"óíčćňîćčňĺ âńč÷ęč\n"
+"ęîďč˙ íŕ Ńîôňóĺđíč˙ ëčöĺíç.\n"
+"\n"
+"\n"
+"2. Îăđŕíč÷ĺíŕ ăŕđŕíöč˙\n"
+"\n"
+"Ńîôňóĺđíčňĺ Ďđîäóęňč č ďđčëîćĺíŕňŕ äîęóěĺíňŕöč˙ ńĺ ďđĺäîńňŕâ˙ňŕ \"ňŕęčâŕ "
+"ęŕęâčňî ńŕ\", áĺç ăŕđŕíöč˙,\n"
+"â đŕěęčňĺ íŕ đŕçđĺřĺíîňî îň çŕęîíŕ.\n"
+"MandrakeSoft S.A., ďđč íčęŕęâč îáńňî˙ňĺëńňâŕ č â đŕěęčňĺ íŕ çŕęîíŕ, íĺ ĺ "
+"îňăîâîđíŕ çŕ ęŕęâčňî äŕ e\n"
+"óěčřëĺíč, ńëó÷ŕéíč, ďđĺęč čëč ęîńňâĺíč ůĺňč (âęëţ÷čňĺëíî çŕăóáŕ íŕ äŕííč çŕ "
+"đŕáîňŕ, ďđĺęđŕň˙âŕíĺ íŕ,\n"
+"đŕáîňŕ, ôčíŕíńîâč çŕăóáč, çŕęîííč äŕíúöč č íŕęŕçŕíč˙ â đĺçóëňŕň íŕ ńúäĺáíî "
+"đĺřĺíčĺ čëč ęŕęâŕňî č äŕ ĺ\n"
+"äđóăŕ ďđîčçëčçŕůč îň ňîâŕ çŕăóáč) ďđîčçňč÷ŕůč îň óďîňđĺáŕňŕ čëč îň "
+"íĺâúçěîćíîńňňŕ äŕ ńĺ óďîňđĺáč\n"
+"Ńîôňóĺđíč˙ Ďđîäóęň, äŕćĺ ŕęî MandrakeSoft S.A. äŕ ĺ čçâĺńňčëŕ çŕ "
+"âúçěîćíîńňňŕ čëč ńëó÷âŕíĺňî íŕ ňŕęŕâŕ çŕăóáŕ.\n"
+"\n"
+"ÎĂĐŔÍČ×ĹÍŔ ÎŇĂÎÂÎĐÍÎŃŇ ŃÂÚĐÇŔÍŔ Ń ĎĐČŇĹĆŔÂŔÍĹŇÎ ČËČ ČÇĎÎËÇÂŔÍĹŇÎ ÍŔ ÇŔÁĐŔÍĹÍ "
+"ŃÎÔŇÓĹĐ Â ÍßĘÎČ ŃŇĐŔÍČ\n"
+"\n"
+"Â đŕěęčňĺ íŕ çŕęîíŕ, MandrakeSoft S.A. č íĺéíčňĺ äčńňđčáóňîđč í˙ěŕ ďđč "
+"íčęŕęâč óńëîâč˙ äŕ áúäŕň\n"
+"îňăîâîđíč çŕ ęŕęâčňî č äŕ áčëî óěčřëĺíč, ńëó÷ŕéíč, ďđĺęč čëč ęîńâĺíč ůĺňč "
+"(âęëţ÷čňĺëíî çŕăóáŕ íŕ äŕííč\n"
+"çŕ đŕáîňŕ, ďđĺęđŕň˙âŕíĺ íŕ, đŕáîňŕ, ôčíŕíńîâč çŕăóáč, çŕęîííč äŕíúöč č "
+"íŕęŕçŕíč˙ â đĺçóëňŕň íŕ\n"
+"ńúäĺáíî đĺřĺíčĺ čëč ęŕęâŕňî č äŕ ĺ äđóăŕ ďđîčçëčçŕůč îň ňîâŕ çŕăóáč) "
+"ďđîčçňč÷ŕůč îň ďđčňĺćŕâŕíĺňî\n"
+"č óďîňđĺáŕňŕ íŕ ńîôňóĺđíč ęîěďîíĺíňč č îň čçňĺăë˙íĺňî íŕ ńîôňóĺđíč "
+"ęîěďîíĺíňč îň ńŕéňîâĺňĺ íŕ Linux-Mandrake,\n"
+"ęîčňî ńŕ çŕáđŕíĺíč â í˙ęîč ńňđŕíč îň ěĺńňíîňî çŕęîíîäŕňĺëńňâî.\n"
+"Ňŕçč îăđŕíč÷ĺíŕ îňăîâîđíîńň ńĺ îňíŕń˙ äî, íî íĺ ńŕěî çŕ, ěîůíčňĺ "
+"ęđčďňîăđŕôńęč ęîěďîíĺíňč âęëţ÷ĺíč\n"
+"â Ńîôňóĺđíč˙ Ďđîäóęň.\n"
+"\n"
+"\n"
+"3. GPL Ëčöĺíçŕ č ďđčäđóćŕâŕůč ëčöĺíçč\n"
+"\n"
+"Ńîôňóĺđíč˙ň Ďđîäóęň ńĺ ńúńňîč îň ęîěďîíĺíňč ńúçäŕäĺíč îň đŕçëč÷íč őîđŕ čëč "
+"îđăŕíčçŕöčč. Ďîâĺ÷ĺňî îň\n"
+"ňĺçč ęîěďîíĺíňč ńĺ óďđŕâë˙âŕň îň ńđîęîâĺňĺ č óńëîâč˙ňŕ íŕ GNU Îáůč˙ Ďóáëč÷ĺí "
+"Ëčöĺíç, îňňóę íŕňŕňúę íŕđč÷ŕí\n"
+"\"GPL\", čëč ďîäîáíč íĺěó ëčöĺíçč. Ďîâĺ÷ĺňî îň ňĺçč ëčöĺíçč âč ďîçâîë˙âŕň äŕ "
+"čçďîëçâŕňĺ, ęîďčđŕňĺ, čëč\n"
+"đĺäčńňđčáóňčđŕňĺ ęîěďîíĺíňčňĺ, ęîčňî ňĺ ďîęđčâŕň. Ěîë˙, ďđî÷ĺňĺňĺ âíčěŕňĺëíî "
+"ńđîęîâĺňĺ č óńëîâč˙ňŕ íŕ\n"
+"ëčöĺíçčîííč˙ äîăîâîđ íŕ âńĺęč ęîěďîíĺíň ďđĺäč äŕ ăî čçďîëçâŕňĺ. Âń˙ęŕęâč "
+"âúďđîńč îňíîńíî ëčöĺíçŕ\n"
+"íŕ ęîěďîíĺíňčňĺ áč ňđ˙áâŕëî äŕ áúäŕň íŕńî÷ĺíč ęúě ńúîňâĺňíč˙ čě ŕâňîđ, ŕ íĺ "
+"ęúě MandrakeSoft.\n"
+"Ďđîăđŕěčňĺ đŕçđŕáîňĺíč îň MandrakeSoft S.A. ńĺ óďđŕâë˙âŕň îň GPL Ëčöĺíçŕ. "
+"Äîęóěĺíňŕöč˙ňŕ íŕďčńŕíŕ\n"
+"îň MandrakeSoft S.A. ńĺ óďđŕâë˙âŕ îň ńďĺöčŕëĺí ëčöĺíç. Ěîë˙, ďîăëĺäíĺňĺ "
+"äîęóěĺíňŕöč˙ňŕ çŕ\n"
+"ďîâĺ÷ĺ číôîđěŕöč˙.\n"
+"\n"
+"\n"
+"4. Ďđŕâŕ çŕ Číňĺëĺęňóŕëíŕ Ńîáńňâĺíîńň\n"
+"\n"
+"Âńč÷ęč ďđŕâŕ ęúě ęîěďîíĺíňčňĺ íŕ Ńîôňóĺđíč˙ Ďđîäóęň ďđčíŕäëĺćŕň íŕ "
+"ńúîňâĺňíčňĺ čě ŕâňîđč č ńŕ\n"
+"çŕůčňĺíč îň çŕęîíčňĺ çŕ číňĺëĺęňóŕëíŕňŕ ńîáńňâĺíîńň č çŕ ęîďčđŕíĺ ďđčëŕăŕíč "
+"çŕ ńîôňóĺđíčňĺ ďđîăđŕěč.\n"
+"MandrakeSoft S.A. çŕďŕçâŕ ďđŕâîňî ńč äŕ ěîäčôčöčđŕ č ďđčăîä˙âŕ Ńîôňóĺđíč˙ "
+"Ďđîäóęň, ęŕňî ö˙ëî čëč íŕ\n"
+"÷ŕńňč, ďî âń˙ęŕęúâ íŕ÷čě î ń âń˙ęŕęâč öĺëč.\n"
+"\"Mandrake\", \"Linux-Mandrake\" č ńâúđçŕíčňĺ ëîăîňŕ ńŕ çŕďŕçĺíŕ ěŕđęŕ íŕ "
+"MandrakeSoft S.A.\n"
+"\n"
+"\n"
+"5. Óďđŕâë˙âŕůč Çŕęîíč\n"
+"\n"
+"Ŕęî í˙ęî˙ ÷ŕńň îň ňîçč äîăîâîđ ńĺ âîäč çŕáđŕíĺíŕ, íĺëĺăŕëíŕ čëč íĺďđčëîćčěŕ "
+"ńďîđĺä đĺřĺíčĺ íŕ ńúä,\n"
+"ňŕçč ÷ŕńň ńĺ čçęëţ÷âŕ îň äîăîâîđŕ. Âčĺ îńňŕâŕňĺ îăđŕíč÷ĺíč îň îńňŕíŕëčňĺ "
+"ďđčëîćčěč ńĺęöčč íŕ äîăîâîđŕ.\n"
+"Ńđîęîâĺňĺ č óńëîâč˙ňŕ íŕ ňîçč Ëčöĺíç ńĺ óďđŕâë˙âŕň îň Çŕęîíčňĺ íŕ Ôđŕíöč˙.\n"
+"Âńč÷ęč ńďîđîâĺ ďî óńëîâč˙ňŕ íŕ ňîçč ëčöĺç áč áčëî äîáđĺ äŕ ńĺ îňíĺńŕň äî "
+"ńúäŕ. Ęŕňî ęđŕéíŕ ě˙đęŕ,\n"
+"ńďîđîâĺňĺ ůĺ áúäŕň îňíŕń˙íč äî ďîäőîä˙ůč˙ ďđŕâíč ńúäčëčůŕ íŕ Ďŕđčć - "
+"Ôđŕíöč˙.\n"
+"Çŕ âń˙ęŕęâč âúďđîńč ďî ňîçč äîęóěĺíň, ěîë˙, ńâúđćĺňĺ ńĺ ń MandrakeSoft S.A.\n"
+"\n"
+"ÇŔÁĹËĹĆĘŔ: Ňîâŕ ĺ áúëăŕđńęč ďđčáëčçčňĺëĺí ďđĺâîä íŕ äîęóěĺíňŕ, ęîĺňî "
+"îçíŕ÷ŕâŕ, ÷ĺ ňîé\n"
+"âĺđî˙ňíî íĺ ĺ äîńňŕňú÷íî ňî÷ĺí. Ęŕňî ďî-äîńňîâĺđĺí čçňî÷íčę ďîëçâŕéňĺ "
+"íĺăîâč˙ îđčăčíŕë íŕ\n"
+"ŕíăëčéńęč.\n"
+
+#: ../../install_steps_interactive.pm_.c:182
+#: ../../install_steps_interactive.pm_.c:822
+#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Ęëŕâčŕňóđŕ"
-#: ../../install_steps_interactive.pm_.c:155
-#: ../../standalone/keyboarddrake_.c:22
+#: ../../install_steps_interactive.pm_.c:183
+#: ../../standalone/keyboarddrake_.c:29
msgid "Please, choose your keyboard layout."
msgstr "Ěîë˙, čçáĺđĺňĺ ďîäđĺćäŕíĺ íŕ ęëŕâčŕňóđŕňŕ."
-#: ../../install_steps_interactive.pm_.c:166
-msgid "You can choose other languages that will be available after install"
-msgstr "Ěîćĺňĺ äŕ čçáĺđĺňĺ äđóăč ĺçčöč, ęîčňî ůĺ áúäŕň íŕëčöĺ ńëĺäčíńňŕëŕöč˙ňŕ"
+#: ../../install_steps_interactive.pm_.c:184
+msgid "Here is the full list of keyboards available"
+msgstr "Ĺňî ďúëĺí ńďčńúę íŕ äîńňđúďíčňĺ ęëŕâčŕňóđč"
-#: ../../install_steps_interactive.pm_.c:173
-#: ../../install_steps_interactive.pm_.c:520
-msgid "All"
-msgstr "Âńč÷ęč"
-
-#: ../../install_steps_interactive.pm_.c:181
-#: ../../install_steps_interactive.pm_.c:227
+#: ../../install_steps_interactive.pm_.c:201
msgid "Install Class"
msgstr "Ęëŕń číńňŕëŕöč˙"
-#: ../../install_steps_interactive.pm_.c:181
+#: ../../install_steps_interactive.pm_.c:201
msgid "Which installation class do you want?"
msgstr "Ęŕęúâ ęëŕń číńňŕëŕöč˙ ćĺëŕĺňĺ ?"
-#: ../../install_steps_interactive.pm_.c:183
+#: ../../install_steps_interactive.pm_.c:203
msgid "Install/Update"
msgstr "Číńňŕëčđŕé/Îáíîâč"
-#: ../../install_steps_interactive.pm_.c:183
+#: ../../install_steps_interactive.pm_.c:203
msgid "Is this an install or an update?"
msgstr "Ňîâŕ íîâŕ číńňŕëŕöč˙ ëč ĺ čëč îáíîâ˙âŕíĺ ?"
-#: ../../install_steps_interactive.pm_.c:192
+#: ../../install_steps_interactive.pm_.c:212
msgid "Recommended"
msgstr "Ďđĺďîđú÷čňĺëíŕ"
-#: ../../install_steps_interactive.pm_.c:195
-#: ../../install_steps_interactive.pm_.c:211
-msgid "Customized"
-msgstr "Ńďĺöčŕëčçčđŕíŕ"
-
-#: ../../install_steps_interactive.pm_.c:196
-#: ../../install_steps_interactive.pm_.c:211
+#: ../../install_steps_interactive.pm_.c:215
+#: ../../install_steps_interactive.pm_.c:218
msgid "Expert"
msgstr "Ĺęńďĺđňíŕ"
-#: ../../install_steps_interactive.pm_.c:206
-msgid ""
-"Are you sure you are an expert? \n"
-"You will be allowed to make powerful but dangerous things here.\n"
-"\n"
-"You will be asked questions such as: ``Use shadow file for passwords?'',\n"
-"are you ready to answer that kind of questions?"
-msgstr ""
-"Ńčăóđíč ëč ńňĺ, ÷ĺ ńňĺ ĺęńďĺđň ?\n"
-"Ňóę ůĺ âč áúäŕň ďîçâîëĺíč ěîůíč, íî îďŕńíč íĺůŕ.\n"
-"Ŕęî Âč áúäĺ çŕäŕäĺí âúďđîń: ``Use shadow file for passwords?'',\n"
-"ůĺ ěîćĺňĺ ëč äŕ ăî đŕáĺđĺňĺ č îňăîâîđčňĺ?"
-
-#: ../../install_steps_interactive.pm_.c:216
+#: ../../install_steps_interactive.pm_.c:226
msgid "Update"
msgstr "Îáíîâ˙âŕíĺ"
-#: ../../install_steps_interactive.pm_.c:222
-msgid "Workstation"
-msgstr "Đŕáîňíŕ ńňŕíöč˙"
-
-#: ../../install_steps_interactive.pm_.c:223
-msgid "Development"
-msgstr "Çŕ đŕçđŕáîňęŕ"
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Server"
-msgstr "Ńúđâúđ"
-
-#: ../../install_steps_interactive.pm_.c:228
-msgid "What is your system used for?"
-msgstr "Çŕ ęŕęâî ńĺ óďîňđĺá˙âŕ ńčńňĺěŕňŕ âč ?"
-
-#: ../../install_steps_interactive.pm_.c:244 ../../standalone/mousedrake_.c:24
+#: ../../install_steps_interactive.pm_.c:238 ../../standalone/mousedrake_.c:31
msgid "Please, choose the type of your mouse."
msgstr "Ěîë˙, čçáĺđĺňĺ ňčď íŕ ěčřęŕňŕ."
-#: ../../install_steps_interactive.pm_.c:251 ../../standalone/mousedrake_.c:40
+#: ../../install_steps_interactive.pm_.c:244 ../../standalone/mousedrake_.c:46
msgid "Mouse Port"
msgstr "Ďîđň íŕ ěčřęŕňŕ"
-#: ../../install_steps_interactive.pm_.c:252
+#: ../../install_steps_interactive.pm_.c:245 ../../standalone/mousedrake_.c:47
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Ěîë˙, čçáĺđĺňĺ ęúě ęîé ńĺđčĺí ďîđň ĺ ńâúđçŕíŕ ěčřęŕňŕ âč."
-#: ../../install_steps_interactive.pm_.c:271
+#: ../../install_steps_interactive.pm_.c:253
+msgid "Buttons emulation"
+msgstr "Čěčňŕöč˙ íŕ áóňîíč"
+
+#: ../../install_steps_interactive.pm_.c:255
+msgid "Button 2 Emulation"
+msgstr "Čěčňŕöč˙ íŕ 2 áóňîíŕ"
+
+#: ../../install_steps_interactive.pm_.c:256
+msgid "Button 3 Emulation"
+msgstr "Čěčňŕöč˙ íŕ 3 áóňîíŕ"
+
+#: ../../install_steps_interactive.pm_.c:275
msgid "Configuring PCMCIA cards..."
msgstr "Íŕńňđîéęŕ íŕ PCMCIA ęŕđňčňĺ ..."
-#: ../../install_steps_interactive.pm_.c:271
+#: ../../install_steps_interactive.pm_.c:275
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:275
+#: ../../install_steps_interactive.pm_.c:280
msgid "Configuring IDE"
msgstr "Íŕńňđîéęŕ íŕ IDE"
-#: ../../install_steps_interactive.pm_.c:275
+#: ../../install_steps_interactive.pm_.c:280
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:288
+#: ../../install_steps_interactive.pm_.c:295
msgid "no available partitions"
msgstr "í˙ěŕ ä˙ëîâĺ íŕ đŕçďîëîćĺíčĺ"
-#: ../../install_steps_interactive.pm_.c:291
+#: ../../install_steps_interactive.pm_.c:298
msgid "Scanning partitions to find mount points"
msgstr "Ďđĺňúđńâŕíĺ íŕ ä˙ëîâĺňĺ çŕ íŕěčđŕíĺ íŕ ňî÷ęč íŕ ěîíňčđŕíĺ"
-#: ../../install_steps_interactive.pm_.c:299
+#: ../../install_steps_interactive.pm_.c:306
msgid "Choose the mount points"
msgstr "Čçáĺđĺňĺ ěĺńňŕ çŕ ěîíňčđŕíĺ"
-#: ../../install_steps_interactive.pm_.c:316
+#: ../../install_steps_interactive.pm_.c:323
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -4203,7 +4762,7 @@ msgstr ""
"Äđóăî đĺřĺíčĺ ĺ äŕ çŕáđŕíčňĺ íŕ DrakX ďîďđŕâ˙ ňŕáëčöŕňŕ ń ä˙ëîâĺ.\n"
"(ăđĺřęŕňŕ ĺ %s)\n"
-#: ../../install_steps_interactive.pm_.c:329
+#: ../../install_steps_interactive.pm_.c:336
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4211,87 +4770,79 @@ msgstr ""
"DiskDrake íĺ óńď˙ äŕ đŕç÷ĺňĺ ďđŕâčëíî ňŕáëčöŕňŕ íŕ ä˙ëîâĺňĺ.\n"
"Ďđîäúëćčňĺ íŕ ńîáńňâĺí đčńę !"
-#: ../../install_steps_interactive.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:361
msgid "Root Partition"
msgstr "Root ä˙ë"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:362
msgid "What is the root partition (/) of your system?"
msgstr "Ęîé ĺ root-ä˙ëúň (/) íŕ ńčńňĺěŕňŕ âč ?"
-#: ../../install_steps_interactive.pm_.c:352
+#: ../../install_steps_interactive.pm_.c:376
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Íŕëŕăŕ ńĺ đŕ đĺńňŕđňčđŕňĺ, ďđĺäč ěîäčôčęŕöččňĺ äŕ ďđĺäčçâčęŕň ĺôĺęň"
-#: ../../install_steps_interactive.pm_.c:376
+#: ../../install_steps_interactive.pm_.c:403
msgid "Choose the partitions you want to format"
msgstr "Čçáĺđĺňĺ ä˙ëîâĺňĺ, ęîčňî čńęŕňĺ äŕ ôîđěŕňčđŕňĺ"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:404
msgid "Check bad blocks?"
msgstr "Ďđîâĺđęŕ çŕ ëîřč ńĺęňîđč ?"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:427
msgid "Formatting partitions"
msgstr "Ôîđěŕňčđŕíĺ íŕ ä˙ëowe"
-#: ../../install_steps_interactive.pm_.c:401
+#: ../../install_steps_interactive.pm_.c:429
#, c-format
msgid "Creating and formatting file %s"
msgstr "Ńúçäŕâŕíĺ č ôîđěŕňčđŕíĺ íŕ ôŕéëŕ %s"
-#: ../../install_steps_interactive.pm_.c:404
+#: ../../install_steps_interactive.pm_.c:432
msgid "Not enough swap to fulfill installation, please add some"
msgstr ""
"Í˙ěŕ äîńňŕňú÷íî swap çŕ ďđčęëţ÷âŕíĺ íŕ číńňŕëŕöč˙ňŕ, ěîë˙ äîáŕâĺňĺ ěŕëęî"
-#: ../../install_steps_interactive.pm_.c:410
+#: ../../install_steps_interactive.pm_.c:438
msgid "Looking for available packages"
msgstr "Ňúđń˙ íŕëč÷íč ďŕęĺňč"
-#: ../../install_steps_interactive.pm_.c:416
+#: ../../install_steps_interactive.pm_.c:444
msgid "Finding packages to upgrade"
msgstr "Ňúđń˙ ďŕęĺňč çŕ îáíîâ˙âŕíĺ"
-#: ../../install_steps_interactive.pm_.c:433
+#: ../../install_steps_interactive.pm_.c:461
#, c-format
msgid ""
"Your system has not enough space left for installation or upgrade (%d > %d)"
msgstr ""
"Ńčńňĺěŕňŕ âč í˙ěŕ äîńňŕňú÷íî ě˙ńňî çŕ číńňŕëŕöč˙ čëč îáíîâ˙âŕíĺ (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:449
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid "Complete (%dMB)"
msgstr "Ďúëíŕ (%dMB)"
-#: ../../install_steps_interactive.pm_.c:449
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid "Minimum (%dMB)"
msgstr "Ěčíčěŕëíŕ (%d Mb)"
-#: ../../install_steps_interactive.pm_.c:449
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid "Recommended (%dMB)"
msgstr "Ďđĺďîđú÷čňĺëíŕ (%dMb)"
-#: ../../install_steps_interactive.pm_.c:455
+#: ../../install_steps_interactive.pm_.c:486
msgid "Custom"
msgstr "Ęëčĺíňńęŕ"
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Select the size you want to install"
-msgstr "Čçáĺđĺňĺ đŕçěĺđŕ, ęîéňî čńęŕňĺ äŕ číńňŕëčđŕě"
-
-#: ../../install_steps_interactive.pm_.c:508
-msgid "Package Group Selection"
-msgstr "Čçáîđ íŕ ăđóďŕ ďŕęĺňč"
-
-#: ../../install_steps_interactive.pm_.c:521
-msgid "Individual package selection"
-msgstr "Čçáčđŕíĺ íŕ ďŕęĺňč ĺäčí ďî ĺäčí"
+#: ../../install_steps_interactive.pm_.c:585
+msgid "Selected size is larger than available space"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:570
+#: ../../install_steps_interactive.pm_.c:650
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4301,13 +4852,12 @@ msgstr ""
"Ŕęî í˙ěŕňĺ íčňî ĺäíî îň ňĺçč CD-ňŕ, íŕňčńíĺňĺ Îňě˙íŕ.\n"
"Ŕęî âč ëčďńâŕň í˙ęîč CD-ňŕ, ěŕőíĺňĺ ăč, č íŕňčńíĺňĺ Ok. "
-# c-format
-#: ../../install_steps_interactive.pm_.c:575
+#: ../../install_steps_interactive.pm_.c:655
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM îçŕăëŕâĺí \"%s\""
-#: ../../install_steps_interactive.pm_.c:603
+#: ../../install_steps_interactive.pm_.c:684
msgid ""
"Installing package %s\n"
"%d%%"
@@ -4315,11 +4865,11 @@ msgstr ""
"Číńňŕëčđŕě ďŕęĺň %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:612
+#: ../../install_steps_interactive.pm_.c:693
msgid "Post-install configuration"
msgstr "Ńëĺä číńňŕëŕöčîííŕ íŕńňđîéęŕ"
-#: ../../install_steps_interactive.pm_.c:637
+#: ../../install_steps_interactive.pm_.c:718
msgid ""
"You have now the possibility to download software aimed for encryption.\n"
"\n"
@@ -4385,144 +4935,93 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:669
+#: ../../install_steps_interactive.pm_.c:750
msgid "Choose a mirror from which to get the packages"
msgstr "Čçáĺđĺňĺ îăëĺäŕëĺí ńúđâúđ,îň ęîéňî äŕ ďîëó÷čňĺ ďŕęĺňčňĺ"
-#: ../../install_steps_interactive.pm_.c:680
+#: ../../install_steps_interactive.pm_.c:761
msgid "Contacting the mirror to get the list of available packages"
msgstr "Ńâúđçâŕíĺ ń îăëĺäŕëíč˙ ńúđâúđ çŕ ďîëó÷ŕâŕíĺ íŕ ńďčńúęŕ ń ďŕęĺňčňĺ"
-#: ../../install_steps_interactive.pm_.c:683
+#: ../../install_steps_interactive.pm_.c:764
msgid "Please choose the packages you want to install."
msgstr "Ěîë˙, čçáĺđĺňĺ ďŕęĺňčňĺ, ęîčňî čńęŕňĺ äŕ číńňŕëčđŕňĺ."
-#: ../../install_steps_interactive.pm_.c:695
+#: ../../install_steps_interactive.pm_.c:776
msgid "Which is your timezone?"
msgstr "Ęî˙ ĺ âđĺěĺâŕňŕ âč çîíŕ ?"
-#: ../../install_steps_interactive.pm_.c:697
+#: ../../install_steps_interactive.pm_.c:778
msgid "Is your hardware clock set to GMT?"
msgstr "Őŕäđóĺđíč˙ň âč ÷ŕńîâíčę íŕńňđîĺí ëč ĺ ďî GMT?"
-#: ../../install_steps_interactive.pm_.c:735
+#: ../../install_steps_interactive.pm_.c:806 ../../printer.pm_.c:22
+#: ../../printerdrake.pm_.c:415
+msgid "Remote CUPS server"
+msgstr "Îňäŕëĺ÷ĺí CUPS ńúđâúđ"
+
+#: ../../install_steps_interactive.pm_.c:807
+msgid "No printer"
+msgstr "Í˙ěŕ ďđčíňĺđ"
+
+#: ../../install_steps_interactive.pm_.c:821
+msgid "Mouse"
+msgstr "Ěčřęŕ"
+
+#: ../../install_steps_interactive.pm_.c:823
+msgid "Timezone"
+msgstr "×ŕńîâŕ çîíŕ"
+
+#: ../../install_steps_interactive.pm_.c:824 ../../printerdrake.pm_.c:344
+msgid "Printer"
+msgstr "Ďđčíňĺđ"
+
+#: ../../install_steps_interactive.pm_.c:826
+msgid "ISDN card"
+msgstr "ISDN ęŕđňŕ"
+
+#: ../../install_steps_interactive.pm_.c:829
+msgid "Sound card"
+msgstr "Çâóęîâŕ ęŕđňŕ"
+
+#: ../../install_steps_interactive.pm_.c:832
+msgid "TV card"
+msgstr "TV ęŕđňŕ"
+
+#: ../../install_steps_interactive.pm_.c:862
msgid "Which printing system do you want to use?"
msgstr "Ęŕęâŕ ńčńňĺěŕ íŕ ďĺ÷ŕň čńęŕňĺ äŕ čçďîëçâŕňĺ ?"
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:896
msgid "No password"
msgstr "Áĺç ďŕđîëŕ"
-#: ../../install_steps_interactive.pm_.c:767
-msgid "Use shadow file"
-msgstr "Čçďîëçâŕé shadow ôŕéë"
-
-#: ../../install_steps_interactive.pm_.c:767
-msgid "shadow"
-msgstr "shadow"
-
-#: ../../install_steps_interactive.pm_.c:768
-msgid "MD5"
-msgstr "MD5"
-
-#: ../../install_steps_interactive.pm_.c:768
-msgid "Use MD5 passwords"
-msgstr "Čçďîëçâŕé MD5 ďŕđîëč"
+#: ../../install_steps_interactive.pm_.c:901
+#, c-format
+msgid "This password is too simple (must be at least %d characters long)"
+msgstr "Ďŕđîëŕňŕ ĺ ďđĺęŕëĺíî ďđîńňŕ (ňđ˙áâŕ äŕ áúäĺ äúëăŕ ďîíĺ %d ńčěâîëŕ)"
-#: ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:907
msgid "Use NIS"
msgstr "Čçďîëçâŕé NIS"
-#: ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:907
msgid "yellow pages"
msgstr "ćúëňč ńňđŕíčöč"
-#: ../../install_steps_interactive.pm_.c:776
-#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
-msgstr "Ďŕđîëŕňŕ ĺ ďđĺęŕëĺíî ďđîńňŕ (ňđ˙áâŕ äŕ áúäĺ äúëăŕ ďîíĺ %d ńčěâîëŕ)"
-
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:912
msgid "Authentification NIS"
msgstr "Čäĺíňčôčęŕöč˙ ďî NIS"
-#: ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_interactive.pm_.c:913
msgid "NIS Domain"
msgstr "NIS äîěĺéí"
-#: ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_interactive.pm_.c:914
msgid "NIS Server"
msgstr "NIS ńúđâúđ"
-#: ../../install_steps_interactive.pm_.c:809
-#: ../../standalone/adduserdrake_.c:36
-msgid "Accept user"
-msgstr "Ďđčĺěč ďîňđĺáčňĺë"
-
-#: ../../install_steps_interactive.pm_.c:809
-#: ../../standalone/adduserdrake_.c:36
-msgid "Add user"
-msgstr "Äîáŕâč ďîňđĺáčňĺë"
-
-#: ../../install_steps_interactive.pm_.c:810
-#: ../../standalone/adduserdrake_.c:37
-#, c-format
-msgid "(already added %s)"
-msgstr "(âĺ÷ĺ ďđčáŕâčő %s)"
-
-#: ../../install_steps_interactive.pm_.c:810
-#: ../../standalone/adduserdrake_.c:37
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Âúâĺäĺňĺ ďîňđĺáčňĺë\n"
-"%s"
-
-#: ../../install_steps_interactive.pm_.c:812
-#: ../../standalone/adduserdrake_.c:39
-msgid "Real name"
-msgstr "Čńňčíńęî čěĺ"
-
-#: ../../install_steps_interactive.pm_.c:813 ../../printerdrake.pm_.c:93
-#: ../../printerdrake.pm_.c:127 ../../standalone/adduserdrake_.c:40
-msgid "User name"
-msgstr "Ďîňđĺáčňĺëńęî čěĺ"
-
-#: ../../install_steps_interactive.pm_.c:818
-#: ../../standalone/adduserdrake_.c:45
-msgid "Shell"
-msgstr "Řĺë"
-
-#: ../../install_steps_interactive.pm_.c:820
-#: ../../standalone/adduserdrake_.c:47
-msgid "Icon"
-msgstr "Čęîíŕ"
-
-#: ../../install_steps_interactive.pm_.c:830
-#: ../../standalone/adduserdrake_.c:57
-msgid "This password is too simple"
-msgstr "Ňŕçč ďŕđîëŕ ĺ ďđĺęŕëĺíî ďđîńňŕ"
-
-#: ../../install_steps_interactive.pm_.c:831
-#: ../../standalone/adduserdrake_.c:58
-msgid "Please give a user name"
-msgstr "Ěîë˙, çŕäŕéňĺ ďîňđĺáčňĺëńęî čěĺ"
-
-#: ../../install_steps_interactive.pm_.c:832
-#: ../../standalone/adduserdrake_.c:59
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr ""
-"Ďîňđĺáčňĺëńęîňî čěĺ ěîćĺ äŕ âęëţ÷âŕ ńŕěî ěŕëęč áóęâč, íîěĺđŕ, `-' č `_'"
-
-#: ../../install_steps_interactive.pm_.c:833
-#: ../../standalone/adduserdrake_.c:60
-msgid "This user name is already added"
-msgstr "Ňîâŕ ďîňđĺáčňĺëńęî čěĺ ĺ âĺ÷ĺ äîáŕâĺíî"
-
-#: ../../install_steps_interactive.pm_.c:857
+#: ../../install_steps_interactive.pm_.c:948
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 "
@@ -4551,19 +5050,19 @@ msgstr ""
"Ŕęî čńęŕňĺ äŕ ńúçäŕäĺňĺ bootdisk çŕ âŕřŕňŕ ńčńňĺěŕ, ďîńňŕâĺňĺ äčńęĺňŕ â\n"
"ďúđâîňî óńňđîéńňâî č íŕňčńíĺňĺ \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:873
+#: ../../install_steps_interactive.pm_.c:964
msgid "First floppy drive"
msgstr "Ďúđâî ôëîďč óńňđîéńňâî"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:965
msgid "Second floppy drive"
msgstr "Âňîđî ôëîďč óńňđîéńňâî"
-#: ../../install_steps_interactive.pm_.c:875
+#: ../../install_steps_interactive.pm_.c:966
msgid "Skip"
msgstr "Ďđĺńęî÷č"
-#: ../../install_steps_interactive.pm_.c:880
+#: ../../install_steps_interactive.pm_.c:971
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 "
@@ -4586,32 +5085,32 @@ msgstr ""
"ńďŕńčňĺëíŕňŕ äčńęĺňŕ íŕ Mandrake, óëĺńí˙âŕůŕ âúçńňŕíîâ˙âŕíĺňî ďđč đĺäęč\n"
"ńëó÷ŕč íŕ ńđčâ. Čńęŕňĺ ëč äŕ ńúçäŕě bootdisk çŕ ńčńňĺěŕňŕ âč ?"
-#: ../../install_steps_interactive.pm_.c:889
+#: ../../install_steps_interactive.pm_.c:980
msgid "Sorry, no floppy drive available"
msgstr "Ńúćŕë˙âŕě í˙ěŕ ôëîďč"
-#: ../../install_steps_interactive.pm_.c:892
+#: ../../install_steps_interactive.pm_.c:984
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr "Čçáĺđĺňĺ ôëîďč äđŕéâ,ęúäĺňî äŕ íŕďđŕâčňĺ ńňŕđňčđŕůŕ äčńęĺňŕ"
-#: ../../install_steps_interactive.pm_.c:898
+#: ../../install_steps_interactive.pm_.c:988
#, c-format
msgid "Insert a floppy in drive %s"
msgstr "Ńëîćĺňĺ äčńęĺňŕ â óńňđîéńňâî %s"
-#: ../../install_steps_interactive.pm_.c:901
+#: ../../install_steps_interactive.pm_.c:991
msgid "Creating bootdisk"
msgstr "Ńúçäŕâŕíĺ íŕ ńňŕđňčđŕůŕ äčńęĺňŕ"
-#: ../../install_steps_interactive.pm_.c:908
+#: ../../install_steps_interactive.pm_.c:998
msgid "Preparing bootloader"
msgstr "Ďîäăîňîâęŕ íŕ bootloader"
-#: ../../install_steps_interactive.pm_.c:917
+#: ../../install_steps_interactive.pm_.c:1007
msgid "Do you want to use aboot?"
msgstr "Čńęŕňĺ ëč äŕ čçďîëçâŕňĺ aboot ?"
-#: ../../install_steps_interactive.pm_.c:920
+#: ../../install_steps_interactive.pm_.c:1010
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -4619,118 +5118,59 @@ msgstr ""
"Ăđĺřęŕ ďđč číńňŕëčđŕíĺ íŕ aboot, \n"
"äŕ ńĺ îďčňŕě ëč äŕ ďđîäúëćŕ číńňŕëŕöč˙ňŕ äîđč, ŕęî ňîâŕ óíčćňîćč ďúđâč˙ ä˙ë ?"
-#: ../../install_steps_interactive.pm_.c:929
+#: ../../install_steps_interactive.pm_.c:1019
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Číńňŕëŕöč˙ňŕ íŕ bootloader ďđîâŕëĺíŕ. Ďî˙âč ńĺ ńëĺäíŕňŕ ăđĺřęŕ:"
-#: ../../install_steps_interactive.pm_.c:943 ../../standalone/draksec_.c:20
-msgid "Welcome To Crackers"
-msgstr "Äîáđĺ äîřëč ďđč Cracker-čňĺ"
-
-#: ../../install_steps_interactive.pm_.c:944 ../../standalone/draksec_.c:21
-msgid "Poor"
-msgstr "Ëîřî"
+#: ../../install_steps_interactive.pm_.c:1027
+msgid ""
+"You may need to change your Open Firmware boot-device to\n"
+" enable the bootloader. If you don't see the bootloader prompt at\n"
+" reboot, hold down Command-Option-O-F at reboot and enter:\n"
+" setenv boot-device $of_boot,\\\\tbxi\n"
+" Then type: shut-down\n"
+"At your next boot you should see the bootloader prompt."
+msgstr ""
+"Ěîćĺ áč ńĺ íóćäŕĺňĺ äŕ ďđîěĺíčňĺ Open Firmware ńňŕđňîâîňî óńňđîéńňâî,\n"
+" çŕ äŕ ďóńíĺňĺ çŕđĺćäŕůŕňŕ ďđîăđŕěŕ. Ŕęî íĺ âčćäŕňĺ ďîäńęŕçęŕňŕ č ďđč\n"
+" đĺńňŕđňčđŕíĺ, çŕäđúćňĺ Command-Option-O-F ďđč đĺńňŕđňčđŕíĺ č íŕďčřĺňĺ:\n"
+" setenv boot-device $of_boot,\\\\\tbxi\n"
+" Ńëĺä ęîĺňî íŕďčřĺňĺ: shut-down\n"
+"Ďđč ńëĺäâŕůîňî đĺńňŕđňčđŕíĺ áč ňđ˙áâŕëî äŕ âčäĺňĺ ďîäńęŕçęŕňŕ íŕ\n"
+" ńňŕđňčđŕůŕňŕ ďđîăđŕěŕ."
-#: ../../install_steps_interactive.pm_.c:945 ../../standalone/draksec_.c:22
+#: ../../install_steps_interactive.pm_.c:1035 ../../standalone/draksec_.c:23
msgid "Low"
msgstr "Ńëŕáî"
-#: ../../install_steps_interactive.pm_.c:946 ../../standalone/draksec_.c:23
+#: ../../install_steps_interactive.pm_.c:1036 ../../standalone/draksec_.c:24
msgid "Medium"
msgstr "Ńđĺäĺíî"
-#: ../../install_steps_interactive.pm_.c:947 ../../standalone/draksec_.c:24
+#: ../../install_steps_interactive.pm_.c:1037 ../../standalone/draksec_.c:25
msgid "High"
msgstr "Âčńîęî"
-#: ../../install_steps_interactive.pm_.c:948 ../../standalone/draksec_.c:25
-msgid "Paranoid"
-msgstr "Ďŕđŕíîč÷íî"
-
-#: ../../install_steps_interactive.pm_.c:962
-msgid "Miscellaneous questions"
-msgstr "Äîďúëíčňĺëíč âúďđîńč"
-
-#: ../../install_steps_interactive.pm_.c:963
-msgid "(may cause data corruption)"
-msgstr "(ěîćĺ äŕ ďđč÷číč çŕăóáŕ íŕ äŕííč)"
-
-#: ../../install_steps_interactive.pm_.c:963
-msgid "Use hard drive optimisations?"
-msgstr "Čńęŕňĺ ëč îďňčěčçŕöč˙ íŕ äčńęîâĺňĺ ?"
-
-#: ../../install_steps_interactive.pm_.c:964 ../../standalone/draksec_.c:46
+#: ../../install_steps_interactive.pm_.c:1041 ../../standalone/draksec_.c:49
msgid "Choose security level"
msgstr "Čçáĺđĺňĺ íčâî íŕ ńčăóđíîńň"
-#: ../../install_steps_interactive.pm_.c:965
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Ňî÷ĺí đŕçěĺđ íŕ RAM-ďŕěĺňňŕ, ŕęî ĺ íĺîáőîäčěî (íŕěĺđĺíč %d MB)"
-
-#: ../../install_steps_interactive.pm_.c:967
-msgid "Removable media automounting"
-msgstr "Ŕâňîěŕňč÷íî ěîíňčđŕíĺ íŕ ńěĺí˙ĺěčňĺ äčńęîâĺ"
-
-#: ../../install_steps_interactive.pm_.c:969
-msgid "Clean /tmp at each boot"
-msgstr "Ďî÷čńňâŕíĺ íŕ /tmp ďđč âń˙ęî çŕđĺćäŕíĺ"
-
-#: ../../install_steps_interactive.pm_.c:972
-msgid "Enable multi profiles"
-msgstr "Âęëţ÷č ěíîăî ďđîôčëč"
-
-#: ../../install_steps_interactive.pm_.c:974
-msgid "Enable num lock at startup"
-msgstr "Çŕäĺéńňâŕíĺ Num Lock-ŕ ďđč çŕđĺćäŕíĺ"
-
-#: ../../install_steps_interactive.pm_.c:977
-msgid "Give the ram size in MB"
-msgstr "Äŕéňĺ đŕçěĺđŕ RAM-ďŕěĺň â Mb"
-
-#: ../../install_steps_interactive.pm_.c:979
-msgid "Can't use supermount in high security level"
-msgstr "Íĺ ěîćĺ äŕ čçďîëçâŕňĺ supermount ďđč âčńîęî íčâî íŕ ńčăóđíîńň"
-
-#: ../../install_steps_interactive.pm_.c:981
-msgid ""
-"beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
-"If you want to be root, you have to login as a user and then use \"su\".\n"
-"More generally, do not expect to use your machine for anything but as a "
-"server.\n"
-"You have been warned."
-msgstr ""
-"âíčěŕíčĺ: Â ŇÎÂŔ ÍČÂÎ ÍŔ ŃČĂÓĐÍÎŃŇ, ROOT ÂËČÇŔÍĹŇÎ ÍŔ ĘÎÍÇÎËŔŇŔ ÍĹ Ĺ "
-"ĎÎÇÂÎËĹÍÎ !\n"
-"Ŕęî čńęŕňĺ äŕ ńňĺ root, ňđ˙áâŕ äŕ âëĺçĺňĺ ęŕňî ďîňđĺáčňĺë č ňîăŕâŕ äŕ "
-"čçďîëçâŕňĺ \"su\".\n"
-"Ęŕňî ö˙ëî, íĺ î÷ŕęâŕéňĺ äŕ čçďîëçâŕňĺ ěŕřčíŕňŕ ńč çŕ íĺůî äđóăî, îńâĺí çŕ "
-"ńúđâúđ.Á˙őňĺ ďđĺäóďđĺäĺí."
-
-#: ../../install_steps_interactive.pm_.c:986
-msgid ""
-"Be carefull, having numlock enabled causes a lot of keystrokes to\n"
-"give digits instead of normal letters (eg: pressing `p' gives `6')"
-msgstr ""
-"Âíčěŕíčĺ, ŕęî ĺ âęëţ÷ĺí numlock ěîćĺ äŕ äîâĺäĺ äî čçâĺćäŕíĺňî íŕ\n"
-"÷čńëŕ âěĺńňî áóęâč (íŕďđčěĺđ: íŕňčńęŕéęč 'p' äŕâŕ '6')"
-
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1074
msgid "Do you want to generate an auto install floppy for linux replication?"
msgstr ""
"Čńęŕňĺ ëč äŕ ńúçäŕě ŕâňîěŕňč÷íî číńňŕëčđŕůŕ äčńęĺňŕ çŕ Linux đĺďëčęŕöč˙?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1076
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Ńëîćĺňĺ ďđŕçíŕ äčńęĺňŕ â óńňđîéńňâî %s"
-#: ../../install_steps_interactive.pm_.c:1049
-#: ../../install_steps_interactive.pm_.c:1079
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1122
msgid "Creating auto install floppy"
-msgstr "Ďîäăîňâ˙ě äčńęĺňŕ ń ŕâňîěŕđč÷íŕ číńňŕëŕöč˙"
+msgstr "Ďîäăîňâ˙ě äčńęĺňŕ ń ŕâňîěŕňč÷íŕ číńňŕëŕöč˙"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1150
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -4740,7 +5180,7 @@ msgstr ""
"\n"
"Íŕčńňčíŕ ëč čńęŕňĺ äŕ čçëĺçĺňĺ ńĺăŕ ?"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -4761,6 +5201,36 @@ msgstr ""
"Číôîđěŕöč˙ çŕ íŕńňđîéâŕíĺ íŕ ńčńňĺěŕňŕ âč ěîćĺňĺ äŕ íŕěĺđčňĺ â\n"
"ńëĺäčíńňŕëŕöčîííŕňŕ ăëŕâŕ îň Official Linux-Mandrake User's Guide."
+#: ../../install_steps_interactive.pm_.c:1173
+msgid "Generate auto install floppy"
+msgstr "Ďîäăîňâč äčńęĺňŕ çŕ ŕâňîěŕňč÷íŕ číńňŕëŕöč˙"
+
+#: ../../install_steps_interactive.pm_.c:1175
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Ŕâňîěŕňč÷íŕňŕ číńňŕëŕöč˙ ěîćĺ äŕ áúäĺ íŕďúëíî ŕâňîěŕňčçčđŕíŕ,\n"
+"â ňŕęúâ ńëó÷ŕé ůĺ ďđĺâçĺěĺ őŕđä äčńęŕ âč !!!\n"
+"(ňîâŕ ĺ çŕ ďđĺäíŕçíŕ÷ĺíî çŕ číńňŕëčđŕíĺ íŕ äđóăŕ ěŕřčíŕ).\n"
+"\n"
+"Ěîćĺ áč čńęŕňĺ äŕ ďîâňîđčňĺ číńňŕëŕöč˙ňŕ.\n"
+
+#: ../../install_steps_interactive.pm_.c:1180
+msgid "Automated"
+msgstr "Ŕâňîěŕňčçčđŕí"
+
+#: ../../install_steps_interactive.pm_.c:1180
+msgid "Replay"
+msgstr "Ďîâňîđč"
+
+#: ../../install_steps_interactive.pm_.c:1183
+msgid "Save packages selection"
+msgstr "Çŕďŕçč čçáîđ íŕ ďŕęĺňč"
+
#: ../../install_steps_newt.pm_.c:22
#, c-format
msgid "Linux-Mandrake Installation %s"
@@ -4772,7 +5242,15 @@ msgid ""
msgstr ""
" <Tab>/<Alt-Tab> ěĺćäó ĺëĺěĺíňčňĺ | <Space> čçáčđŕ | <F12> ńëĺäâŕů ĺęđŕí"
-#: ../../interactive.pm_.c:273
+#: ../../interactive.pm_.c:65
+msgid "kdesu missing"
+msgstr "ëčďńâŕ kdesu"
+
+#: ../../interactive.pm_.c:263
+msgid "Advanced"
+msgstr "Íŕďđĺäíč÷ŕâ"
+
+#: ../../interactive.pm_.c:286
msgid "Please wait"
msgstr "Ěîë˙ čç÷ŕęŕéňĺ"
@@ -4801,257 +5279,269 @@ msgstr "Âŕřč˙ň čçáîđ ? (ďî ďîäđŕçáčđŕíĺ ĺ %s)"
msgid "Your choice? (default %s enter `none' for none) "
msgstr "Âŕřč˙ň čçáîđ ? (ďî ďîäđŕçáčđŕíĺ %s, âúâĺäĺňĺ 'none' çŕ íčęîé)"
-#: ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:135
+#: ../../keyboard.pm_.c:124 ../../keyboard.pm_.c:154
msgid "Czech (QWERTZ)"
-msgstr "×ĺřęč (QWERTZ)"
+msgstr "×ĺřęŕ (QWERTZ)"
-#: ../../keyboard.pm_.c:106 ../../keyboard.pm_.c:119 ../../keyboard.pm_.c:138
+#: ../../keyboard.pm_.c:125 ../../keyboard.pm_.c:138 ../../keyboard.pm_.c:157
msgid "German"
-msgstr "Íĺěńęč"
+msgstr "Íĺěńęŕ"
-#: ../../keyboard.pm_.c:107
+#: ../../keyboard.pm_.c:126
msgid "Dvorak"
-msgstr "Äâîđćŕę"
+msgstr "Äâîđŕę"
-#: ../../keyboard.pm_.c:108 ../../keyboard.pm_.c:144
+#: ../../keyboard.pm_.c:127 ../../keyboard.pm_.c:163
msgid "Spanish"
-msgstr "Čńďŕíńęč"
+msgstr "Čńďŕíńęŕ"
-#: ../../keyboard.pm_.c:109 ../../keyboard.pm_.c:145
+#: ../../keyboard.pm_.c:128 ../../keyboard.pm_.c:164
msgid "Finnish"
-msgstr "Ôčíëŕíäńęč"
+msgstr "Ôčíëŕíäńęŕ"
-#: ../../keyboard.pm_.c:110 ../../keyboard.pm_.c:120 ../../keyboard.pm_.c:146
+#: ../../keyboard.pm_.c:129 ../../keyboard.pm_.c:139 ../../keyboard.pm_.c:165
msgid "French"
-msgstr "Ôđĺíńęč"
+msgstr "Ôđĺíńęŕ"
-#: ../../keyboard.pm_.c:111 ../../keyboard.pm_.c:166
+#: ../../keyboard.pm_.c:130 ../../keyboard.pm_.c:186
msgid "Norwegian"
-msgstr "Íîđâĺćęč"
+msgstr "Íîđâĺćęŕ"
-#: ../../keyboard.pm_.c:112
+#: ../../keyboard.pm_.c:131
msgid "Polish"
-msgstr "Ďîëńęč"
+msgstr "Ďîëńęŕ"
-#: ../../keyboard.pm_.c:113 ../../keyboard.pm_.c:171
+#: ../../keyboard.pm_.c:132 ../../keyboard.pm_.c:191
msgid "Russian"
-msgstr "Đóńęč"
+msgstr "Đóńęŕ"
-#: ../../keyboard.pm_.c:114 ../../keyboard.pm_.c:182
+#: ../../keyboard.pm_.c:133 ../../keyboard.pm_.c:202
msgid "UK keyboard"
msgstr "UĘ ęëŕâčŕňóđŕ"
-#: ../../keyboard.pm_.c:115 ../../keyboard.pm_.c:118 ../../keyboard.pm_.c:183
+#: ../../keyboard.pm_.c:134 ../../keyboard.pm_.c:137 ../../keyboard.pm_.c:203
msgid "US keyboard"
msgstr "US ęëŕâčŕňóđŕ"
-#: ../../keyboard.pm_.c:122
+#: ../../keyboard.pm_.c:141
msgid "Armenian (old)"
-msgstr "Ŕđěĺíńęč (ńňŕđ)"
+msgstr "Ŕđěĺíńęŕ (ńňŕđŕ)"
-#: ../../keyboard.pm_.c:123
+#: ../../keyboard.pm_.c:142
msgid "Armenian (typewriter)"
-msgstr "Ŕđěĺíńęč (ďčřĺůŕ ěŕřčíŕ)"
+msgstr "Ŕđěĺíńęŕ (ďčřĺůŕ ěŕřčíŕ)"
-#: ../../keyboard.pm_.c:124
+#: ../../keyboard.pm_.c:143
msgid "Armenian (phonetic)"
-msgstr "Ŕđěĺíńęč (ôîíĺňč÷ĺí)"
+msgstr "Ŕđěĺíńęŕ (ôîíĺňč÷ĺí)"
-#: ../../keyboard.pm_.c:127
+#: ../../keyboard.pm_.c:146
msgid "Azerbaidjani (latin)"
-msgstr "Ŕçĺđáŕéäćŕíńęč (ëŕňčíčöŕ)"
+msgstr "Ŕçĺđáŕéäćŕíńęŕ (ëŕňčíčöŕ)"
-#: ../../keyboard.pm_.c:128
+#: ../../keyboard.pm_.c:147
msgid "Azerbaidjani (cyrillic)"
-msgstr "Ŕçĺđáŕéäćŕíńęč (ęčđčëčöŕ)"
+msgstr "Ŕçĺđáŕéäćŕíńęŕ (ęčđčëčöŕ)"
-#: ../../keyboard.pm_.c:129
+#: ../../keyboard.pm_.c:148
msgid "Belgian"
-msgstr "Áĺëăčéńęč"
+msgstr "Áĺëăčéńęŕ"
-#: ../../keyboard.pm_.c:130
+#: ../../keyboard.pm_.c:149
msgid "Bulgarian"
-msgstr "Áúëăŕđńęč"
+msgstr "Áúëăŕđńęŕ"
-#: ../../keyboard.pm_.c:131
+#: ../../keyboard.pm_.c:150
msgid "Brazilian (ABNT-2)"
-msgstr "Áđŕçčëńęč (ABNT-2)"
+msgstr "Áđŕçčëńęŕ (ABNT-2)"
-#: ../../keyboard.pm_.c:132
+#: ../../keyboard.pm_.c:151
msgid "Belarusian"
-msgstr "Áĺëŕđóńęč"
+msgstr "Áĺëŕđóńęŕ"
-#: ../../keyboard.pm_.c:133
+#: ../../keyboard.pm_.c:152
msgid "Swiss (German layout)"
-msgstr "Řâĺéöŕđńęč (íĺěńęŕ íŕđĺäáŕ)"
+msgstr "Řâĺéöŕđńęŕ (íĺěńęŕ íŕđĺäáŕ)"
-#: ../../keyboard.pm_.c:134
+#: ../../keyboard.pm_.c:153
msgid "Swiss (French layout)"
-msgstr "Řâĺéöŕđńęč (ôđĺíńęč íŕđĺäáŕ)"
+msgstr "Řâĺéöŕđńęŕ (ôđĺíńęč íŕđĺäáŕ)"
-#: ../../keyboard.pm_.c:136
+#: ../../keyboard.pm_.c:155
msgid "Czech (QWERTY)"
-msgstr "×ĺřęč (QWERTY)"
+msgstr "×ĺřęŕ (QWERTY)"
-#: ../../keyboard.pm_.c:137
+#: ../../keyboard.pm_.c:156
msgid "Czech (Programmers)"
-msgstr ""
+msgstr "×ĺřęŕ (Ďđîăđŕěčńňč)"
-#: ../../keyboard.pm_.c:139
+#: ../../keyboard.pm_.c:158
msgid "German (no dead keys)"
-msgstr "Íĺěńęč (áĺç íĺđŕáîňĺůč ęëŕâčřč)"
+msgstr "Íĺěńęŕ (áĺç íĺđŕáîňĺůč ęëŕâčřč)"
-#: ../../keyboard.pm_.c:140
+#: ../../keyboard.pm_.c:159
msgid "Danish"
-msgstr "Äŕňńęč"
+msgstr "Äŕňńęŕ"
-#: ../../keyboard.pm_.c:141
+#: ../../keyboard.pm_.c:160
msgid "Dvorak (US)"
-msgstr "Äâîđćŕę (US)"
+msgstr "Äâîđŕę (US)"
-#: ../../keyboard.pm_.c:142
+#: ../../keyboard.pm_.c:161
msgid "Dvorak (Norwegian)"
-msgstr "Äâîđćŕę (Íîđâĺćęč)"
+msgstr "Äâîđŕę (Íîđâĺćęŕ)"
-#: ../../keyboard.pm_.c:143
+#: ../../keyboard.pm_.c:162
msgid "Estonian"
-msgstr "Ĺńňîíńęč"
+msgstr "Ĺńňîíńęŕ"
-#: ../../keyboard.pm_.c:147
+#: ../../keyboard.pm_.c:166
msgid "Georgian (\"Russian\" layout)"
-msgstr "Ăđóçčíńęč (\"Đóńęŕ\" íŕđĺäáŕ)"
+msgstr "Ăđóçčíńęŕ (\"Đóńęŕ\" íŕđĺäáŕ)"
-#: ../../keyboard.pm_.c:148
+#: ../../keyboard.pm_.c:167
msgid "Georgian (\"Latin\" layout)"
-msgstr "Ăđóçčíńęč (\"Ëŕňčíńęŕ\" íŕđĺäáŕ)"
+msgstr "Ăđóçčíńęŕ (\"Ëŕňčíńęŕ\" íŕđĺäáŕ)"
-#: ../../keyboard.pm_.c:149
+#: ../../keyboard.pm_.c:168
msgid "Greek"
-msgstr "Ăđúöęč"
+msgstr "Ăđúöęŕ"
-#: ../../keyboard.pm_.c:150
+#: ../../keyboard.pm_.c:169
msgid "Hungarian"
-msgstr "Óíăŕđńęč"
+msgstr "Óíăŕđńęŕ"
-#: ../../keyboard.pm_.c:151
+#: ../../keyboard.pm_.c:170
msgid "Croatian"
-msgstr "Őúđâŕňńęč"
+msgstr "Őúđâŕňńęŕ"
-#: ../../keyboard.pm_.c:152
+#: ../../keyboard.pm_.c:171
msgid "Israeli"
-msgstr "Čçđŕĺëńęč"
+msgstr "Čçđŕĺëńęŕ"
-#: ../../keyboard.pm_.c:153
+#: ../../keyboard.pm_.c:172
msgid "Israeli (Phonetic)"
-msgstr "Čçđŕĺëńęč (ôîíĺňč÷ĺí)"
+msgstr "Čçđŕĺëńęŕ (ôîíĺňč÷íŕ)"
-#: ../../keyboard.pm_.c:154
+#: ../../keyboard.pm_.c:173
msgid "Iranian"
-msgstr "Čđŕíńęč"
+msgstr "Čđŕíńęŕ"
-#: ../../keyboard.pm_.c:155
+#: ../../keyboard.pm_.c:174
msgid "Icelandic"
-msgstr "Čńëŕíäńęč"
+msgstr "Čńëŕíäńęŕ"
-#: ../../keyboard.pm_.c:156
+#: ../../keyboard.pm_.c:175
msgid "Italian"
-msgstr "Čňŕëčŕíńęč"
+msgstr "Čňŕëčŕíńęŕ"
-#: ../../keyboard.pm_.c:157
+#: ../../keyboard.pm_.c:176
msgid "Japanese 106 keys"
msgstr "ßďîíńęŕ 106 ęëŕâčřŕ"
-#: ../../keyboard.pm_.c:158
+#: ../../keyboard.pm_.c:177
+msgid "Korean keyboard"
+msgstr "Ęîđĺéńęŕ ęëŕâčŕňóđŕ"
+
+#: ../../keyboard.pm_.c:178
msgid "Latin American"
-msgstr "Ëŕňčíîŕěĺđčęŕíńęč"
+msgstr "Ëŕňčíîŕěĺđčęŕíńęŕ"
-#: ../../keyboard.pm_.c:160
+#: ../../keyboard.pm_.c:179
+msgid "Macedonian"
+msgstr "Ěŕęĺäîíńęŕ"
+
+#: ../../keyboard.pm_.c:180
msgid "Dutch"
-msgstr "Őîëŕíäńęč"
+msgstr "Őîëŕíäńęŕ"
-#: ../../keyboard.pm_.c:161
+#: ../../keyboard.pm_.c:181
msgid "Lithuanian AZERTY (old)"
-msgstr "Ëčňâčéńęč AZERTY (ńňŕđ)"
+msgstr "Ëčňâčéńęŕ AZERTY (ńňŕđŕ)"
-#: ../../keyboard.pm_.c:163
+#: ../../keyboard.pm_.c:183
msgid "Lithuanian AZERTY (new)"
-msgstr "Ëčňâčéńęč AZERTY (íîâ)"
+msgstr "Ëčňâčéńęŕ AZERTY (íîâŕ)"
-#: ../../keyboard.pm_.c:164
+#: ../../keyboard.pm_.c:184
msgid "Lithuanian \"number row\" QWERTY"
-msgstr "Ëčňâčéńęč \"÷čńëîâŕ đĺäčöŕ\" QWERTY"
+msgstr "Ëčňâčéńęŕ \"÷čńëîâŕ đĺäčöŕ\" QWERTY"
-#: ../../keyboard.pm_.c:165
+#: ../../keyboard.pm_.c:185
msgid "Lithuanian \"phonetic\" QWERTY"
-msgstr "Ëčňâčéńęč \"ôîíĺňč÷ĺí\" QWERTY"
+msgstr "Ëčňâčéńęŕ \"ôîíĺňč÷ĺí\" QWERTY"
-#: ../../keyboard.pm_.c:167
+#: ../../keyboard.pm_.c:187
msgid "Polish (qwerty layout)"
-msgstr "Ďîëńęč (QWERTY íŕđĺäáŕ)"
+msgstr "Ďîëńęŕ (QWERTY íŕđĺäáŕ)"
-#: ../../keyboard.pm_.c:168
+#: ../../keyboard.pm_.c:188
msgid "Polish (qwertz layout)"
-msgstr "Ďîëńęč (QWERTZ íŕđĺäáŕ)"
+msgstr "Ďîëńęŕ (QWERTZ íŕđĺäáŕ)"
-#: ../../keyboard.pm_.c:169
+#: ../../keyboard.pm_.c:189
msgid "Portuguese"
-msgstr "Ďîđňóăŕëńęč"
+msgstr "Ďîđňóăŕëńęŕ"
-#: ../../keyboard.pm_.c:170
+#: ../../keyboard.pm_.c:190
msgid "Canadian (Quebec)"
-msgstr "Ęŕíŕäńęč (Ęâĺáĺę)"
+msgstr "Ęŕíŕäńęŕ (Ęâĺáĺę)"
-#: ../../keyboard.pm_.c:172
+#: ../../keyboard.pm_.c:192
msgid "Russian (Yawerty)"
-msgstr "Đóńęč (ßÂĹĐŇČ)"
+msgstr "Đóńęŕ (ßÂĹĐŇČ)"
-#: ../../keyboard.pm_.c:173
+#: ../../keyboard.pm_.c:193
msgid "Swedish"
-msgstr "Řâĺäńęč"
+msgstr "Řâĺäńęŕ"
-#: ../../keyboard.pm_.c:174
+#: ../../keyboard.pm_.c:194
msgid "Slovenian"
-msgstr "Ńëîâĺíńęč"
+msgstr "Ńëîâĺíńęŕ"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:195
msgid "Slovakian (QWERTZ)"
-msgstr "Ńëîâŕřęč (QWERTZ)"
+msgstr "Ńëîâŕřęŕ (QWERTZ)"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:196
msgid "Slovakian (QWERTY)"
-msgstr "Ńëîâŕřęč (QWERTY)"
+msgstr "Ńëîâŕřęŕ (QWERTY)"
-#: ../../keyboard.pm_.c:177
+#: ../../keyboard.pm_.c:197
msgid "Slovakian (Programmers)"
-msgstr ""
+msgstr "Ńëîâŕřęŕ (Ďđîăđŕěčńňč)"
-#: ../../keyboard.pm_.c:178
+#: ../../keyboard.pm_.c:198
msgid "Thai keyboard"
msgstr "Ňŕéâŕíńęŕ ęëŕâčŕňóđŕ"
-#: ../../keyboard.pm_.c:179
+#: ../../keyboard.pm_.c:199
msgid "Turkish (traditional \"F\" model)"
-msgstr "Ňóđńęč (ňđŕäčöčîíĺí \"F\" ěîäĺë)"
+msgstr "Ňóđńęŕ (ňđŕäčöčîíĺí \"F\" ěîäĺë)"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:200
msgid "Turkish (modern \"Q\" model)"
-msgstr "Ňóđńęč (ěîäĺđĺí \"Q\" ěîäĺë)"
+msgstr "Ňóđńęŕ (ěîäĺđĺí \"Q\" ěîäĺë)"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:201
msgid "Ukrainian"
-msgstr "Óęđŕčíńęč"
+msgstr "Óęđŕčíńęŕ"
-#: ../../keyboard.pm_.c:184
+#: ../../keyboard.pm_.c:204
msgid "US keyboard (international)"
msgstr "US ęëŕâčŕňóđŕ (ěĺćäóíŕđîäíŕ)"
-#: ../../keyboard.pm_.c:185
+#: ../../keyboard.pm_.c:205
msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Âčĺňíŕěńęč \"÷čńëîâŕ đĺäčöŕ\" QWERTY"
+msgstr "Âčĺňíŕěńęŕ \"÷čńëîâŕ đĺäčöŕ\" QWERTY"
-#: ../../keyboard.pm_.c:186
-msgid "Yugoslavian (latin layout)"
-msgstr "Ţăîńëŕâ˙íńęč (ëŕňčíńęŕ íŕđĺäáŕ)"
+#: ../../keyboard.pm_.c:206
+msgid "Yugoslavian (latin/cyrillic)"
+msgstr "Ţăîńëŕâ˙íńęŕ (ëŕňčíčöŕ/ęčđčëčöŕ)"
+
+#: ../../lvm.pm_.c:70
+msgid "Remove the logical volumes first\n"
+msgstr "Ďúđâî ďđĺěŕőíč ëîăč÷íčňĺ ä˙ëîâî\n"
#: ../../mouse.pm_.c:25
msgid "Sun - Mouse"
@@ -5066,19 +5556,18 @@ msgid "Logitech MouseMan+"
msgstr "Logitech MouseMan+"
#: ../../mouse.pm_.c:33
-#, fuzzy
msgid "Generic PS2 Wheel Mouse"
-msgstr "Îáčęíîâĺííŕ 2-áóňîííŕ ěčřęŕ"
+msgstr "Îáčęíîâĺííŕ PS2 ěčřęŕ"
#: ../../mouse.pm_.c:34
msgid "GlidePoint"
msgstr "GlidePoint"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:62
msgid "Kensington Thinking Mouse"
msgstr "Kensington THinking Mouse"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:58
msgid "Genius NetMouse"
msgstr "Genuis NetMouse"
@@ -5086,122 +5575,138 @@ msgstr "Genuis NetMouse"
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:43
+#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:67
+msgid "1 button"
+msgstr "1 áóňîí"
+
+#: ../../mouse.pm_.c:44
msgid "Generic"
msgstr "Îáů"
-#: ../../mouse.pm_.c:44
+#: ../../mouse.pm_.c:45
msgid "Wheel"
-msgstr "Ňîď÷ĺ"
+msgstr "Wheel"
-#: ../../mouse.pm_.c:47
+#: ../../mouse.pm_.c:48
msgid "serial"
msgstr "ńĺđčéíŕ"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:50
msgid "Generic 2 Button Mouse"
msgstr "Îáčęíîâĺííŕ 2-áóňîííŕ ěčřęŕ"
-#: ../../mouse.pm_.c:50
+#: ../../mouse.pm_.c:51
msgid "Generic 3 Button Mouse"
msgstr "Îáčęíîâĺííŕ 3-áóňîííŕ ěčřęŕ"
-#: ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:52
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:53
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:54
msgid "Mouse Systems"
msgstr "Mouse Systems"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:56
msgid "Logitech CC Series"
msgstr "Logitech CC Series"
-#: ../../mouse.pm_.c:56
+#: ../../mouse.pm_.c:57
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:59
msgid "MM Series"
msgstr "MM Series"
-#: ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:60
msgid "MM HitTablet"
msgstr "MM HitTablet"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:61
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Logitech Mouse (ńĺđčéíŕ, îň ńňŕđč˙ ňčď C7)"
-#: ../../mouse.pm_.c:64
-#, fuzzy
+#: ../../mouse.pm_.c:65
msgid "busmouse"
-msgstr "Áĺç ěčřęŕ"
+msgstr "BUS ěčřęŕ"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
msgid "2 buttons"
msgstr "2 áóňîíŕ"
-#: ../../mouse.pm_.c:67
+#: ../../mouse.pm_.c:69
msgid "3 buttons"
msgstr "3 áóňîíŕ"
-#: ../../mouse.pm_.c:70
-#, fuzzy
+#: ../../mouse.pm_.c:72
msgid "none"
-msgstr "Íčęŕęúâ"
+msgstr "í˙ěŕ"
-#: ../../mouse.pm_.c:72
+#: ../../mouse.pm_.c:74
msgid "No mouse"
msgstr "Áĺç ěčřęŕ"
-#: ../../my_gtk.pm_.c:243
+#: ../../my_gtk.pm_.c:356
+msgid "Finish"
+msgstr "Çŕâúđřč"
+
+#: ../../my_gtk.pm_.c:356
msgid "Next ->"
-msgstr "Íŕňŕęúę ->"
+msgstr "Ńëĺäâŕů ->"
+
+#: ../../my_gtk.pm_.c:357
+msgid "<- Previous"
+msgstr "<- Ďđĺäčřĺí"
-#: ../../my_gtk.pm_.c:486
+#: ../../my_gtk.pm_.c:616
msgid "Is this correct?"
msgstr "Âńč÷ęî ďđŕâčëíî ëč ĺ ?"
-#: ../../netconnect.pm_.c:93 ../../netconnect_new.pm_.c:151
+#: ../../netconnect.pm_.c:141
msgid "Internet configuration"
msgstr "Íŕńňđîéęŕ íŕ Číňĺđíĺň"
-#: ../../netconnect.pm_.c:94 ../../netconnect_new.pm_.c:152
-#, fuzzy
+#: ../../netconnect.pm_.c:142
msgid "Do you want to try to connect to the Internet now?"
-msgstr "Čńęŕňĺ ëč ńĺăŕ äŕ îďčňŕňĺ čçďđîáâŕňĺ ńč ęúě Číňĺđíĺň ?"
+msgstr "Čńęŕňĺ ëč ńĺăŕ äŕ îďčňŕňĺ âđúçęŕ ęúě Číňĺđíĺň ?"
-#: ../../netconnect.pm_.c:101 ../../netconnect_new.pm_.c:159
-#, fuzzy
+#: ../../netconnect.pm_.c:146
msgid "Testing your connection..."
-msgstr "Ęŕęúâ ĺ ňčďúň íŕ ISDN âđúçęŕňŕ ?"
+msgstr "Čçďđîáâŕíĺ íŕ âđúçęŕňŕ..."
-#: ../../netconnect.pm_.c:106 ../../netconnect_new.pm_.c:164
-#, fuzzy
+#: ../../netconnect.pm_.c:152 ../../standalone/draknet_.c:196
msgid "The system is now connected to Internet."
-msgstr "Íĺ ńĺ ńâúđçâŕé ęúě Číňĺđíĺň"
+msgstr "Ńčńňĺěŕňŕ â ěîěĺíňŕ ĺ ńâúđçŕíŕ ęúě Číňĺđíĺň."
-#: ../../netconnect.pm_.c:107 ../../netconnect_new.pm_.c:165
+#: ../../netconnect.pm_.c:153
+msgid "For Security reason, it will be disconnected now."
+msgstr "Çŕ âŕřŕ ńčăóđíîńň, ńĺăŕ ň˙ ůĺ áúäĺňĺ îňâúđçŕíŕ."
+
+#: ../../netconnect.pm_.c:154 ../../standalone/draknet_.c:196
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
msgstr ""
+"Ńčńňĺěŕňŕ íĺ čçăëĺćäŕ ńâúđçŕíŕ ęúě Číňĺđíĺň.\n"
+"Îďčňŕéňĺ ńĺ äŕ ďđĺíŕńňđîčňĺ âđúçęŕňŕ."
+
+#: ../../netconnect.pm_.c:159 ../../netconnect.pm_.c:901
+#: ../../netconnect.pm_.c:930 ../../netconnect.pm_.c:1008
+msgid "Network Configuration"
+msgstr "Íŕńňđîéęŕ íŕ ěđĺćŕňŕ"
-#: ../../netconnect.pm_.c:141 ../../netconnect.pm_.c:213
-#: ../../netconnect.pm_.c:232 ../../netconnect.pm_.c:244
-#: ../../netconnect.pm_.c:256 ../../netconnect_new.pm_.c:226
-#: ../../netconnect_new.pm_.c:300 ../../netconnect_new.pm_.c:319
-#: ../../netconnect_new.pm_.c:331 ../../netconnect_new.pm_.c:343
+#: ../../netconnect.pm_.c:220 ../../netconnect.pm_.c:264
+#: ../../netconnect.pm_.c:274 ../../netconnect.pm_.c:281
+#: ../../netconnect.pm_.c:291
msgid "ISDN Configuration"
msgstr "Íŕńňđîéęŕ íŕ IDSN"
-#: ../../netconnect.pm_.c:141 ../../netconnect_new.pm_.c:226
+#: ../../netconnect.pm_.c:220
msgid ""
"Select your provider.\n"
" If it's not in the list, choose Unlisted"
@@ -5209,116 +5714,107 @@ msgstr ""
"Ďîńî÷ĺňĺ äîńňŕâ÷čęŕ ńč.\n"
" Ŕęî íĺ ĺ â ńďčńúęŕ, čçáĺđĺňĺ Unlisted"
-#: ../../netconnect.pm_.c:158 ../../netconnect_new.pm_.c:245
+#: ../../netconnect.pm_.c:234
msgid "Connection Configuration"
msgstr "Íŕńňđîéęŕ íŕ âđúçęŕňŕ"
-#: ../../netconnect.pm_.c:159 ../../netconnect_new.pm_.c:246
+#: ../../netconnect.pm_.c:235
msgid "Please fill or check the field below"
msgstr "Ěîë˙, ďîďúëíĺňĺ čëč ďđîâĺđĺňĺ ďîëĺňî ďî-äîëó"
-#: ../../netconnect.pm_.c:161 ../../netconnect_new.pm_.c:248
+#: ../../netconnect.pm_.c:237 ../../standalone/draknet_.c:550
msgid "Card IRQ"
msgstr "IRQ íŕ ęŕđňŕňŕ"
-#: ../../netconnect.pm_.c:162 ../../netconnect_new.pm_.c:249
+#: ../../netconnect.pm_.c:238 ../../standalone/draknet_.c:551
msgid "Card mem (DMA)"
msgstr "Ďŕěĺň (DMA) íŕ ęŕđňŕňŕ"
-#: ../../netconnect.pm_.c:163 ../../netconnect_new.pm_.c:250
+#: ../../netconnect.pm_.c:239 ../../standalone/draknet_.c:552
msgid "Card IO"
msgstr "IO íŕ ęŕđňŕňŕ"
-#: ../../netconnect.pm_.c:164 ../../netconnect_new.pm_.c:251
+#: ../../netconnect.pm_.c:240 ../../standalone/draknet_.c:553
msgid "Card IO_0"
msgstr "IO_0 íŕ ęŕđňŕňŕ"
-#: ../../netconnect.pm_.c:165 ../../netconnect_new.pm_.c:252
+#: ../../netconnect.pm_.c:241 ../../standalone/draknet_.c:554
msgid "Card IO_1"
msgstr "IO_1 íŕ ęŕđňŕňŕ"
-#: ../../netconnect.pm_.c:166 ../../netconnect_new.pm_.c:253
-#, fuzzy
+#: ../../netconnect.pm_.c:242 ../../standalone/draknet_.c:555
msgid "Your personal phone number"
msgstr "Ëč÷íč˙ âč ňĺëĺôîíĺí íîěĺđ"
-#: ../../netconnect.pm_.c:168 ../../netconnect_new.pm_.c:255
+#: ../../netconnect.pm_.c:243 ../../standalone/draknet_.c:556
msgid "Provider name (ex provider.net)"
msgstr "Čěĺ íŕ äîńňŕâ÷čęŕ (íŕďđ. provider.net)"
-#: ../../netconnect.pm_.c:169 ../../netconnect_new.pm_.c:256
+#: ../../netconnect.pm_.c:244 ../../standalone/draknet_.c:557
msgid "Provider phone number"
msgstr "Ňĺëĺôîíĺí íîěĺđ íŕ äîńňŕâ÷čęŕ"
-#: ../../netconnect.pm_.c:170 ../../netconnect_new.pm_.c:257
+#: ../../netconnect.pm_.c:245
msgid "Provider dns 1"
msgstr "1-âč DNS íŕ äîńňŕâ÷čęŕ"
-#: ../../netconnect.pm_.c:171 ../../netconnect_new.pm_.c:258
+#: ../../netconnect.pm_.c:246
msgid "Provider dns 2"
msgstr "2-đč DNS íŕ äîńňŕâ÷čęŕ"
-#: ../../netconnect.pm_.c:172 ../../netconnect_new.pm_.c:259
+#: ../../netconnect.pm_.c:247 ../../standalone/draknet_.c:562
msgid "Dialing mode"
msgstr "Đĺćčě íŕ íŕáčđŕíĺ"
-#: ../../netconnect.pm_.c:174 ../../netconnect_new.pm_.c:261
+#: ../../netconnect.pm_.c:248 ../../standalone/draknet_.c:560
msgid "Account Login (user name)"
msgstr "Čěĺ íŕ ŕęŕóíňŕ (ďîňĺáčňĺëńęî čěĺ)"
-#: ../../netconnect.pm_.c:175 ../../netconnect_new.pm_.c:262
+#: ../../netconnect.pm_.c:249 ../../standalone/draknet_.c:561
msgid "Account Password"
msgstr "Ďŕđîëŕ íŕ ŕęŕóíňŕ"
-#: ../../netconnect.pm_.c:176 ../../netconnect_new.pm_.c:263
-msgid "Confirm Password"
-msgstr "Ďîňâúđćäĺíčĺ íŕ ďŕđîëŕňŕ"
-
-#: ../../netconnect.pm_.c:208 ../../netconnect_new.pm_.c:295
+#: ../../netconnect.pm_.c:259
msgid "Europe"
msgstr "Ĺâđîďŕ"
-#: ../../netconnect.pm_.c:208 ../../netconnect_new.pm_.c:295
+#: ../../netconnect.pm_.c:259
msgid "Europe (EDSS1)"
msgstr "Ĺâđîďŕ (EDSS1)"
-#: ../../netconnect.pm_.c:210 ../../netconnect_new.pm_.c:297
+#: ../../netconnect.pm_.c:261
msgid "Rest of the world"
msgstr "Îńňŕíŕëč˙ ńâ˙ň"
-#: ../../netconnect.pm_.c:210 ../../netconnect_new.pm_.c:297
-msgid "Rest of the world - no D-Channel (leased lines)"
-msgstr "Îńňŕíŕëč˙ ńâ˙ň - á˙ő D-Ęŕíŕë (íŕĺňŕ ëčíč˙)"
+#: ../../netconnect.pm_.c:261
+msgid ""
+"Rest of the world \n"
+" no D-Channel (leased lines)"
+msgstr ""
+"Îńňŕíŕëč˙ ńâ˙ň \n"
+" á˙ő D-Ęŕíŕë (íŕĺňŕ ëčíč˙)"
-#: ../../netconnect.pm_.c:214 ../../netconnect_new.pm_.c:301
+#: ../../netconnect.pm_.c:265
msgid "Which protocol do you want to use ?"
msgstr "Ęŕęúâ ďđîňîęîë ćĺëŕĺňĺ äŕ ďđîěĺíčňĺ ?"
-#: ../../netconnect.pm_.c:224 ../../netconnect_new.pm_.c:311
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../netconnect.pm_.c:226 ../../netconnect_new.pm_.c:313
-msgid "PCI"
-msgstr "PCI"
+#: ../../netconnect.pm_.c:275
+msgid "What kind of card do you have?"
+msgstr "Ęŕęúâ ňčď ęŕđňŕ čěŕňĺ ?"
-#: ../../netconnect.pm_.c:228 ../../netconnect_new.pm_.c:315
+#: ../../netconnect.pm_.c:276
msgid "I don't know"
msgstr "Íĺ çíŕě"
-#: ../../netconnect.pm_.c:233 ../../netconnect_new.pm_.c:320
-msgid "What kind of card do you have?"
-msgstr "Ęŕęúâ ňčď ęŕđňŕ čěŕňĺ ?"
-
-#: ../../netconnect.pm_.c:239 ../../netconnect_new.pm_.c:326
-msgid "Continue"
-msgstr "Íŕňŕňúę"
+#: ../../netconnect.pm_.c:276
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
-#: ../../netconnect.pm_.c:241 ../../netconnect_new.pm_.c:328
-msgid "Abort"
-msgstr "Îňęŕç"
+#: ../../netconnect.pm_.c:276
+msgid "PCI"
+msgstr "PCI"
-#: ../../netconnect.pm_.c:245 ../../netconnect_new.pm_.c:332
+#: ../../netconnect.pm_.c:282
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -5330,15 +5826,19 @@ msgstr ""
"\n"
"Ŕęî čěŕňĺ PCMCIA ęŕđňŕ, ůĺ ňđ˙áâŕ äŕ çíŕĺňĺ IRC č IO íŕ ęŕđňŕňŕ ńč.\n"
-#: ../../netconnect.pm_.c:257 ../../netconnect_new.pm_.c:344
+#: ../../netconnect.pm_.c:286
+msgid "Abort"
+msgstr "Îňęŕç"
+
+#: ../../netconnect.pm_.c:286
+msgid "Continue"
+msgstr "Íŕňŕňúę"
+
+#: ../../netconnect.pm_.c:292
msgid "Which is your ISDN card ?"
msgstr "Ęî˙ ĺ ISDN ęŕđňŕňŕ âč ?"
-#: ../../netconnect.pm_.c:282
-msgid "I have found an ISDN Card:\n"
-msgstr "Íŕěĺđĺő ISDN ęŕđňŕ:\n"
-
-#: ../../netconnect.pm_.c:288 ../../netconnect_new.pm_.c:367
+#: ../../netconnect.pm_.c:312
msgid ""
"I have detected an ISDN PCI Card, but I don't know the type. Please select "
"one PCI card on the next screen."
@@ -5346,11 +5846,11 @@ msgstr ""
"Îňęđčňŕ ĺ ISDN PCI ęŕđňŕ, íî ń íĺďîçíŕň ňčď. Ěîë˙ čçáĺđĺňĺ í˙ęî˙ PCI ęŕđňŕ "
"îň ńëĺäâŕůč˙ň ĺęđŕí."
-#: ../../netconnect.pm_.c:300 ../../netconnect_new.pm_.c:379
+#: ../../netconnect.pm_.c:321
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr "Íĺ ĺ íŕěĺđĺíŕ ISDN PCI ęŕđňŕ. Ěîë˙ čçáĺđĺňĺ îň ńëĺäâŕůč˙ň ĺęđŕí."
-#: ../../netconnect.pm_.c:336 ../../netconnect_new.pm_.c:412
+#: ../../netconnect.pm_.c:369
msgid ""
"No ethernet network adapter has been detected on your system.\n"
"I cannot set up this connection type."
@@ -5358,312 +5858,323 @@ msgstr ""
"Íĺ áĺřĺ íŕěĺđĺí ěđĺćîâ ŕäŕďňĺđ â ńčńňĺěŕňŕ âč.\n"
"Íĺ ěîćĺňĺ äŕ íŕńňđîčňĺ ňŕęúâ âčä âđúçęŕ."
-#: ../../netconnect.pm_.c:340 ../../netconnect_new.pm_.c:417
-#: ../../standalone/drakgw_.c:222
+#: ../../netconnect.pm_.c:373 ../../standalone/drakgw_.c:232
msgid "Choose the network interface"
msgstr "Čçáĺđĺňĺ ěđĺćîâ číňĺđôĺéń"
-#: ../../netconnect.pm_.c:341 ../../netconnect_new.pm_.c:418
-#, fuzzy
+#: ../../netconnect.pm_.c:374
msgid ""
"Please choose which network adapter you want to use to connect to Internet"
-msgstr "Ěîë˙, čçáĺđĺňĺ ěđĺćîâč˙ ŕäŕďňĺđ, ÷đĺç ęîéňî äŕ ńĺ ńâđúćŕ ęúě Číňĺđíĺň"
+msgstr "Ěîë˙, čçáĺđĺňĺ ęîé ěđĺćîâ ŕäŕďňĺđ äŕ čçďîëçâŕě çŕ âđúçęŕ ęúě Číňĺđíĺň"
-#: ../../netconnect.pm_.c:356 ../../netconnect.pm_.c:635
-#: ../../netconnect.pm_.c:766 ../../netconnect_new.pm_.c:425
-#: ../../netconnect_new.pm_.c:777 ../../netconnect_new.pm_.c:908
-#: ../../standalone/drakgw_.c:217
+#: ../../netconnect.pm_.c:383 ../../netconnect.pm_.c:697
+#: ../../netconnect.pm_.c:842 ../../standalone/drakgw_.c:223
msgid "Network interface"
msgstr "Ěđĺćîâ číňĺđôĺéń"
-#: ../../netconnect.pm_.c:357 ../../netconnect_new.pm_.c:426
+#: ../../netconnect.pm_.c:384
msgid ""
"\n"
"Do you agree?"
msgstr ""
+"\n"
+"Ńúăëŕńíč ëč ńňĺ ?"
-#: ../../netconnect.pm_.c:357 ../../netconnect_new.pm_.c:426
-#, fuzzy
+#: ../../netconnect.pm_.c:384
msgid "I'm about to restart the network device:\n"
-msgstr ""
-"Íŕ ďúň ńúě äŕ đĺńňŕđňčđŕě ěđĺćîâîňî óńňđîéńňâî $device. Ńúăëŕńíč ëč ńňĺ ?"
+msgstr "Íŕ ďúň ńúě äŕ đĺńňŕđňčđŕě ěđĺćîâîňî óńňđîéńňâî:\n"
-#: ../../netconnect.pm_.c:473 ../../netconnect_new.pm_.c:512
+#: ../../netconnect.pm_.c:482
msgid "ADSL configuration"
msgstr "Íŕńňđîéęŕ íŕ ADSL"
-#: ../../netconnect.pm_.c:474 ../../netconnect_new.pm_.c:513
+#: ../../netconnect.pm_.c:483
msgid "Do you want to start your connection at boot?"
msgstr "Čńęŕňĺ ëč äŕ ńňŕđňčđŕňĺ âđúçęŕňŕ ńč ďđč çŕđĺćäŕíĺ ?"
-#: ../../netconnect.pm_.c:541 ../../netconnect_new.pm_.c:672
-msgid "Try to find a modem?"
-msgstr "Äŕ ńĺ îďčňŕě ëč äŕ îňęđč˙ ěîäĺě ?"
-
-#: ../../netconnect.pm_.c:551 ../../netconnect_new.pm_.c:677
+#: ../../netconnect.pm_.c:618
msgid "Please choose which serial port your modem is connected to."
msgstr "Ěîë˙, čçáĺđĺňĺ ńĺđčĺí ďîđň ęúě ęîéňî ńâúđçŕí ěîäĺěúň âč."
-#: ../../netconnect.pm_.c:556 ../../netconnect_new.pm_.c:682
+#: ../../netconnect.pm_.c:623
msgid "Dialup options"
msgstr "Îďöčč çŕ čçáčđŕíĺ ďî ňĺëĺôîí"
-#: ../../netconnect.pm_.c:557 ../../netconnect_new.pm_.c:683
+#: ../../netconnect.pm_.c:624 ../../standalone/draknet_.c:564
msgid "Connection name"
msgstr "Čěĺ íŕ âđúçęŕňŕ"
-#: ../../netconnect.pm_.c:558 ../../netconnect_new.pm_.c:684
+#: ../../netconnect.pm_.c:625 ../../standalone/draknet_.c:565
msgid "Phone number"
msgstr "Ňĺëĺôîíĺí íîěĺđ"
-#: ../../netconnect.pm_.c:559 ../../netconnect_new.pm_.c:685
+#: ../../netconnect.pm_.c:626 ../../standalone/draknet_.c:566
msgid "Login ID"
msgstr "Ďîňđĺáčňĺëńęî čěĺ"
-#: ../../netconnect.pm_.c:561 ../../netconnect_new.pm_.c:687
+#: ../../netconnect.pm_.c:628 ../../standalone/draknet_.c:568
msgid "Authentication"
msgstr "Čäĺíňčôčęŕöč˙"
-#: ../../netconnect.pm_.c:561 ../../netconnect_new.pm_.c:687
+#: ../../netconnect.pm_.c:628 ../../standalone/draknet_.c:568
msgid "PAP"
msgstr "PAP"
-#: ../../netconnect.pm_.c:561 ../../netconnect_new.pm_.c:687
+#: ../../netconnect.pm_.c:628 ../../standalone/draknet_.c:568
msgid "Script-based"
msgstr "Áŕçčđŕíŕ íŕ ńęđčďň"
-#: ../../netconnect.pm_.c:561 ../../netconnect_new.pm_.c:687
+#: ../../netconnect.pm_.c:628 ../../standalone/draknet_.c:568
msgid "Terminal-based"
msgstr "Áŕçčđŕíŕ íŕ ňĺđěčíŕë"
-#: ../../netconnect.pm_.c:562 ../../netconnect_new.pm_.c:688
+#: ../../netconnect.pm_.c:629 ../../standalone/draknet_.c:569
msgid "Domain name"
msgstr "Čěĺ íŕ äîěĺéíŕ"
-#: ../../netconnect.pm_.c:564 ../../netconnect_new.pm_.c:690
-msgid "First DNS Server"
-msgstr "Ďúđâč DNS ńúđâúđ"
+#: ../../netconnect.pm_.c:630 ../../standalone/draknet_.c:570
+msgid "First DNS Server (optional)"
+msgstr "Ďúđâč DNS ńúđâúđ (ďî čçáîđ)"
-#: ../../netconnect.pm_.c:565 ../../netconnect_new.pm_.c:691
-msgid "Second DNS Server"
-msgstr "Âňîđč DNS ńúđâúđ"
+#: ../../netconnect.pm_.c:631 ../../standalone/draknet_.c:571
+msgid "Second DNS Server (optional)"
+msgstr "Âňîđč DNS ńúđâúđ (ďî čçáîđ)"
-#: ../../netconnect.pm_.c:594 ../../netconnect_new.pm_.c:736
-#, fuzzy
+#: ../../netconnect.pm_.c:698
+msgid ""
+"I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"
+msgstr ""
+"Íŕ ďúň ńúě äŕ đĺńňŕđňčđŕě ěđĺćîâîňî óńňđîéńňâî $netc->{NET_DEVICE}. Ńúăëŕńíč "
+"ëč ńňĺ ?"
+
+#: ../../netconnect.pm_.c:742
msgid ""
"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr "Ńâúđćč ńĺ ęúě Číňĺđíĺň / Íŕńňđîé ëîęŕëíŕňŕ ěđĺćŕ"
+"You can disconnect or reconfigure your connection."
+msgstr ""
+"\n"
+"Ěîćĺňĺ äŕ ńĺ îňâúđćĺňĺ čëč äŕ ďđĺíŕńňđîčňĺ âđúçęŕňŕ."
-#: ../../netconnect.pm_.c:594 ../../netconnect.pm_.c:598
-#: ../../netconnect_new.pm_.c:736 ../../netconnect_new.pm_.c:740
-#, fuzzy
+#: ../../netconnect.pm_.c:742 ../../netconnect.pm_.c:745
msgid ""
"\n"
"You can reconfigure your connection."
-msgstr "Íŕńňđîéęŕ íŕ Číňĺđíĺň ńâđúçęŕňŕ"
+msgstr ""
+"\n"
+"Ěîćĺňĺ äŕ ďđĺíŕńňđîčňĺ âđúçęŕňŕ."
-#: ../../netconnect.pm_.c:594 ../../netconnect_new.pm_.c:736
-#, fuzzy
-msgid "You are not currently connected to Internet."
-msgstr "Íĺ ńĺ ńâúđçâŕé ęúě Číňĺđíĺň"
+#: ../../netconnect.pm_.c:742
+msgid "You are currently connected to internet."
+msgstr "Â ěîěĺíňŕ ńňĺ ńâúđçŕíč ęúě Číňĺđíĺň"
-#: ../../netconnect.pm_.c:598 ../../netconnect_new.pm_.c:740
+#: ../../netconnect.pm_.c:745
msgid ""
"\n"
-"You can disconnect or reconfigure your connection."
+"You can connect to Internet or reconfigure your connection."
msgstr ""
+"\n"
+"Ěîćĺňĺ äŕ ńĺ ńâúđćĺňĺ ęúě Číňĺđíĺň čëč äŕ ďđĺíŕńňđîčňĺ âđúçęŕňŕ."
-#: ../../netconnect.pm_.c:598 ../../netconnect_new.pm_.c:740
-#, fuzzy
-msgid "You are currently connected to internet."
-msgstr "Íĺ ńĺ ńâúđçâŕé ęúě Číňĺđíĺň"
+#: ../../netconnect.pm_.c:745
+msgid "You are not currently connected to Internet."
+msgstr "Â ěîěĺíňŕ íĺ ńňĺ ńâúđçŕíč ęúě Číňĺđíĺň"
-#: ../../netconnect.pm_.c:602 ../../netconnect_new.pm_.c:744
-#, fuzzy
+#: ../../netconnect.pm_.c:749 ../../standalone/net_monitor_.c:81
msgid "Connect to Internet"
msgstr "Ńâúđćč ńĺ ęúě Číňĺđíĺň"
-#: ../../netconnect.pm_.c:604 ../../netconnect_new.pm_.c:746
-#, fuzzy
+#: ../../netconnect.pm_.c:751
msgid "Disconnect from Internet"
msgstr "Îňâúđćč ńĺ îň Číňĺđíĺň"
-#: ../../netconnect.pm_.c:606 ../../netconnect_new.pm_.c:748
-#, fuzzy
+#: ../../netconnect.pm_.c:753
msgid "Configure network connection (LAN or Internet)"
-msgstr "Íŕńňđîéęŕ íŕ Číňĺđíĺň ńâđúçęŕňŕ"
+msgstr "Íŕńňđîéęŕ íŕ ěđĺćîâŕňŕ âđúçęŕ (LAN čëč Číňĺđíĺň)"
-#: ../../netconnect.pm_.c:609 ../../netconnect_new.pm_.c:751
+#: ../../netconnect.pm_.c:756
msgid "Internet connection & configuration"
msgstr "Číňĺđíĺň âđúçęŕ č íŕńňđîéęŕ"
-#: ../../netconnect.pm_.c:636 ../../netconnect.pm_.c:767
-#: ../../netconnect_new.pm_.c:778 ../../netconnect_new.pm_.c:909
-msgid ""
-"I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"
-msgstr ""
-"Íŕ ďúň ńúě äŕ đĺńňŕđňčđŕě ěđĺćîâîňî óńňđîéńňâî $netc->{NET_DEVICE}. Ńúăëŕńíč "
-"ëč ńňĺ ?"
-
-#: ../../netconnect.pm_.c:653 ../../netconnect_new.pm_.c:795
-#, fuzzy
-msgid "Configure a normal modem connection"
-msgstr "Íŕńňđîéęŕ íŕ Číňĺđíĺň ńâđúçęŕňŕ"
-
-#: ../../netconnect.pm_.c:673 ../../netconnect_new.pm_.c:815
-#, fuzzy
-msgid "Configure an ISDN connection"
-msgstr "Íŕńňđîéęŕ íŕ Číňĺđíĺň ńâđúçęŕňŕ"
-
-#: ../../netconnect.pm_.c:678 ../../netconnect_new.pm_.c:820
-msgid "Internal ISDN card"
-msgstr "Âúňđĺříŕ ISDN ęŕđňŕ"
+#: ../../netconnect.pm_.c:808 ../../netconnect.pm_.c:957
+#: ../../netconnect.pm_.c:967 ../../netconnect.pm_.c:982
+msgid "Network Configuration Wizard"
+msgstr "Ěŕăüîńíčę çŕ íŕńňđîéęŕ íŕ ěđĺćŕňŕ"
-#: ../../netconnect.pm_.c:680 ../../netconnect_new.pm_.c:822
+#: ../../netconnect.pm_.c:809
msgid "External ISDN modem"
msgstr "Âúířĺí ISDN ěîäĺě"
-#: ../../netconnect.pm_.c:683 ../../netconnect.pm_.c:717
-#: ../../netconnect.pm_.c:729 ../../netconnect.pm_.c:753
-#: ../../netconnect.pm_.c:798 ../../netconnect_new.pm_.c:825
-#: ../../netconnect_new.pm_.c:859 ../../netconnect_new.pm_.c:871
-#: ../../netconnect_new.pm_.c:895 ../../netconnect_new.pm_.c:940
-msgid "Connect to the Internet"
-msgstr "Ńâúđćč ńĺ ęúě Číňĺđíĺň"
+#: ../../netconnect.pm_.c:809
+msgid "Internal ISDN card"
+msgstr "Âúňđĺříŕ ISDN ęŕđňŕ"
-#: ../../netconnect.pm_.c:684 ../../netconnect_new.pm_.c:826
+#: ../../netconnect.pm_.c:809
msgid "What kind is your ISDN connection?"
msgstr "Ęŕęúâ ĺ ňčďúň íŕ ISDN âđúçęŕňŕ ?"
-#: ../../netconnect.pm_.c:703 ../../netconnect_new.pm_.c:845
-#, fuzzy
-msgid "Configure a DSL (or ADSL) connection"
-msgstr "Íŕńňđîéęŕ íŕ Číňĺđíĺň ńâđúçęŕňŕ"
-
-#: ../../netconnect.pm_.c:712 ../../netconnect_new.pm_.c:854
-msgid "France"
-msgstr "Ôđŕíöč˙"
-
-#: ../../netconnect.pm_.c:714 ../../netconnect_new.pm_.c:856
-msgid "Other countries"
-msgstr "Äđóăč ńňđŕíč"
-
-#: ../../netconnect.pm_.c:718 ../../netconnect_new.pm_.c:860
-msgid "In which country are you located ?"
-msgstr "Â ęî˙ ńňđŕíŕ ńĺ íŕěčđŕňĺ ?"
-
-#: ../../netconnect.pm_.c:724 ../../netconnect_new.pm_.c:866
-msgid "Alcatel modem"
-msgstr "Ěîäĺě Alcatel"
+#: ../../netconnect.pm_.c:830 ../../netconnect.pm_.c:879
+msgid "Connect to the Internet"
+msgstr "Ńâúđćč ńĺ ęúě Číňĺđíĺň"
-#: ../../netconnect.pm_.c:726 ../../netconnect_new.pm_.c:868
-msgid "ECI modem"
-msgstr "Ěîäĺě ECI"
+#: ../../netconnect.pm_.c:831
+msgid ""
+"The most common way to connect with adsl is pppoe.\n"
+"Some connections use pptp, a few ones use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
+msgstr ""
+"Íŕé-÷ĺńňč˙ íŕ÷čí çŕ ńâúđçâŕíĺ ÷đĺç ADSL ĺ PPPOE.\n"
+"Í˙ęîč âđúçęč čçďîëçâŕň PPTP, ŕ maëęî čçďîëçâŕň DHCP.\n"
+"Ŕęî íĺ çíŕĺňĺ, čçáĺđĺňĺ 'čçďîëçâŕé PPPOE'."
-#: ../../netconnect.pm_.c:730 ../../netconnect_new.pm_.c:872
-msgid "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
-msgstr "Ŕęî ADSL ěîäĺěúň âč ĺ Alcatel, čçáĺđĺňĺ Alcatel. Číŕ÷ĺ, čçáĺđĺňĺ ECI."
+#: ../../netconnect.pm_.c:833
+msgid "use dhcp"
+msgstr "čçďîëçâŕé DHCP"
-#: ../../netconnect.pm_.c:748 ../../netconnect_new.pm_.c:890
+#: ../../netconnect.pm_.c:833
msgid "use pppoe"
msgstr "čçďîëçâŕé PPPOE"
-#: ../../netconnect.pm_.c:750 ../../netconnect_new.pm_.c:892
-msgid "don't use pppoe"
-msgstr "íĺ čçďîëçâŕé PPPOE"
-
-#: ../../netconnect.pm_.c:754 ../../netconnect_new.pm_.c:896
-#, fuzzy
-msgid ""
-"The most common way to connect with adsl is dhcp + pppoe.\n"
-"However, some connections only use dhcp.\n"
-"If you don't know, choose 'use pppoe'"
-msgstr ""
-"Íŕé-îáůč˙ ńëó÷ŕé çŕ ńâúđçâŕíĺ ÷đĺç ADSL ĺ DHCP + PPPOE.\n"
-"Îáŕ÷ĺ, ńúůĺńňâóâŕň í˙ęîč âđúçęč, ęîčňî čçďîëçâŕň ńŕěî DHCP.\n"
-"Ŕęî íĺ çíŕĺňĺ, čçáĺđĺňĺ 'čçďîëçâŕé PPPOE'."
+#: ../../netconnect.pm_.c:833
+msgid "use pptp"
+msgstr "čçďîëçâŕé PPPTP"
-#: ../../netconnect.pm_.c:777 ../../netconnect_new.pm_.c:919
-#, fuzzy
-msgid "Configure a cable connection"
-msgstr "Íŕńňđîéęŕ íŕ Číňĺđíĺň ńâđúçęŕňŕ"
+#: ../../netconnect.pm_.c:843
+#, c-format
+msgid "I'm about to restart the network device %s. Do you agree?"
+msgstr "Íŕ ďúň ńúě äŕ đĺńňŕđňčđŕě ěđĺćîâîňî óńňđîéńňâî %s. Ńúăëŕńíč ëč ńňĺ ?"
-#: ../../netconnect.pm_.c:799 ../../netconnect_new.pm_.c:941
+#: ../../netconnect.pm_.c:880
msgid ""
"Which dhcp client do you want to use?\n"
-"Default is dhcpd"
+"Default is dhcpcd"
msgstr ""
"Ęŕęúâ DHCP ęëčĺíň čńęŕňĺ äŕ čçďîëçâŕňĺ ?\n"
-"Ďî ďîäđŕçáčđŕíĺ ĺ DHCPD ?"
+"Ďî ďîäđŕçáčđŕíĺ ĺ dhcpcd ?"
-#: ../../netconnect.pm_.c:812 ../../netconnect_new.pm_.c:954
-#, fuzzy
-msgid "Disable Internet Connection"
-msgstr "Íŕńňđîéęŕ íŕ Číňĺđíĺň ńâđúçęŕňŕ"
-
-#: ../../netconnect.pm_.c:823 ../../netconnect_new.pm_.c:965
-msgid "Configure local network"
-msgstr "Íŕńňîéęŕ íŕ ëîęŕëíŕňŕ ěđĺćŕ"
-
-#: ../../netconnect.pm_.c:827 ../../netconnect_new.pm_.c:969
-#, fuzzy
+#: ../../netconnect.pm_.c:897
msgid "Network configuration"
msgstr "Íŕńňđîéęŕ íŕ ěđĺćŕňŕ"
-#: ../../netconnect.pm_.c:828 ../../netconnect_new.pm_.c:970
-#, fuzzy
+#: ../../netconnect.pm_.c:898
msgid "Do you want to restart the network"
-msgstr "Čńęŕňĺ ëč äŕ ňĺńňâŕňĺ íŕńňđîéęčňĺ?"
+msgstr "Čńęŕňĺ ëč äŕ đĺńňŕđňčđŕě ěđĺćŕňŕ ?"
-#: ../../netconnect.pm_.c:836 ../../netconnect_new.pm_.c:978
-msgid "Disable networking"
-msgstr "Čçęëţ÷âŕíĺ íŕ ěđĺćŕňŕ"
+#: ../../netconnect.pm_.c:901
+#, c-format
+msgid ""
+"A problem occured while restarting the network: \n"
+"\n"
+"%s"
+msgstr ""
+"Čçíčęíŕ ďđîáëĺě ďđč đĺńňŕđňčđŕíĺňî íŕ ěđĺćŕňŕ:\n"
+"\n"
+"%s"
-#: ../../netconnect.pm_.c:846 ../../netconnect_new.pm_.c:988
-#, fuzzy
-msgid "Configure the Internet connection / Configure local Network"
-msgstr "Ńâúđćč ńĺ ęúě Číňĺđíĺň / Íŕńňđîé ëîęŕëíŕňŕ ěđĺćŕ"
+#: ../../netconnect.pm_.c:931
+msgid ""
+"Because you are doing a network installation, your network is already "
+"configured.\n"
+"Click on Ok to keep your configuration, or cancel to reconfigure your "
+"Internet & Network connection.\n"
+msgstr ""
+"Ňúé ęŕňî ďđŕâčňĺ ěđĺćîâŕ číńňŕëŕöč˙, ěđĺćŕňŕ âč âĺ÷ĺ ĺ íŕńňđîĺíŕ.\n"
+"Öúęíĺňĺ Ok, çŕ äŕ çŕďŕçčňĺ íŕńňđîéęŕňŕ, čëč Îňě˙íŕ, çŕ äŕ ďđĺíŕńňîčňĺ "
+"Číňĺđíĺň č ěđĺćîâŕňŕ ńč âđúçęŕ.\n"
-#: ../../netconnect.pm_.c:847 ../../netconnect_new.pm_.c:989
+#: ../../netconnect.pm_.c:958
msgid ""
-"Local networking has already been configured.\n"
-"Do you want to:"
+"Welcome to The Network Configuration Wizard\n"
+"\n"
+"We are about to configure your internet/network connection.\n"
+"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
-"Ëîęŕëíŕňŕ ěđĺćŕ âĺ÷ĺ ĺ íŕńňđîĺíŕ.\n"
-"Čńęŕňĺ ëč äŕ:"
+"Äîáđĺ äîřëč ďđč ěŕăüîńíčęŕ çŕ íŕńňđîéęŕ íŕ ěđĺćŕ\n"
+"\n"
+"Âčĺ ńňĺ íŕ ďúň äŕ íŕńňđîčňĺ Číňĺđíĺň/ěđĺćîâŕňŕ ńč âđúçęŕ.\n"
+"Ŕęî íĺ čńęŕňĺ äŕ čçďîëçâŕňĺ ŕâňîěŕňč÷íî çŕńč÷ŕíĺ, čçęëţ÷ĺňĺ ęóňčéęŕňŕ.\n"
+
+#: ../../netconnect.pm_.c:960
+msgid "Choose the profile to configure"
+msgstr "Čçáĺđĺňĺ ďđîôčë çŕ íŕńňđîéęŕ"
+
+#: ../../netconnect.pm_.c:961
+msgid "Use auto detection"
+msgstr "Čçďîëçâŕé ŕâňîěŕňč÷íî çŕńč÷ŕíĺ"
+
+#: ../../netconnect.pm_.c:967 ../../printerdrake.pm_.c:19
+msgid "Detecting devices..."
+msgstr "Îňęđčâŕíĺ íŕ óńňđîéńňâŕ ..."
+
+#: ../../netconnect.pm_.c:974
+msgid "Normal modem connection"
+msgstr "Îáčęíîâĺíŕ ěîäĺěíŕ âđúçęŕ"
-#: ../../netconnect.pm_.c:848 ../../netconnect_new.pm_.c:990
+#: ../../netconnect.pm_.c:974
+#, c-format
+msgid "detected on port %s"
+msgstr "çŕńĺ÷ĺí íŕ ďîđň %s"
+
+#: ../../netconnect.pm_.c:975
+msgid "ISDN connection"
+msgstr "ISDN âđúçęŕ"
+
+#: ../../netconnect.pm_.c:975
+#, c-format
+msgid "detected %s"
+msgstr "çŕńĺ÷ĺíŕ %s"
+
+#: ../../netconnect.pm_.c:976
+msgid "DSL (or ADSL) connection"
+msgstr "DSL (čëč ADSL) âđúçęŕ"
+
+#: ../../netconnect.pm_.c:976
+#, c-format
+msgid "detected on interface %s"
+msgstr "çŕńĺ÷ĺí íŕ číňĺđôĺéń %s"
+
+#: ../../netconnect.pm_.c:977
+msgid "Cable connection"
+msgstr "Ęŕáĺëíŕ âđúçęŕ"
+
+#: ../../netconnect.pm_.c:978
+msgid "LAN connection"
+msgstr "LAN âđúçęŕ"
+
+#: ../../netconnect.pm_.c:978
+msgid "ethernet card(s) detected"
+msgstr "ethernet ęŕđňč çŕńĺ÷ĺíč"
+
+#: ../../netconnect.pm_.c:983
msgid "How do you want to connect to the Internet?"
msgstr "Ęŕę čńęŕňĺ äŕ ńĺ ńâúđćĺňĺ ęúě Číňĺđíĺň ?"
-#: ../../netconnect.pm_.c:870 ../../netconnect_new.pm_.c:1012
-msgid "Network Configuration"
-msgstr "Íŕńňđîéęŕ íŕ ěđĺćŕňŕ"
-
-#: ../../netconnect.pm_.c:871 ../../netconnect_new.pm_.c:1013
+#: ../../netconnect.pm_.c:1000
msgid ""
-"Now that your Internet connection is configured,\n"
-"your computer can be configured to share its Internet connection.\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN).\n"
+"Congratulation, The network and internet configuration is finished.\n"
"\n"
-"Would you like to setup the Internet Connection Sharing?\n"
+"The configuration will now be applied to your system."
msgstr ""
-"Ńĺăŕ, ńëĺä ęŕňî Číňĺđíĺň âđúçęŕňŕ âč ĺ íŕńňđîĺíŕ,\n"
-"ęîěďţňúđúň âč ěîćĺ äŕ áúäĺ íŕńňđîĺí íŕ ďîäĺë˙ Číňĺđíĺň âđúçęŕňŕ ńč.\n"
-"Îňáĺëĺćĺňĺ: ňđ˙áâŕ âč îňäĺëĺí çŕ ňîâŕ ěđĺćîâ ŕäŕďňĺđ, çŕ äŕ óńňŕíîâčňĺ "
-"âúňđĺříŕňŕ ńč ěđĺćŕ (LAN).\n"
+"Ďîçäđŕâëĺíč˙, ěđĺćîâŕňĺ č Číňĺđíĺň íŕńňđîéęŕňŕ ĺ çŕâúđřĺíŕ.\n"
+"\n"
+"Íŕńňđîéęčňĺ ůĺ áúäŕň ďđčëîćĺíč ęúě ńčńňĺěŕňŕ âč."
+
+#: ../../netconnect.pm_.c:1003
+msgid ""
+"After that is done, we recommend you to restart your X\n"
+"environnement to avoid hostname changing problem."
+msgstr ""
+"Ńëĺä ęŕňî ńňŕíĺ ňîâŕ, ďđĺďîđú÷âŕěĺ âč äŕ đĺńňŕđňčđŕňĺ X\n"
+"ńđĺäŕňŕ ńč, çŕ äŕ čçáĺăíĺňĺ ďđîáëĺěč ńúń ńě˙íŕňŕ čěĺňî íŕ őîńňŕ."
#: ../../network.pm_.c:253
msgid "no network card found"
msgstr "íĺ ĺ îňęđčňŕ ěđĺćîâŕ ęŕđňŕ"
-#: ../../network.pm_.c:273 ../../network.pm_.c:340
+#: ../../network.pm_.c:277 ../../network.pm_.c:387
msgid "Configuring network"
msgstr "Íŕńňîéęŕ íŕ ěđĺćŕňŕ"
-#: ../../network.pm_.c:274
+#: ../../network.pm_.c:278
msgid ""
"Please enter your host name if you know it.\n"
"Some DHCP servers require the hostname to work.\n"
@@ -5675,22 +6186,22 @@ msgstr ""
"Host čěĺňî ňđ˙áâŕ äŕ áóäĺ íŕďúëíî ęâŕëčôčöčđŕíî čěĺ,\n"
"ęŕňî ``mybox.mylab.myco.com''."
-#: ../../network.pm_.c:278 ../../network.pm_.c:345
+#: ../../network.pm_.c:282 ../../network.pm_.c:392
msgid "Host name"
msgstr "Čěĺ íŕ őîńň:"
-#: ../../network.pm_.c:297
+#: ../../network.pm_.c:319
msgid ""
"WARNING: This device has been previously configured to connect to the "
"Internet.\n"
-"Simply press OK to keep this device configured.\n"
+"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
msgstr ""
"ÂÍČĚŔÍČĹ: Ňîâŕ óńňđîéńňâî âĺ÷ĺ ĺ íŕńňđîĺíî äŕ ńĺ ńâúđçâŕ ęúě Číňĺđíĺň.\n"
-"Ďđîńňî íŕňčńíĺňĺ OK, çŕ äŕ çŕďŕçčňĺ íŕńňđîéęŕňŕ íŕ óńňđîéńňâîňî.\n"
+"Ďđîńňî ďđčĺěĺňĺ, çŕ äŕ îńňŕâčňĺ óńňđîéńňâîňî íŕńňđîĺíî.\n"
"Ďîďđŕâęŕňŕ íŕ ďîëĺňŕňŕ ďî-äîëó ůĺ ďđĺçŕďčřĺ ňŕçč íŕńňđîéęŕ."
-#: ../../network.pm_.c:302
+#: ../../network.pm_.c:324
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -5700,33 +6211,38 @@ msgstr ""
"Âń˙ęî óńňđîéńňâî ňđ˙áâŕ äŕ áúäĺ âúâĺäĺíî ęŕňî IP ŕäđĺń\n"
"ń ňî÷ęîâî-äĺńĺňč÷íî îçíŕ÷ĺíčĺ (íŕďđčěĺđ, 1.2.3.4)."
-#: ../../network.pm_.c:311 ../../network.pm_.c:312
+#: ../../network.pm_.c:333 ../../network.pm_.c:334
#, c-format
msgid "Configuring network device %s"
msgstr "Íŕńňđîéęŕ íŕ ěđĺćîâîňî óńňđîéńňâî %s"
-#: ../../network.pm_.c:314
-msgid "Automatic IP"
-msgstr "Ŕâňîěŕňč÷ĺí IP ŕäđĺń"
+#: ../../network.pm_.c:334
+msgid " (driver $module)"
+msgstr " (äđŕéâĺđ $module)"
-#: ../../network.pm_.c:314
+#: ../../network.pm_.c:336 ../../standalone/draknet_.c:231
+#: ../../standalone/draknet_.c:425
msgid "IP address"
msgstr "IP ŕäđĺń"
-#: ../../network.pm_.c:314
+#: ../../network.pm_.c:337 ../../standalone/draknet_.c:426
msgid "Netmask"
msgstr "Ěđĺćîâŕ ěŕńęŕ"
-#: ../../network.pm_.c:315
+#: ../../network.pm_.c:338
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network.pm_.c:321 ../../printerdrake.pm_.c:98
-#: ../../printerdrake.pm_.c:420
+#: ../../network.pm_.c:338
+msgid "Automatic IP"
+msgstr "Ŕâňîěŕňč÷ĺí IP ŕäđĺń"
+
+#: ../../network.pm_.c:359 ../../printerdrake.pm_.c:102
+#: ../../printerdrake.pm_.c:425
msgid "IP address should be in format 1.2.3.4"
msgstr "IP ŕäđĺńúň ňđ˙áâŕ äŕ áúäĺ âúâ ôîđěŕň 1.2.3.4"
-#: ../../network.pm_.c:341
+#: ../../network.pm_.c:388
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -5738,43 +6254,43 @@ msgstr ""
"ęŕňî ``mybox.mylab.myco.com''.\n"
"Ěîćĺňĺ ńúůî äŕ âúâĺäĺňĺ IP ŕäđĺńŕ íŕ Âŕřč˙ gateway, ŕęî čěŕňĺ ňŕęúâ"
-#: ../../network.pm_.c:346
+#: ../../network.pm_.c:393
msgid "DNS server"
msgstr "DNS ńúđâúđ"
-#: ../../network.pm_.c:347
+#: ../../network.pm_.c:394 ../../standalone/draknet_.c:563
msgid "Gateway"
msgstr "Gateway"
-#: ../../network.pm_.c:348
+#: ../../network.pm_.c:396
msgid "Gateway device"
msgstr "Gateway óńňđîéńňâî"
-#: ../../network.pm_.c:358
+#: ../../network.pm_.c:407
msgid "Proxies configuration"
msgstr "Íŕńňđîéęŕ íŕ proxy"
-#: ../../network.pm_.c:359
+#: ../../network.pm_.c:408
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network.pm_.c:360
+#: ../../network.pm_.c:409
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network.pm_.c:366
+#: ../../network.pm_.c:412
msgid "Proxy should be http://..."
msgstr "Proxy-ńúđâúđŕ ňđ˙áâŕ äŕ ĺ http://..."
-#: ../../network.pm_.c:367
+#: ../../network.pm_.c:413
msgid "Proxy should be ftp://..."
msgstr "Proxy-ńúđâúđŕ ňđ˙áâŕ äŕ ĺ ftp://..."
-#: ../../partition_table.pm_.c:540
+#: ../../partition_table.pm_.c:560
msgid "Extended partition not supported on this platform"
msgstr "Đŕçřčđĺíč ä˙ëîâĺ íĺ ńĺ ďîääúđćŕň íŕ ňŕçč ďëŕňôîđěŕ"
-#: ../../partition_table.pm_.c:558
+#: ../../partition_table.pm_.c:578
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -5784,117 +6300,99 @@ msgstr ""
"Ĺäčíńňâĺíč˙ň íŕ÷čí ĺ äŕ ďđĺěĺńňčňĺ ăëŕâíčňĺ ńč ä˙ëîâĺ, çŕ äŕ čěŕňĺ ďđŕçíî "
"ě˙ńňî ńëĺä extended-ä˙ëîâĺňĺ"
-#: ../../partition_table.pm_.c:651
+#: ../../partition_table.pm_.c:672
#, c-format
msgid "Error reading file %s"
msgstr "Ăđĺřęŕ ďđč ÷ĺňĺíĺňî íŕ ôŕéëŕ %s"
-#: ../../partition_table.pm_.c:658
+#: ../../partition_table.pm_.c:679
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Âúçńňŕíîâ˙âŕíĺňî îň ôŕéëŕ %s íĺ óńď˙: %s"
-#: ../../partition_table.pm_.c:660
+#: ../../partition_table.pm_.c:681
msgid "Bad backup file"
msgstr "Ëîř backup-ôŕéë"
-#: ../../partition_table.pm_.c:681
+#: ../../partition_table.pm_.c:703
#, c-format
msgid "Error writing to file %s"
msgstr "Ăđĺřęŕ ďđč çŕďčń âúâ ôŕéëŕ %s"
-#: ../../pkgs.pm_.c:20
-msgid "mandatory"
-msgstr "ěŕíäŕňĺí"
+#: ../../partition_table_raw.pm_.c:161
+msgid ""
+"Something bad is happening on your 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 trash"
+msgstr ""
+"Íĺůî ëîřî ńňŕâŕ ń óńňđîéńňâîňî âč.\n"
+"Ňĺńňŕ çŕ öĺëîńň íŕ äŕííčňĺ ďđîďŕäíŕ.\n"
+"Ňîâŕ çíŕ÷č, ÷ĺ ďčńŕíĺňî íŕ ęŕęâîňî č áčëî ďî äčńęŕ ůĺ ďđĺâđúůŕ\n"
+"ďđîčçâîëíî â áîęëóę"
-#: ../../pkgs.pm_.c:21
+#: ../../pkgs.pm_.c:24
msgid "must have"
msgstr "íóćĺí"
-#: ../../pkgs.pm_.c:22
+#: ../../pkgs.pm_.c:25
msgid "important"
msgstr "âŕćĺí"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "very nice"
msgstr "ěíîăî äîáúđ"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "nice"
msgstr "äîáúđ"
-#: ../../pkgs.pm_.c:26 ../../pkgs.pm_.c:27
-msgid "interesting"
-msgstr "číňĺđĺńĺí"
-
-#: ../../pkgs.pm_.c:28 ../../pkgs.pm_.c:29 ../../pkgs.pm_.c:30
-#: ../../pkgs.pm_.c:31
+#: ../../pkgs.pm_.c:28
msgid "maybe"
msgstr "ńňŕâŕ"
-#: ../../pkgs.pm_.c:34
-msgid "i18n (important)"
-msgstr "i18n (âŕćĺí)"
-
-#: ../../pkgs.pm_.c:35
-msgid "i18n (very nice)"
-msgstr "i18n (ěíîăî äîáúđ)"
-
-#: ../../pkgs.pm_.c:36
-msgid "i18n (nice)"
-msgstr "i18n (äîáúđ)"
-
-#: ../../printer.pm_.c:19
+#: ../../printer.pm_.c:20
msgid "Local printer"
msgstr "Ëîęŕëĺí ďđčíňĺđ"
-#: ../../printer.pm_.c:20
+#: ../../printer.pm_.c:21
msgid "Remote printer"
msgstr "Îňäŕëĺ÷ĺí ďđčíňĺđ"
-#: ../../printer.pm_.c:21 ../../printerdrake.pm_.c:410
-msgid "Remote CUPS server"
-msgstr "Îňäŕëĺ÷ĺí CUPS ńúđâúđ"
-
-#: ../../printer.pm_.c:22
+#: ../../printer.pm_.c:23
msgid "Remote lpd server"
msgstr "Îňäŕëĺ÷ĺí LPD ďđčíňĺđ"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:24
msgid "Network printer (socket)"
msgstr "Ěđĺćîâ ďđčíňĺđ (socket)"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:25
msgid "SMB/Windows 95/98/NT"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:26
msgid "NetWare"
msgstr "NetWare"
-#: ../../printer.pm_.c:26 ../../printerdrake.pm_.c:154
-#: ../../printerdrake.pm_.c:156
+#: ../../printer.pm_.c:27 ../../printerdrake.pm_.c:158
+#: ../../printerdrake.pm_.c:160
msgid "Printer Device URI"
msgstr "Ďĺ÷ŕňŕůî óńňđîéńňâî URI"
#: ../../printerdrake.pm_.c:19
-msgid "Detecting devices..."
-msgstr "Îňęđčâŕíĺ íŕ óńňđîéńňâŕ ..."
-
-#: ../../printerdrake.pm_.c:19
msgid "Test ports"
msgstr "Ňĺńňâŕíĺ ďîđňîâĺňĺ"
-#: ../../printerdrake.pm_.c:35
+#: ../../printerdrake.pm_.c:40
#, c-format
msgid "A printer, model \"%s\", has been detected on "
msgstr "Ďđčíňĺđ îň ěîäĺëŕ \"%s\", ĺ íŕěĺđĺí íŕ "
-#: ../../printerdrake.pm_.c:48
+#: ../../printerdrake.pm_.c:52
msgid "Local Printer Device"
msgstr "Ëîęŕëíî ďĺ÷ŕňŕůî óńňđîéńňâî"
-#: ../../printerdrake.pm_.c:49
+#: ../../printerdrake.pm_.c:53
msgid ""
"What device is your printer connected to \n"
"(note that /dev/lp0 is equivalent to LPT1:)?\n"
@@ -5902,15 +6400,15 @@ msgstr ""
"Ęúäĺ ĺ ńâúđçŕí âŕřč˙ ďđčíňĺđ \n"
"(çŕáĺëĺćęŕ: /dev/lp0 ĺ ĺęâčâŕëĺíňíî íŕ LPT1) ?\n"
-#: ../../printerdrake.pm_.c:51
+#: ../../printerdrake.pm_.c:55
msgid "Printer Device"
msgstr "Ďĺ÷ŕňŕůî óńňđîéńňâî"
-#: ../../printerdrake.pm_.c:70
+#: ../../printerdrake.pm_.c:74
msgid "Remote lpd Printer Options"
msgstr "Îďöčč íŕ îňäŕëĺ÷ĺí lpd-ďđčíňĺđ"
-#: ../../printerdrake.pm_.c:71
+#: ../../printerdrake.pm_.c:75
msgid ""
"To use a remote lpd print queue, you need to supply\n"
"the hostname of the printer server and the queue name\n"
@@ -5920,19 +6418,19 @@ msgstr ""
"čěĺíŕňŕ íŕ őîńňŕ č íŕ îďŕřęŕňŕ íŕ ńúđâúđŕ, íŕ ęîéňî ůĺ ńúçäŕâŕňĺ\n"
"đŕáîňŕ."
-#: ../../printerdrake.pm_.c:74
+#: ../../printerdrake.pm_.c:78
msgid "Remote hostname"
msgstr "Îňäŕëĺ÷ĺíî čěĺ íŕ őîńň"
-#: ../../printerdrake.pm_.c:75
+#: ../../printerdrake.pm_.c:79
msgid "Remote queue"
msgstr "Îňäŕëĺ÷ĺíî čěĺ íŕ îďŕřęŕ"
-#: ../../printerdrake.pm_.c:84
+#: ../../printerdrake.pm_.c:88
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "SMB (Windows 9x/NT) îďöčč çŕ ďđčíňĺđ"
-#: ../../printerdrake.pm_.c:85
+#: ../../printerdrake.pm_.c:89
msgid ""
"To print to a SMB printer, you need to provide the\n"
"SMB host name (Note! It may be different from its\n"
@@ -5946,27 +6444,27 @@ msgstr ""
"ďđčíňĺđŕ, äî ęîéňî čńęŕňĺ äîńňúď č ďîäőîä˙ůî čěĺí, ďŕđîëŕ č číôîđěŕöč˙\n"
"çŕ đŕáîňíŕňŕ ăđóďŕ."
-#: ../../printerdrake.pm_.c:90
+#: ../../printerdrake.pm_.c:94
msgid "SMB server host"
msgstr "Őîńň íŕ SMB ńúđâúđ"
-#: ../../printerdrake.pm_.c:91
+#: ../../printerdrake.pm_.c:95
msgid "SMB server IP"
msgstr "IP íŕ SMB ńúđâúđ:"
-#: ../../printerdrake.pm_.c:92
+#: ../../printerdrake.pm_.c:96
msgid "Share name"
msgstr "Îáůî čěĺ"
-#: ../../printerdrake.pm_.c:95
+#: ../../printerdrake.pm_.c:99
msgid "Workgroup"
msgstr "Đŕáîňíŕ ăđóďŕ"
-#: ../../printerdrake.pm_.c:120
+#: ../../printerdrake.pm_.c:124
msgid "NetWare Printer Options"
msgstr "Îďöčč çŕ NetWare ďđčíňĺđ"
-#: ../../printerdrake.pm_.c:121
+#: ../../printerdrake.pm_.c:125
msgid ""
"To print to a NetWare printer, you need to provide the\n"
"NetWare print server name (Note! it may be different from its\n"
@@ -5976,19 +6474,19 @@ msgstr ""
"Çŕ äŕ ďĺ÷ŕňčňĺ íŕ NetWare ďđčíňĺđ ,ňđ˙áâŕ äŕ çíŕĺňĺ čěĺî ěó č âúçěîćíî\n"
"ŕäđĺńŕ íŕ ńúđâúđŕ, ęŕęňî č čěĺňî íŕ îďŕřęŕňŕ,ďîňđĺáčňĺëńęîňî čěĺ,ďŕđîëŕ."
-#: ../../printerdrake.pm_.c:125
+#: ../../printerdrake.pm_.c:129
msgid "Printer Server"
msgstr "Ńúđâúđ íŕ ďđčíňĺđŕ"
-#: ../../printerdrake.pm_.c:126
+#: ../../printerdrake.pm_.c:130
msgid "Print Queue Name"
msgstr "Čěĺ íŕ ďĺ÷ŕňíŕňŕ îďŕřęŕňŕ"
-#: ../../printerdrake.pm_.c:138
+#: ../../printerdrake.pm_.c:142
msgid "Socket Printer Options"
msgstr "Îďöčč íŕ Socket ďđčíňĺđ"
-#: ../../printerdrake.pm_.c:139
+#: ../../printerdrake.pm_.c:143
msgid ""
"To print to a socket printer, you need to provide the\n"
"hostname of the printer and optionally the port number."
@@ -5996,32 +6494,31 @@ msgstr ""
"Çŕ äŕ ďĺ÷ŕňŕňĺ íŕ socket ďđčíňĺđ, ňđ˙áâŕ äŕ ďđĺäîńňŕâčňĺ\n"
"čěĺňî íŕ őîńňŕ íŕ ďđčíňĺđŕ č, ĺâĺíňóŕëíî, íîěĺđ íŕ ďîđň."
-#: ../../printerdrake.pm_.c:141
+#: ../../printerdrake.pm_.c:145
msgid "Printer Hostname"
msgstr "Čěĺ íŕ őîńň íŕ ďđčíňĺđŕ"
-#: ../../printerdrake.pm_.c:142 ../../printerdrake.pm_.c:417
+#: ../../printerdrake.pm_.c:146 ../../printerdrake.pm_.c:422
msgid "Port"
msgstr "Ďîđň"
-#: ../../printerdrake.pm_.c:155
+#: ../../printerdrake.pm_.c:159
msgid "You can specify directly the URI to access the printer with CUPS."
msgstr "Ěîćĺňĺ äŕ îďđĺäĺëčňĺ íŕďđŕâî URI çŕ äîńňúď äî ďđčíňĺđŕ ń CUPS."
-#: ../../printerdrake.pm_.c:188 ../../printerdrake.pm_.c:240
+#: ../../printerdrake.pm_.c:192 ../../printerdrake.pm_.c:244
msgid "What type of printer do you have?"
msgstr "Ęŕęúâ ňčď ďđčíňĺđ čěŕňĺ ?"
-#: ../../printerdrake.pm_.c:200 ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:204 ../../printerdrake.pm_.c:305
msgid "Do you want to test printing?"
msgstr "Čńęŕňĺ ëč ňĺńňîâ ďĺ÷ŕň ?"
-#: ../../printerdrake.pm_.c:203 ../../printerdrake.pm_.c:318
+#: ../../printerdrake.pm_.c:207 ../../printerdrake.pm_.c:316
msgid "Printing test page(s)..."
msgstr "Îňďĺ÷ŕňâŕíĺ íŕ ňĺńňîâ(ŕňŕ/čňĺ) ńňđŕíčö(ŕ/č) ..."
-# c-format
-#: ../../printerdrake.pm_.c:210 ../../printerdrake.pm_.c:326
+#: ../../printerdrake.pm_.c:214 ../../printerdrake.pm_.c:324
#, c-format
msgid ""
"Test page(s) have been sent to the printer daemon.\n"
@@ -6038,7 +6535,7 @@ msgstr ""
"\n"
"Đŕáîňč ëč äîáđĺ ?"
-#: ../../printerdrake.pm_.c:214 ../../printerdrake.pm_.c:330
+#: ../../printerdrake.pm_.c:218 ../../printerdrake.pm_.c:328
msgid ""
"Test page(s) have been sent to the printer daemon.\n"
"This may take a little time before printer start.\n"
@@ -6048,83 +6545,79 @@ msgstr ""
"Ňîâŕ ěîćĺ äŕ îňíĺěĺ ěŕëęî âđĺěĺ ďđĺäč ďđčíňĺđŕ äŕ çŕďî÷íĺ.\n"
"Đŕáîňč ëč äîáđĺ ?"
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:234
msgid "Yes, print ASCII test page"
msgstr "Äŕ, îňďĺ÷ŕňŕé ASCII ňĺńňîâŕ ńňđŕíčöŕ"
-#: ../../printerdrake.pm_.c:231
+#: ../../printerdrake.pm_.c:235
msgid "Yes, print PostScript test page"
msgstr "Äŕ, îňďĺ÷ŕňŕé PostScript ňĺńňîâŕ ńňđŕíčöŕ"
-#: ../../printerdrake.pm_.c:232
+#: ../../printerdrake.pm_.c:236
msgid "Yes, print both test pages"
msgstr "Äŕ, îňďĺ÷ŕňŕé äâĺňĺ ňĺńňîâč ńňđŕíčöč"
-#: ../../printerdrake.pm_.c:239
+#: ../../printerdrake.pm_.c:243
msgid "Configure Printer"
msgstr "Íŕńňđîéęŕ íŕ ďđčíňĺđ"
-#: ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:273
msgid "Printer options"
msgstr "Îďöčč íŕ ďđčíňĺđŕ"
-#: ../../printerdrake.pm_.c:273
+#: ../../printerdrake.pm_.c:274
msgid "Paper Size"
msgstr "Đŕçěĺđ íŕ őŕđňč˙ňŕ"
-#: ../../printerdrake.pm_.c:274
+#: ../../printerdrake.pm_.c:275
msgid "Eject page after job?"
msgstr "Čçęŕđâŕíĺ ńňđŕíčöŕňŕ ńëĺä ďĺ÷ŕň ?"
-#: ../../printerdrake.pm_.c:279
+#: ../../printerdrake.pm_.c:280
msgid "Uniprint driver options"
msgstr "Îďöčč çŕ Uniprint äđŕéâĺđ"
-#: ../../printerdrake.pm_.c:280
+#: ../../printerdrake.pm_.c:281
msgid "Color depth options"
msgstr "Îďöčč çŕ äúëáî÷číŕ íŕ öâĺňŕ"
-#: ../../printerdrake.pm_.c:282
+#: ../../printerdrake.pm_.c:283
msgid "Print text as PostScript?"
msgstr "Ďĺ÷ŕňŕé ňĺęńňŕ ęŕňî PostScript ?"
-#: ../../printerdrake.pm_.c:283
-msgid "Reverse page order"
-msgstr "Îáúđíč đĺäŕ íŕ ńňđŕíčöčňĺ"
-
#: ../../printerdrake.pm_.c:285
msgid "Fix stair-stepping text?"
msgstr "Ďîďđŕâęŕ íŕ stair-stepping ňĺęńň ?"
-#: ../../printerdrake.pm_.c:288
+#: ../../printerdrake.pm_.c:287
msgid "Number of pages per output pages"
msgstr "Áđîé ńňđŕíčöč çŕ čçőîäíč ńňđŕíčöč"
-#: ../../printerdrake.pm_.c:289
+#: ../../printerdrake.pm_.c:288
msgid "Right/Left margins in points (1/72 of inch)"
msgstr "Äĺńĺí/Ë˙â úăúë â ňî÷ęč (1/72 íŕ čí÷)"
-#: ../../printerdrake.pm_.c:290
+#: ../../printerdrake.pm_.c:289
msgid "Top/Bottom margins in points (1/72 of inch)"
msgstr "Ăîđĺí/Äîëĺí úăúë â ňî÷ęč (1/72 íŕ čí÷)"
-#: ../../printerdrake.pm_.c:293
+#: ../../printerdrake.pm_.c:291
msgid "Extra GhostScript options"
msgstr "Äîďúëíčňĺëíč GhostScript îďöčč"
-#: ../../printerdrake.pm_.c:296
+#: ../../printerdrake.pm_.c:293
msgid "Extra Text options"
msgstr "Äîďúëíčňĺëíč îďöčč çŕ ňĺęńň"
-#: ../../printerdrake.pm_.c:346
-msgid "Printer"
-msgstr "Ďđčíňĺđ"
+#: ../../printerdrake.pm_.c:295
+msgid "Reverse page order"
+msgstr "Îáúđíč đĺäŕ íŕ ńňđŕíčöčňĺ"
-#: ../../printerdrake.pm_.c:347
+#: ../../printerdrake.pm_.c:345
msgid "Would you like to configure a printer?"
msgstr "Ćĺëŕĺňĺ ëč äŕ íŕńňđîčňĺ ďđčíňĺđ ?"
-#: ../../printerdrake.pm_.c:350
+#: ../../printerdrake.pm_.c:351
msgid ""
"Here are the following print queues.\n"
"You can add some more or change the existing ones."
@@ -6132,28 +6625,28 @@ msgstr ""
"Ňîâŕ ĺ ńëĺäâŕůŕňŕ ďĺ÷ŕňíŕ îďŕřęŕ.\n"
"Ěîćĺňĺ äîáŕâčňĺ îůĺ čëč äŕ ďđîěĺíčňĺ ńúůĺńňâóâŕůčňĺ."
-#: ../../printerdrake.pm_.c:365
+#: ../../printerdrake.pm_.c:370
msgid "CUPS starting"
msgstr "Ńňŕđňčđŕíĺ íŕ CUPS"
-#: ../../printerdrake.pm_.c:365
+#: ../../printerdrake.pm_.c:370
msgid "Reading CUPS drivers database..."
msgstr "×ĺňĺíĺ íŕ CUPS äđŕéâĺđčňĺ îň áŕçŕňŕ äŕííč ..."
-#: ../../printerdrake.pm_.c:379 ../../printerdrake.pm_.c:444
-#: ../../printerdrake.pm_.c:457 ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:384 ../../printerdrake.pm_.c:450
+#: ../../printerdrake.pm_.c:471 ../../printerdrake.pm_.c:479
msgid "Select Printer Connection"
msgstr "Čçáĺđĺňĺ âđúçęŕ ęúě ďđčíňĺđŕ"
-#: ../../printerdrake.pm_.c:380 ../../printerdrake.pm_.c:458
+#: ../../printerdrake.pm_.c:385 ../../printerdrake.pm_.c:472
msgid "How is the printer connected?"
msgstr "Ęŕę ĺ ńâúđçŕí ďđčíňĺđúň ?"
-#: ../../printerdrake.pm_.c:387
+#: ../../printerdrake.pm_.c:392
msgid "Select Remote Printer Connection"
msgstr "Čçáĺđĺňĺ âđúçęŕ ęúě îňäŕëĺ÷ĺíč˙ ďđčíňĺđ"
-#: ../../printerdrake.pm_.c:388
+#: ../../printerdrake.pm_.c:393
msgid ""
"With a remote CUPS server, you do not have to configure\n"
"any printer here; printers will be automatically detected.\n"
@@ -6163,8 +6656,7 @@ msgstr ""
"č äŕ áčëî ďđčíňĺđ ňóę; ďđčíňĺđčňĺ ńŕěč áčâŕň çŕńč÷ŕíč.\n"
" ńëó÷ŕé íŕ ńúěíĺíčĺ, čçáĺđĺňĺ \"Îňäŕëĺ÷ĺí CUPS ńúđâúđ\"."
-#: ../../printerdrake.pm_.c:411
-#, fuzzy
+#: ../../printerdrake.pm_.c:416
msgid ""
"With a remote CUPS server, you do not have to configure\n"
"any printer here; printers will be automatically detected\n"
@@ -6173,23 +6665,29 @@ msgid ""
"and optionally the port number."
msgstr ""
"Ń îňäŕëĺ÷ĺí CUPS ńúđâúđ, íĺ âč ńĺ íŕëŕăŕ äŕ íŕńňđîéâŕňĺ ęŕęúâňî\n"
-"č äŕ áčëî ďđčíňĺđ ňóę; ďđčíňĺđčňĺ ńŕěč áčâŕň çŕńč÷ŕíč.\n"
-" ńëó÷ŕé íŕ ńúěíĺíčĺ, čçáĺđĺňĺ \"Îňäŕëĺ÷ĺí CUPS ńúđâúđ\"."
+"č äŕ áčëî ďđčíňĺđ ňóę; ďđčíňĺđčňĺ ńŕěč ůĺ áúäŕň çŕńĺ÷ĺíč,\n"
+"îńâĺí ŕęî í˙ěŕňĺ ńúđâúđ íŕ äđóăŕ ěđĺćŕ; â ďîńëĺäíč˙ ńëó÷ŕé,\n"
+"ůĺ ňđ˙áâŕ äŕ ďđĺäîńňŕâčňĺ IP ŕäđĺń č ĺâĺíňóŕëíî ďîđň íŕ\n"
+"CUPS ńúđâúđŕ."
-#: ../../printerdrake.pm_.c:416
-#, fuzzy
+#: ../../printerdrake.pm_.c:421
msgid "CUPS server IP"
-msgstr "IP íŕ SMB ńúđâúđ:"
+msgstr "IP íŕ CUPS ńúđâúđŕ"
-#: ../../printerdrake.pm_.c:424
+#: ../../printerdrake.pm_.c:429
msgid "Port number should be numeric"
-msgstr ""
+msgstr "Íîěĺđúň íŕ ďîđňŕ ňđ˙áâŕ äŕ ĺ öčôđĺí"
-#: ../../printerdrake.pm_.c:445 ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:451 ../../printerdrake.pm_.c:480
msgid "Remove queue"
msgstr "Čçňđčâŕíĺ íŕ îďŕřęŕňŕ"
-#: ../../printerdrake.pm_.c:446
+#: ../../printerdrake.pm_.c:454
+msgid ""
+"Name of printer should contains only letters, numbers and the underscore"
+msgstr "Čěĺňî íŕ ďđčíňĺđŕ ňđ˙áâŕ äŕ ńúäúđćŕ ńŕěî áóęâč, ÷čńëŕ č ďîä÷ĺđňŕâęŕ"
+
+#: ../../printerdrake.pm_.c:461
msgid ""
"Every printer need a name (for example lp).\n"
"Other parameters such as the description of the printer or its location\n"
@@ -6201,19 +6699,19 @@ msgstr ""
"áúäŕň îďđĺäĺëĺíč. Ęŕęâî čěĺ äŕ áúäĺ čçďîëçâŕíî çŕ ňîçč ďđčíňĺđ č\n"
"ęŕę ĺ ńâúđçŕí ňîé ?"
-#: ../../printerdrake.pm_.c:450
+#: ../../printerdrake.pm_.c:465
msgid "Name of printer"
msgstr "Čěĺ íŕ ďđčíňĺđ"
-#: ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:466
msgid "Description"
msgstr "Îďčńŕíčĺ"
-#: ../../printerdrake.pm_.c:452
+#: ../../printerdrake.pm_.c:467
msgid "Location"
msgstr "Ěĺńňîďîëîćĺíčĺ"
-#: ../../printerdrake.pm_.c:465
+#: ../../printerdrake.pm_.c:482
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"
@@ -6225,45 +6723,49 @@ msgstr ""
"čěĺ íŕ äčđĺęňîđč˙ äŕ áúäĺ čçďîëçâŕíî çŕ ňŕçč îďŕřęŕ č ęŕę ńĺ ńâúđçŕí "
"ďđčíňĺđŕ ?"
-#: ../../printerdrake.pm_.c:468
+#: ../../printerdrake.pm_.c:489
msgid "Name of queue"
msgstr "Čěĺ íŕ îďŕřęŕ"
-#: ../../printerdrake.pm_.c:469
+#: ../../printerdrake.pm_.c:490
msgid "Spool directory"
msgstr "Spool-äčđĺęňîđč˙"
-#: ../../printerdrake.pm_.c:470
+#: ../../printerdrake.pm_.c:491
msgid "Printer Connection"
msgstr "Âđúçęŕ íŕ ďđčíňĺđŕ"
-#: ../../raid.pm_.c:32
+#: ../../raid.pm_.c:33
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Íĺ ěîăŕ äŕ ďđčáŕâ˙ ä˙ë ęúě _ôîđěŕňčđŕí_ RAID md%d"
-#: ../../raid.pm_.c:102
+#: ../../raid.pm_.c:103
msgid "Can't write file $file"
msgstr "Ôŕéëúň $file íĺ ěîćĺ äŕ áúäĺ çŕďčńŕí"
-#: ../../raid.pm_.c:127
+#: ../../raid.pm_.c:128
msgid "mkraid failed"
msgstr "mkraid ďđîďŕäíŕ"
-#: ../../raid.pm_.c:127
+#: ../../raid.pm_.c:128
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid ďđîďŕäíŕ (ěîćĺ áč raidtools ëčďńâŕň ?)"
-#: ../../raid.pm_.c:143
+#: ../../raid.pm_.c:144
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Í˙ěŕ äîńňŕňú÷íî ä˙ëîâĺ çŕ RAID íčâî %d\n"
-#: ../../services.pm_.c:15
+#: ../../services.pm_.c:16
+msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
+msgstr ""
+
+#: ../../services.pm_.c:17
msgid "Anacron a periodic command scheduler."
msgstr "Anacrton - ďĺđčîäč÷íî čçďúëí˙âŕíĺ íŕ ęîěŕíäč ďî đŕçďčńŕíčĺ."
-#: ../../services.pm_.c:16
+#: ../../services.pm_.c:18
msgid ""
"apmd is used for monitoring batery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
@@ -6272,7 +6774,7 @@ msgstr ""
"syslog. Ěîćĺ ńúůî äŕ ńĺ čçďîëçâŕ çŕ ńďčđŕíĺ íŕ ěŕřčíŕňŕ, ęîăŕňî áŕňĺđč˙ňŕ ĺ "
"čçňîůĺíŕ."
-#: ../../services.pm_.c:18
+#: ../../services.pm_.c:20
msgid ""
"Runs commands scheduled by the at command at the time specified when\n"
"at was run, and runs batch commands when the load average is low enough."
@@ -6280,7 +6782,7 @@ msgstr ""
"Ďóńęŕ ęîěŕíäč ďî đŕçďčńŕíčĺ âúâ âđĺěĺ îďđĺäĺëĺíî îň ęîěŕíäŕňŕ at č ďóńęŕ\n"
"íŕáîđ îň äđóăč, ęîăŕňî íŕňîâŕđĺíîńňňŕ ńďŕäíĺ äîńňŕňú÷íî."
-#: ../../services.pm_.c:20
+#: ../../services.pm_.c:22
msgid ""
"cron is a standard UNIX program that runs user-specified programs\n"
"at periodic scheduled times. vixie cron adds a number of features to the "
@@ -6291,7 +6793,7 @@ msgstr ""
"ďî đŕçďčńŕíčĺ. vixie cron äîáŕâ˙ ěíîćĺńňâî ďđĺčěóůĺńňâŕ íŕä ňĺçč íŕ ďđîńňč˙\n"
"UNIX cron, âęëţ÷čňĺëíî ďî-äîáđŕ ńčăóđíîńň č ěîůíč íŕńňđîéâŕůč îďöčč."
-#: ../../services.pm_.c:23
+#: ../../services.pm_.c:25
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
@@ -6302,7 +6804,13 @@ msgstr ""
"Midnight Commander. Ńúůî ňŕęŕ ďîçâîë˙âŕ áŕçčđŕíčňĺ íŕ ěčřęŕ ęîíçîëč\n"
"đĺćč-č-ëĺďč îďĺđŕöčč, č âęëţ÷âŕ ďîääđúćęŕ íŕ čçęŕ÷ŕůč ěĺíţňŕ íŕ ęîçîëŕňŕ."
-#: ../../services.pm_.c:26
+#: ../../services.pm_.c:28
+msgid ""
+"HardDrake runs a hardware probe, and optionally configures\n"
+"new/changed hardware."
+msgstr ""
+
+#: ../../services.pm_.c:30
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files\n"
"and CGI."
@@ -6311,7 +6819,7 @@ msgstr ""
"ôŕéëîâĺ\n"
"č CGI."
-#: ../../services.pm_.c:28
+#: ../../services.pm_.c:32
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
@@ -6325,7 +6833,13 @@ msgstr ""
"telnet, ftp, rsh č rlogin. Čçęëţ÷âŕíĺňî íŕ inetd čçęëţ÷âŕ âńč÷ęč óńëóăč,\n"
"çŕ ęîčňî îňăîâŕđ˙."
-#: ../../services.pm_.c:32
+#: ../../services.pm_.c:36
+msgid ""
+"Launch packet filtering for Linux kernel 2.2 series, to set\n"
+"up a firewall to protect your machine from network attacks."
+msgstr ""
+
+#: ../../services.pm_.c:38
msgid ""
"This package loads the selected keyboard map as set in\n"
"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
@@ -6336,7 +6850,23 @@ msgstr ""
"Ň˙ ěîćĺ äŕ áúäĺ čçáđŕíŕ ń číńňđóěĺíňŕ kbdconfig. Ňđ˙áâŕ äŕ îńňŕâčňĺ "
"ňîâŕâęëţ÷ĺíî çŕ ďîâĺ÷ĺňî ěŕřčíč."
-#: ../../services.pm_.c:35
+#: ../../services.pm_.c:41
+msgid ""
+"Automatic regeneration of kernel header in /boot for\n"
+"/usr/include/linux/{autoconf,version}.h"
+msgstr ""
+
+#: ../../services.pm_.c:43
+msgid "Automatic detection and configuration of hardware at boot."
+msgstr ""
+
+#: ../../services.pm_.c:44
+msgid ""
+"Linuxconf will sometimes arrange to perform various tasks\n"
+"at boot-time to maintain the system configuration."
+msgstr ""
+
+#: ../../services.pm_.c:46
msgid ""
"lpd is the print daemon required for lpr to work properly. It is\n"
"basically a server that arbitrates print jobs to printer(s)."
@@ -6344,7 +6874,13 @@ msgstr ""
"lpd ĺ äĺěîíŕ çŕ ďĺ÷ŕň íĺîáőîäčě íŕ lpr äŕ đŕáîňč íîđěŕëíî. Ňîé ďđîńňî ĺ\n"
"ńúđâúđ, ęîéňî îďđĺäĺë˙ đŕáîňčňĺ çŕ ďĺ÷ŕň íŕ ďđčíňĺđ(ŕ/čňĺ)."
-#: ../../services.pm_.c:37
+#: ../../services.pm_.c:48
+msgid ""
+"Linux Virtual Server, used to build a high-performance and highly\n"
+"available server."
+msgstr ""
+
+#: ../../services.pm_.c:50
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
"host names to IP addresses."
@@ -6352,7 +6888,7 @@ msgstr ""
"named (BIND) ĺ Domain Name Server (DNS), ęîéňî ńĺ čçďîëçâŕ äŕ ďđĺâúđíĺ\n"
"čěĺňî íŕ őîńňŕ äî IP ŕäđĺń."
-#: ../../services.pm_.c:39
+#: ../../services.pm_.c:52
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
@@ -6360,7 +6896,7 @@ msgstr ""
"Ěîíňčđŕ č äĺěîíňčđŕ âń˙ęŕęâč Network File System (NFS), SMB (LAN\n"
"Manager/Windows), č NCP (NetWare)."
-#: ../../services.pm_.c:41
+#: ../../services.pm_.c:54
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
@@ -6368,7 +6904,7 @@ msgstr ""
"Ŕęňčâčđŕ/äĺŕęňčâčđŕ âńč÷ęč ěđĺćîâč číňĺđôĺéńč, íŕńňđîĺíč äŕ ńĺ ďóńęŕň\n"
"ďđč ńňŕđňčđŕíĺ íŕ ěŕřčíŕňŕ."
-#: ../../services.pm_.c:43
+#: ../../services.pm_.c:56
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
"This service provides NFS server functionality, which is configured via the\n"
@@ -6378,7 +6914,7 @@ msgstr ""
"Ňŕçč óńëóăŕ îńčăóđ˙âŕ ôóíęöčîíŕëíîńňňŕ íŕ NFS ńúđâúđŕ, ęîéňî ńĺ íŕńňđîéâŕ\n"
"÷đĺç ôŕéëŕ /etc/exports."
-#: ../../services.pm_.c:46
+#: ../../services.pm_.c:59
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP\n"
"networks. This service provides NFS file locking functionality."
@@ -6386,7 +6922,17 @@ msgstr ""
"NFS ĺ ďîďóë˙đĺí ďđîňîęîë çŕ îáěĺí íŕ ôŕéëîâĺ ďî TCP/IP ěđĺćč.\n"
"Ňŕçč óńëóăŕ îńčăóđ˙âŕ ôóíęöčîíŕëíîńňňŕ íŕ çŕęëţ÷âŕíĺňî íŕ NFS ôŕéëîâĺňĺ."
-#: ../../services.pm_.c:48
+#: ../../services.pm_.c:61
+msgid ""
+"Automatically switch on numlock key locker under console\n"
+"and XFree at boot."
+msgstr ""
+
+#: ../../services.pm_.c:63
+msgid "Support the OKI 4w and compatible winprinters."
+msgstr ""
+
+#: ../../services.pm_.c:64
msgid ""
"PCMCIA support is usually to support things like ethernet and\n"
"modems in laptops. It won't get started unless configured so it is safe to "
@@ -6397,7 +6943,7 @@ msgstr ""
"laptop-č. Ňîâŕ í˙ěŕ äŕ ńĺ ńňŕđňčđŕ ďđĺäč äŕ áúäĺ íŕńňđîĺí, ňŕęŕ ÷ĺ ĺ\n"
"ďî-äîáđĺ äŕ ˙ čěŕňĺ číńňŕëčđŕíŕ íŕ ěŕřčíč, ęîčňî íĺ ńĺ íóćäŕ˙ň îň íĺ˙."
-#: ../../services.pm_.c:51
+#: ../../services.pm_.c:67
msgid ""
"The portmapper manages RPC connections, which are used by\n"
"protocols such as NFS and NIS. The portmap server must be running on "
@@ -6408,7 +6954,7 @@ msgstr ""
"NFS č NIS. portmap ńúđâúđŕ ňđ˙áâŕ äŕ ĺ ďóńíŕň íŕ ěŕřčíč, ęîčňî đŕáîň˙ň ęŕňî\n"
"ńúđâúđ çŕ ďđîňîęîëč, ęîčňî ńĺ íóćäŕ˙ň äŕ čçďîëçâŕň RPC ěĺőŕíčçúě."
-#: ../../services.pm_.c:54
+#: ../../services.pm_.c:70
msgid ""
"Postfix is a Mail Transport Agent, which is the program that\n"
"moves mail from one machine to another."
@@ -6416,7 +6962,7 @@ msgstr ""
"Postfix ĺ Main Transport Agent (MTA), ęîéňî ĺ ďđîăđŕěŕ ęî˙ňî ďđĺíŕń˙\n"
"ďîřŕ îň ěŕřčíŕ íŕ ěŕřčíŕ."
-#: ../../services.pm_.c:56
+#: ../../services.pm_.c:72
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
@@ -6424,7 +6970,13 @@ msgstr ""
"Çŕďŕçâŕ č âúçńňŕíîâ˙ňŕ ďîňîęŕ íŕ ńčńňĺěíŕ ĺíňđîďč˙ çŕ ďî-ăîë˙ěî ęŕ÷ĺńňâî\n"
"íŕ ďđîčçâîëíî ăĺíĺđčđŕíĺ íŕ ÷čńëŕ."
-#: ../../services.pm_.c:58
+#: ../../services.pm_.c:74
+msgid ""
+"Assign raw devices to block devices (such as hard drive\n"
+"partitions), for the use of applications such as Oracle"
+msgstr ""
+
+#: ../../services.pm_.c:76
msgid ""
"The routed daemon allows for automatic IP router table updated via\n"
"the RIP protocol. While RIP is widely used on small networks, more complex\n"
@@ -6434,7 +6986,7 @@ msgstr ""
"RIP ďđîňîęîëŕ. Äîęŕňî RIP ĺ řčđîęî čçďîëçâŕíŕ çŕ ěŕëęč ěđĺćč, çŕ ďî-ńëîćíč\n"
"ďđîňîęîëč çŕ đóňčđŕíĺ ńŕ íóćíč çŕ ńëîćíč ěđĺćč. "
-#: ../../services.pm_.c:61
+#: ../../services.pm_.c:79
msgid ""
"The rstat protocol allows users on a network to retrieve\n"
"performance metrics for any machine on that network."
@@ -6442,7 +6994,7 @@ msgstr ""
"rstat ďđîňîęîëŕ ďîçâîë˙âŕ íŕ ěđĺćîâčňĺ ďîňđĺáčňĺëč äŕ čçâëč÷ŕň\n"
"ďŕđŕěĺňđčňĺ íŕ âúçěîćíîńňčňĺ çŕ âń˙ęŕ ěŕřčíŕ íŕ ěđĺćŕňŕ."
-#: ../../services.pm_.c:63
+#: ../../services.pm_.c:81
msgid ""
"The rusers protocol allows users on a network to identify who is\n"
"logged in on other responding machines."
@@ -6450,7 +7002,7 @@ msgstr ""
"rusers ďđîňîęîëŕ ďîçâîë˙âŕ íŕ ěđĺćîâčňĺ ďîňđĺáčňĺëč äŕ ďđîâĺđ˙âŕň ęîé ĺ\n"
"âë˙çúë íŕ äđóăŕ îňăîâŕđ˙ůŕňŕ ěŕřčíŕ."
-#: ../../services.pm_.c:65
+#: ../../services.pm_.c:83
msgid ""
"The rwho protocol lets remote users get a list of all of the users\n"
"logged into a machine running the rwho daemon (similiar to finger)."
@@ -6459,7 +7011,12 @@ msgstr ""
"íŕ âńč÷ęč ďîňđĺáčňĺëč âëĺçëč íŕ ěŕřčíŕ ń đŕáîňĺů rwho äĺěîí (ďîäîáĺí íŕ "
"finger)."
-#: ../../services.pm_.c:67
+#: ../../services.pm_.c:85
+#, fuzzy
+msgid "Launch the sound system on your machine"
+msgstr "Ďóńíč X-Window ńčńňĺěŕňŕ ďđč ńňŕđňčđŕíĺ"
+
+#: ../../services.pm_.c:86
msgid ""
"Syslog is the facility by which many daemons use to log messages\n"
"to various system log files. It is a good idea to always run syslog."
@@ -6467,19 +7024,44 @@ msgstr ""
"Syslog ĺ ďđîăđŕěŕ ęî˙ňî ěíîăî äĺěîíč čçďîëçâŕň äŕ çŕďŕçâŕň ńúîáůĺíč˙ â\n"
"đŕçëč÷íč ńčńňĺěíč ôŕéëîâĺ (ëîăîâĺ). Äîáđĺ ĺ ďîńňî˙ííî äŕ ˙ čěŕňĺ đŕáîňĺůŕ."
-#: ../../services.pm_.c:69
-msgid "This startup script try to load your modules for your usb mouse."
-msgstr "Ňîçč ńňŕđňîâ ńęđčďň ńĺ îďčňâŕ äŕ çŕđĺäč ěîäóëč usb ěčřęŕňŕ âč."
+#: ../../services.pm_.c:88
+msgid "Load the drivers for your usb devices."
+msgstr ""
-#: ../../services.pm_.c:70
-msgid "Starts and stops the X Font Server at boot time and shutdown."
+#: ../../services.pm_.c:89
+#, fuzzy
+msgid "Starts the X Font Server (this is mandatory for XFree to run)."
msgstr "Ďóńęŕ č ńďčđŕ X Font Server ďđč ďóńęŕíĺ č ńďčđŕíĺ íŕ ěŕřčíŕňŕ."
-#: ../../services.pm_.c:99
+#: ../../services.pm_.c:118
msgid "Choose which services should be automatically started at boot time"
msgstr "Čçáčđŕ óńëóăčňĺ, ęîčňî ňđ˙áâŕ äŕ ńĺ ďóńíŕň ďđč ďóńęŕíĺ íŕ ěŕřčíŕňŕ"
-#: ../../standalone/diskdrake_.c:61
+#: ../../services.pm_.c:137
+msgid "running"
+msgstr "ńňŕđňčđŕíĺ"
+
+#: ../../services.pm_.c:137
+msgid "stopped"
+msgstr "ńďđ˙íŕ"
+
+#: ../../services.pm_.c:151
+msgid "Services and deamons"
+msgstr "Óńëóčăč č äĺěîíč"
+
+#: ../../services.pm_.c:156
+msgid ""
+"No additionnal information\n"
+"about this service, sorry."
+msgstr ""
+"Í˙ěŕ äîďúëíčňĺëíŕ číôîđěŕöč˙\n"
+"çŕ ňŕçč óńëóăŕ, ńúćĺë˙âŕě."
+
+#: ../../services.pm_.c:163
+msgid "On boot"
+msgstr "Ďđč çŕđĺćäŕíĺ"
+
+#: ../../standalone/diskdrake_.c:67
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
@@ -6487,105 +7069,113 @@ msgstr ""
"Íĺ ěîăŕ äŕ đŕç÷ĺňŕ ňŕáëčöŕňŕ íŕ ä˙ëîâĺňĺ, ďđĺęŕëĺíî ĺ ďîâđĺäĺíŕ :(\n"
"Ůĺ ńĺ îďčňŕě äŕ ďđîäúëćŕ äŕ đŕç÷čńňâŕě ëîřčňĺ ä˙ëîâĺ"
-#: ../../standalone/drakboot_.c:25
-msgid "Configure LILO/GRUB"
-msgstr "Íŕńňđîéęŕ íŕ LILO/GRUB"
-
-#: ../../standalone/drakboot_.c:26
-msgid "Create a boot floppy"
-msgstr "Ńúçäŕâŕíĺ íŕ boot-äčńęĺňŕ"
-
-#: ../../standalone/drakboot_.c:28
-msgid "Format floppy"
-msgstr "Ôîđěŕňčđŕé äčńęĺňŕňŕ"
-
-#: ../../standalone/drakboot_.c:40
-msgid "Choice"
-msgstr "Čçáîđ"
-
-#: ../../standalone/drakboot_.c:59
-msgid "Installation of LILO failed. The following error occured:"
-msgstr "Číńňŕëŕöč˙ňŕ íŕ LILO ďđîâŕëĺíŕ. Ďî˙âč ńĺ ńëĺäíŕňŕ ăđĺřęŕ:"
+#: ../../standalone/drakgw_.c:37 ../../standalone/drakgw_.c:180
+msgid "Internet Connection Sharing"
+msgstr "Ńďîäĺë˙íĺ íŕ âđúçęŕňŕ ń Číňĺđíĺň"
-#: ../../standalone/drakgw_.c:103
+#: ../../standalone/drakgw_.c:118
msgid "Internet Connection Sharing currently enabled"
-msgstr "Ńďîäĺë˙íĺňî íŕ âđúçęŕňŕ ń číňĺđíĺň ĺ âĺ÷ĺ ŕęňčâčđŕíî"
+msgstr "Ńďîäĺë˙íĺňî íŕ âđúçęŕňŕ ęúě Číňĺđíĺň ĺ âĺ÷ĺ ŕęňčâčđŕíî"
-#: ../../standalone/drakgw_.c:104
-#, fuzzy
+#: ../../standalone/drakgw_.c:119
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
"\n"
"What would you like to do?"
-msgstr "Íŕńňđîéęŕňŕ íŕ Ńďîäĺë˙íĺňî íŕ âđúçęŕňŕ ń číňĺđíĺň ĺ âĺ÷ĺ çŕâúđřĺíî.\n"
+msgstr ""
+"Óńňŕíîâęŕňŕ íŕ Ńďîäĺë˙íĺňî íŕ Číňĺđíĺň âđúçęŕňŕ ĺ çŕâúđřĺíŕ.\n"
+" ěîěĺíňŕ ĺ âęëţ÷ĺíŕ.\n"
+"\n"
+"Ęŕęâî čńęŕňĺ äŕ íŕďđŕâčňĺ ?"
-#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:108
-#, fuzzy
+#: ../../standalone/drakgw_.c:123
msgid "disable"
-msgstr "Ňŕáëčöŕ"
+msgstr "čçęëţ÷č"
-#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:118
-#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:137
+#: ../../standalone/drakgw_.c:123 ../../standalone/drakgw_.c:148
msgid "dismiss"
-msgstr ""
+msgstr "îńňŕâč"
-#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:126
-#, fuzzy
+#: ../../standalone/drakgw_.c:123 ../../standalone/drakgw_.c:148
msgid "reconfigure"
-msgstr "Íŕńňđîéęŕ íŕ Ő"
+msgstr "ďđĺíŕńňđîéęŕ"
+
+#: ../../standalone/drakgw_.c:126
+msgid "Disabling servers..."
+msgstr "Čçęëţ÷âŕíĺ íŕ ńúđâúđč ..."
+
+#: ../../standalone/drakgw_.c:134
+msgid "Internet connection sharing is now disabled."
+msgstr "Ńďîäĺë˙íĺňî íŕ Číňĺđíĺň âđúçęŕňŕ â ěîěĺíňŕ ĺ čçęëţ÷ĺíî."
-#: ../../standalone/drakgw_.c:122
+#: ../../standalone/drakgw_.c:143
msgid "Internet Connection Sharing currently disabled"
-msgstr "Ńďîäĺë˙íĺňî íŕ âđúçęŕňŕ ń číňĺđíĺň ĺ äĺŕęňčâčđŕíî"
+msgstr "Ńďîäĺë˙íĺňî íŕ Číňĺđíĺň âđúçęŕňŕ ĺ čçęëţ÷ĺíî."
-#: ../../standalone/drakgw_.c:123
-#, fuzzy
+#: ../../standalone/drakgw_.c:144
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
"\n"
"What would you like to do?"
-msgstr "Íŕńňđîéęŕňŕ íŕ Ńďîäĺë˙íĺňî íŕ âđúçęŕňŕ ń číňĺđíĺň ĺ âĺ÷ĺ çŕâúđřĺíî.\n"
+msgstr ""
+"Óńňŕíîâęŕňŕ íŕ Ńďîäĺë˙íĺňî íŕ Číňĺđíĺň âđúçęŕňŕ ĺ âĺ÷ĺ çŕâúđřĺíŕ.\n"
+" ěîěĺíňŕ ĺ čçęëţ÷ĺíŕ.\n"
+"\n"
+"Ęŕęâî čńęŕňĺ äŕ íŕďđŕâčňĺ ?"
-#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:127
-#, fuzzy
+#: ../../standalone/drakgw_.c:148
msgid "enable"
-msgstr "Ňŕáëčöŕ"
+msgstr "âęëţ÷č"
-#: ../../standalone/drakgw_.c:141
+#: ../../standalone/drakgw_.c:155
+msgid "Enabling servers..."
+msgstr "Âęëţ÷âŕíĺ íŕ ńúđâúđč ..."
+
+#: ../../standalone/drakgw_.c:160
+msgid "Internet connection sharing is now enabled."
+msgstr "Ńďîäĺë˙íĺňî íŕ Číňĺđíĺň â ěîěĺíňŕ ĺ âęëţ÷ĺíî."
+
+#: ../../standalone/drakgw_.c:168
msgid "Config file content could not be interpreted."
-msgstr "Ńúäúđćŕíčĺňî íŕ ęîíôčăóđŕöčîííč˙ ôŕéë íĺ ĺ đŕçáčđŕĺěî."
+msgstr "Ńúäúđćŕíčĺňî íŕ íŕńňđîéâŕůč˙ ôŕéë íĺ ěîćĺ äŕ áúäĺ đŕçáđŕíî."
-#: ../../standalone/drakgw_.c:151
-msgid "Internet Connection Sharing"
-msgstr "Ńďîäĺë˙íĺ íŕ âđúçęŕňŕ ń Číňĺđíĺň"
+#: ../../standalone/drakgw_.c:168
+msgid "Unrecognized config file"
+msgstr "Íĺđŕçďîçíŕň íŕńňđîéâŕů ôŕéë"
-#: ../../standalone/drakgw_.c:152
-#, fuzzy
+#: ../../standalone/drakgw_.c:181
msgid ""
-"Your computer can be configured to share its Internet connection.\n"
+"You are about to configure your computer to share its Internet connection.\n"
+"With that feature, other computers on your local network will be able to use "
+"this computer's Internet connection.\n"
"\n"
"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN).\n"
-"\n"
-"Would you like to setup the Internet Connection Sharing?"
+"(LAN)."
msgstr ""
-"Ńĺăŕ, ńëĺä ęŕňî Číňĺđíĺň âđúçęŕňŕ âč ĺ íŕńňđîĺíŕ,\n"
-"ęîěďţňúđúň âč ěîćĺ äŕ áúäĺ íŕńňđîĺí íŕ ďîäĺë˙ Číňĺđíĺň âđúçęŕňŕ ńč.\n"
+"Íŕ ďúň ńňĺ äŕ íŕńňđîčňĺ ęîěďţňúđŕ ńč ňŕęŕ, ÷ĺ äŕ ďîäĺë˙ Číňĺđíĺň âđúçęŕňŕ\n"
+"ńč. Ń ňŕçč âúçěîćíîńň, äđóăč ęîěďţňđč â ëîęŕëíŕňŕ âč ěđĺćŕ ůĺ ěîăŕň äŕ\n"
+"čçďîëçâŕň Číňĺđíĺň âđúçęŕňŕ íŕ ňîçč ęîěďţňúđ.\n"
+"\n"
"Îňáĺëĺćĺňĺ: ňđ˙áâŕ âč îňäĺëĺí çŕ ňîâŕ ěđĺćîâ ŕäŕďňĺđ, çŕ äŕ óńňŕíîâčňĺ "
-"âúňđĺříŕňŕ ńč ěđĺćŕ (LAN).\n"
+"âúňđĺříŕňŕ ńč ěđĺćŕ (LAN)."
-#: ../../standalone/drakgw_.c:177
-#, fuzzy
-msgid "using module"
-msgstr "Đĺćčě íŕ íŕáčđŕíĺ"
+#: ../../standalone/drakgw_.c:207
+#, c-format
+msgid "Interface %s (using module %s)"
+msgstr "Číňĺđôĺéń %s (čçďîëçâŕů ěîäóë %s)"
+
+#: ../../standalone/drakgw_.c:208
+#, c-format
+msgid "Interface %s"
+msgstr "Číňĺđôĺéń %s"
-#: ../../standalone/drakgw_.c:210
+#: ../../standalone/drakgw_.c:216
msgid "No network adapter on your system!"
msgstr "Í˙ěŕňĺ ěđĺćîâ ŕäŕďňĺđ!"
-#: ../../standalone/drakgw_.c:211
+#: ../../standalone/drakgw_.c:217
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -6593,77 +7183,326 @@ msgstr ""
"Â ńčńňĺěŕňŕ íĺ ĺ îňęđčň ethernet ěđĺćîâ ŕäŕďňĺđ. Ěîë˙, ńňŕđňčđŕéňĺ "
"číńňđóěĺíňŕ çŕ íŕńňđîéęŕ íŕ őŕđäóĺđ."
-#: ../../standalone/drakgw_.c:218
+#: ../../standalone/drakgw_.c:224
+#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
"\n"
-"$interface\n"
+"%s\n"
"\n"
-"Would you like to setup your Local Area Network with that adapter?"
+"I am about to setup your Local Area Network with that adapter."
msgstr ""
"Â ńčńňĺěŕňŕ âč čěŕ ńŕěî ĺäčí íŕńňđîĺí ěđĺćîâ ŕäŕďňĺđ:\n"
"\n"
-"$interface\n"
+"%s\n"
"\n"
-"Čńęŕňĺ ëč äŕ íŕńňđîčňĺ âúňđĺříŕňŕ ńč ěđĺćŕ ňîçč ŕäŕďňĺđ ?"
+"Ńě˙ňŕě äŕ óńňŕíîâ˙ ëîęŕëíŕňŕ âč ěđĺćŕ íŕ ňîçč ŕäŕďňĺđ."
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:233
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
"Ěîë˙ čçáĺđĺňĺ ęîé ěđĺćîâ ŕäŕďňĺđ äŕ áúäĺ âęëţ÷ĺí ęúě ëîęŕëíŕňŕ âč ěđĺćŕ."
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:242
msgid ""
-"Warning, the network adapter is already configured.\n"
-"Would you like to reconfigure?"
-msgstr ""
-"Âíčěŕíčĺ, ěđĺćîâč˙ň ŕäŕďňĺđ âĺ÷ĺ ĺ íŕńňđîĺí.\n"
-"Čńęŕňĺ ëč äŕ ăî ďđĺíŕńňđîčňĺ ?"
+"Warning, the network adapter is already configured. I will reconfigure it."
+msgstr "Âíčěŕíčĺ, ěđĺćîâč˙ň ŕäŕďňĺđ âĺ÷ĺ ĺ íŕńňđîĺí. Ůĺ ăî ďđĺíŕńňđî˙."
-#: ../../standalone/drakgw_.c:258
+#: ../../standalone/drakgw_.c:253
msgid "Potential LAN address conflict found in current config of $_!\n"
msgstr "Âúçěîćĺí ęîíôčęň ń ŕäđĺńčňĺ â LAN ń íŕńňđîéęŕňŕ íŕ $_!\n"
-#: ../../standalone/drakgw_.c:268
+#: ../../standalone/drakgw_.c:261 ../../standalone/drakgw_.c:267
msgid "Firewalling configuration detected!"
msgstr "Îňęđčňŕ ĺ íŕńňđîéęŕ íŕ Çŕůčňíŕ Ńňĺíŕ !"
-#: ../../standalone/drakgw_.c:269
+#: ../../standalone/drakgw_.c:262 ../../standalone/drakgw_.c:268
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation. Proceed?"
+"need some manual fix after installation."
msgstr ""
"Âíčěŕíčĺ ! Îňęđčňŕ ĺ íŕńňđîéęŕ íŕ Çŕůčňíŕ Ńňĺíŕ. Ěîćĺ äŕ ńĺ íŕëîćč í˙ęŕęâŕ "
-"đú÷íŕ ďîďđŕâęŕ ńëĺä číńňŕëŕöč˙ňŕ. Íŕňŕňúę ?"
+"đú÷íŕ ďîďđŕâęŕ ńëĺä číńňŕëŕöč˙ňŕ."
+
+#: ../../standalone/drakgw_.c:276
+msgid "Configuring..."
+msgstr "Íŕńňđîéęŕ ..."
-#: ../../standalone/drakgw_.c:282
+#: ../../standalone/drakgw_.c:277
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"Íŕńňđîéâŕůč ńęđčďňîâĺ, číńňŕëčđŕíĺ íŕ ńîôňóĺđ, ńňŕđňčđŕíĺ íŕ ńúđâúđč..."
-#: ../../standalone/drakgw_.c:282
-#, fuzzy
-msgid "Configuring..."
-msgstr "Íŕńňđîéęŕ íŕ IDE"
-
-#: ../../standalone/drakgw_.c:313
-msgid "Problems installing package $bin2rpm{$_}"
-msgstr ""
+#: ../../standalone/drakgw_.c:307
+msgid "Problems installing package $_"
+msgstr "Ďđîáëĺěč ń číńňŕëčđŕíĺňî íŕ ďŕęĺňŕ $_"
-#: ../../standalone/drakgw_.c:504
+#: ../../standalone/drakgw_.c:590
msgid "Congratulations!"
msgstr "Ďîçäđŕâëĺíč˙ !"
-#: ../../standalone/drakgw_.c:505
+#: ../../standalone/drakgw_.c:591
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
+"Âńč÷ęî ĺ íŕńňđîĺíî.\n"
+"Ńĺăŕ ěîćĺňĺ äŕ ńďîäĺëčňĺ Číňĺđíĺň âđúçęŕňŕ ńč ń äđóăč ęîěďţňđč â ëîęŕëíŕňŕ "
+"âč ěđĺćŕ čçďîëçâŕéęč ŕâňîěŕňč÷íŕ ěđĺćîâŕ íŕńňđîéęŕ (DHCP)."
+
+#: ../../standalone/drakgw_.c:608
+msgid "The setup has already been done, but it's currently disabled."
+msgstr "Óńňŕíîâęŕňŕ âĺ÷ĺ ĺ íŕďđŕâĺíŕ, íî â ěîěĺíňŕ ĺ čçęëţ÷ĺíŕ."
+
+#: ../../standalone/drakgw_.c:609
+msgid "The setup has already been done, and it's currently enabled."
+msgstr "Óńňŕíîâęŕňŕ âĺ÷ĺ ĺ íŕďđŕâĺíŕ č â ěîěĺíňŕ ĺ âęëţ÷ĺíŕ."
+
+#: ../../standalone/drakgw_.c:610
+msgid "No Internet Connection Sharing has ever been configured."
+msgstr "Í˙ěŕ íŕńňđîéâŕíî ńďîäĺë˙íĺ íŕ Číňĺđíĺň âđúçęŕňŕ."
+
+#: ../../standalone/drakgw_.c:615
+msgid "Internet connection sharing configuration"
+msgstr "Íŕńňđîéęŕ íŕ ńďîäĺë˙íĺňî íŕ Číňĺđíĺň âđúçęŕňŕ"
+
+#: ../../standalone/drakgw_.c:622
+#, c-format
+msgid ""
+"Welcome to the Internet Connection Sharing utility!\n"
+"\n"
+"%s\n"
+"\n"
+"Click on Configure to launch the setup wizard."
+msgstr ""
+"Äîáđĺ äîřëč â číńňđóěĺíňŕ çŕ ńďîäĺë˙íĺ íŕ Číňĺđíĺň âđúçęŕňŕ !\n"
+"\n"
+"%s\n"
+"\n"
+"Öúęíĺňĺ ``Íŕńňđîé'', ŕęî čńęŕňĺ äŕ ńňŕđňčđŕíĺ óńňŕíîâ˙âŕůč˙ ěŕăüîńíčę."
+
+#: ../../standalone/draknet_.c:59
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Íŕńňđîéęŕ íŕ ěđĺćŕňŕ (%d ŕäŕďňĺđŕ)"
+
+#: ../../standalone/draknet_.c:66 ../../standalone/draknet_.c:537
+msgid "Profile: "
+msgstr "Ďđîôčë: "
+
+#: ../../standalone/draknet_.c:74
+msgid "Del profile..."
+msgstr "Čçňđîé ďđîôčë ..."
+
+#: ../../standalone/draknet_.c:80
+msgid "Profile to delete:"
+msgstr "Ďđîôčë çŕ čçňđčâŕíĺ:"
+
+#: ../../standalone/draknet_.c:108
+msgid "New profile..."
+msgstr "Íîâ ďđîôčë ..."
+
+#: ../../standalone/draknet_.c:114
+msgid "Name of the profile to create:"
+msgstr "Čěĺ íŕ ńúçäŕâŕíč˙ ďđîôčë:"
+
+#: ../../standalone/draknet_.c:140
+msgid "Hostname: "
+msgstr "Čěĺ íŕ őîńň:"
+
+#: ../../standalone/draknet_.c:147
+msgid "Internet access"
+msgstr "Číňĺđíĺň äîńňúď"
+
+#: ../../standalone/draknet_.c:160
+msgid "Type:"
+msgstr "Ňčď: "
+
+#: ../../standalone/draknet_.c:163 ../../standalone/draknet_.c:354
+msgid "Gateway:"
+msgstr "Gateway:"
+
+#: ../../standalone/draknet_.c:163 ../../standalone/draknet_.c:354
+msgid "Interface:"
+msgstr "Číňĺđôĺéń:"
+
+#: ../../standalone/draknet_.c:168
+msgid "Status:"
+msgstr "Ńúńňî˙íčĺ:"
+
+#: ../../standalone/draknet_.c:170 ../../standalone/draknet_.c:357
+#: ../../standalone/net_monitor_.c:122 ../../standalone/net_monitor_.c:224
+msgid "Connected"
+msgstr "Ńâúđçŕí"
+
+#: ../../standalone/draknet_.c:170 ../../standalone/draknet_.c:357
+#: ../../standalone/net_monitor_.c:83 ../../standalone/net_monitor_.c:122
+#: ../../standalone/net_monitor_.c:224
+msgid "Not connected"
+msgstr "Íĺ ńâúđçŕí"
+
+#: ../../standalone/draknet_.c:173 ../../standalone/draknet_.c:358
+msgid "Connect..."
+msgstr "Ńâúđçâŕíĺ..."
+
+#: ../../standalone/draknet_.c:173 ../../standalone/draknet_.c:358
+msgid "Disconnect..."
+msgstr "Îňâúđçâŕíĺ ..."
+
+#: ../../standalone/draknet_.c:191
+#, fuzzy
+msgid "Starting your connection..."
+msgstr "Čçďđîáâŕíĺ íŕ âđúçęŕňŕ..."
+
+#: ../../standalone/draknet_.c:199
+msgid "Closing your connection..."
+msgstr "Çŕňâŕđ˙íĺ íŕ âđúçęŕňŕ âč ..."
+
+#: ../../standalone/draknet_.c:204
+msgid ""
+"The connection is not closed.\n"
+"Try to do it manually by running\n"
+"/etc/sysconfig/network-scripts/net_cnx_down\n"
+"in root."
+msgstr ""
+"Âđúçęŕňŕ íĺ ĺ çŕňâîđĺíŕ.\n"
+"Îďčňŕéňĺ ńĺ äŕ ăî íŕďđŕâčňĺ đú÷íî, ęŕňî ńňŕđňčđŕňĺ\n"
+"/etc/sysconfig/network-scripts/net_cnx_down\n"
+"ęŕňî root."
+
+#: ../../standalone/draknet_.c:207
+msgid "The system is now disconnected."
+msgstr "Ńčńňĺěŕňŕ â ěîěĺíňŕ íĺ ĺ ńâúđçŕíŕ."
+
+#: ../../standalone/draknet_.c:219
+msgid "Configure Internet Access..."
+msgstr "Íŕńňđîéęŕ íŕ Číňĺđíĺň äîńňúďŕ ..."
+
+#: ../../standalone/draknet_.c:226 ../../standalone/draknet_.c:409
+msgid "LAN configuration"
+msgstr "Íŕńňđîéęŕ íŕ LAN"
-#: ../../standalone/draksec_.c:28
+#: ../../standalone/draknet_.c:231
+msgid "Adapter"
+msgstr "Ŕäŕďňĺđ"
+
+#: ../../standalone/draknet_.c:231
+msgid "Driver"
+msgstr "Äđŕéâĺđ"
+
+#: ../../standalone/draknet_.c:231
+msgid "Interface"
+msgstr "Číňĺđôĺéń"
+
+#: ../../standalone/draknet_.c:231
+msgid "Protocol"
+msgstr "Ďđîňîęîë"
+
+#: ../../standalone/draknet_.c:250
+msgid "Configure Local Area Network..."
+msgstr "Íŕńňîéęŕ íŕ ëîęŕëíŕ ěđĺćŕ ..."
+
+#: ../../standalone/draknet_.c:283
+msgid "Normal Mode"
+msgstr "Íîđěŕëĺí đĺćčě"
+
+#: ../../standalone/draknet_.c:288
+msgid "Apply"
+msgstr "Ďđčëîćč"
+
+#: ../../standalone/draknet_.c:307
+msgid "Please Wait... Applying the configuration"
+msgstr "Ěîë˙, ďî÷ŕęŕéňĺ ... Ďđčëŕăŕíĺ íŕ íŕńňđîéęčňĺ"
+
+#: ../../standalone/draknet_.c:389
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/draknet_.c:413
+msgid "LAN Configuration"
+msgstr "Íŕńňđîéęŕ íŕ ëîęŕëíŕ ěđĺćŕ"
+
+#: ../../standalone/draknet_.c:421
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Ŕäŕďňĺđ %s: %s"
+
+#: ../../standalone/draknet_.c:427
+msgid "Boot Protocol"
+msgstr "Ńňŕđňčđŕů ďđîňîęîë"
+
+#: ../../standalone/draknet_.c:428
+msgid "Started on boot"
+msgstr "Ďóńíŕň ďđč ńňŕđňčđŕíĺ"
+
+#: ../../standalone/draknet_.c:429
+msgid "DHCP client"
+msgstr "DHCP ęëčĺíň"
+
+#: ../../standalone/draknet_.c:464 ../../standalone/draknet_.c:468
+msgid "Disable"
+msgstr "Čçęëţ÷č"
+
+#: ../../standalone/draknet_.c:464 ../../standalone/draknet_.c:468
+msgid "Enable"
+msgstr "Âęëţ÷č"
+
+#: ../../standalone/draknet_.c:502
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/draknet_.c:526
+msgid "Internet connection configuration"
+msgstr "Íŕńňđîéęŕ íŕ Číňĺđíĺň âđúçęŕ"
+
+#: ../../standalone/draknet_.c:530
+msgid "Internet Connection Configuration"
+msgstr "Íŕńňđîéęŕ íŕ Číňĺđíĺň âđúçęŕ"
+
+#: ../../standalone/draknet_.c:539
+msgid "Connection type: "
+msgstr "Ňčď íŕ âđúçęŕňŕ: "
+
+#: ../../standalone/draknet_.c:545
+msgid "Parameters"
+msgstr "Ďŕđŕěĺňđč"
+
+#: ../../standalone/draknet_.c:558
+msgid "Provider dns 1 (optional)"
+msgstr "1-âč DNS íŕ äîńňŕâ÷čęŕ (ďî ćĺëŕíčĺ)"
+
+#: ../../standalone/draknet_.c:559
+msgid "Provider dns 2 (optional)"
+msgstr "2-đč DNS íŕ äîńňŕâ÷čęŕ (ďî ćĺëŕíčĺ)"
+
+#: ../../standalone/draknet_.c:572
+msgid "Ethernet Card"
+msgstr "Ethernet ęŕđňŕ"
+
+#: ../../standalone/draknet_.c:573
+msgid "DHCP Client"
+msgstr "DHCP ęëčĺíň"
+
+#: ../../standalone/draksec_.c:21
+msgid "Welcome To Crackers"
+msgstr "Äîáđĺ äîřëč ďđč Cracker-čňĺ"
+
+#: ../../standalone/draksec_.c:22
+msgid "Poor"
+msgstr "Ëîřî"
+
+#: ../../standalone/draksec_.c:26
+msgid "Paranoid"
+msgstr "Ďŕđŕíîč÷íî"
+
+#: ../../standalone/draksec_.c:29
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -6673,7 +7512,7 @@ msgstr ""
"óďîňđĺáŕ, íî ĺ ďî-÷óâńňâčňĺëíî: íĺ ňđ˙áâŕ äŕ áúäĺ čçďîëçâŕíŕ íŕ ěŕřčíč\n"
"ńâúđçŕíč ń äđóăč čëč ďî Číňĺđíĺň. Í˙ěŕ äîńňúď ń ďŕđîëč."
-#: ../../standalone/draksec_.c:31
+#: ../../standalone/draksec_.c:32
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -6681,7 +7520,7 @@ msgstr ""
"Ďŕđîëŕňŕ ńĺăŕ ĺ âęëţ÷ĺíŕ, íî čçďîëçâŕíĺňî ęŕňî ěđĺćîâ ęîěďţňúđ íĺ ĺ "
"ďđĺďîđú÷čňĺëíî."
-#: ../../standalone/draksec_.c:32
+#: ../../standalone/draksec_.c:33
msgid ""
"Few improvements for this security level, the main one is that there are\n"
"more security warnings and checks."
@@ -6689,7 +7528,7 @@ msgstr ""
"Í˙ęîč ďîäîáđĺíč˙ çŕ ňîâŕ íčâî íŕ ńčăóđíîńň. Ăëŕâíîňî ĺ, ÷ĺ čěŕ ďîâĺ÷ĺ\n"
"ďđĺäóďđĺćäĺíč˙ č ďđîâĺđęč çŕ ńčăóđíîńň."
-#: ../../standalone/draksec_.c:34
+#: ../../standalone/draksec_.c:35
msgid ""
"This is the standard security recommended for a computer that will be used\n"
"to connect to the Internet as a client. There are now security checks. "
@@ -6698,7 +7537,7 @@ msgstr ""
"čçďîëçâŕí äŕ ńĺ ńâúđçâŕ ęúě Číňĺđíĺň ęŕňî ęëčĺíň. Čěŕ ďđîâĺđęč íŕ "
"ńčăóđíîńňňŕ. "
-#: ../../standalone/draksec_.c:36
+#: ../../standalone/draksec_.c:37
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -6710,7 +7549,7 @@ msgstr ""
"Ńčăóđíîńňňŕ ńĺăŕ ĺ äîńňŕňú÷íî ăîë˙ěŕ äŕ ńĺ čçďîëçâŕ ńčńňĺěŕňŕ ęŕňî\n"
"ńúđâúđ ďđčĺěŕů âđúçęč îň ěíîăî ęëčĺíňč. "
-#: ../../standalone/draksec_.c:39
+#: ../../standalone/draksec_.c:40
msgid ""
"We take level 4 features, but now the system is entirely closed.\n"
"Security features are at their maximum."
@@ -6718,1440 +7557,1121 @@ msgstr ""
"Čçáčđŕěĺ 4-ňî íčâî, íî ńčńňĺěŕňŕ ĺ íŕďúëíî çŕňâîđĺíŕ.\n"
"Íčâîňî íŕ ńčăóđíîńň ĺ íŕ ěŕęńčěóěŕ ńč."
-#: ../../standalone/draksec_.c:49
+#: ../../standalone/draksec_.c:52
msgid "Setting security level"
msgstr "Čçáĺđĺňĺ íčâî íŕ ńčăóđíîńň"
-#: ../../standalone/drakxconf_.c:21
+#: ../../standalone/drakxconf_.c:44
+msgid "Control Center"
+msgstr "Ęîíňđîëĺí öĺíňúđ"
+
+#: ../../standalone/drakxconf_.c:45
msgid "Choose the tool you want to use"
msgstr "Čçáĺđĺňĺ číńňđóěĺíňŕ, ęîéňî čńęŕňĺ äŕ čçďîëçâŕňĺ"
-#: ../../standalone/keyboarddrake_.c:14
-msgid "usage: keyboarddrake [--expert]\n"
-msgstr ""
+#: ../../standalone/keyboarddrake_.c:16
+msgid "usage: keyboarddrake [--expert] [keyboard]\n"
+msgstr "óďîňđĺáŕ: keyboarddrake [--expert] [keyboard]\n"
-#: ../../standalone/keyboarddrake_.c:27
+#: ../../standalone/keyboarddrake_.c:36
msgid "Do you want the BackSpace to return Delete in console?"
-msgstr ""
+msgstr "Čńęŕňĺ ëč BackSpace äŕ ďîäŕâŕ Delete íŕ ęîíçîëŕňŕ ?"
#: ../../standalone/livedrake_.c:23
-#, fuzzy
msgid "Change Cd-Rom"
-msgstr "Ďđîěĺíĺňĺ đŕçäĺëčňĺëíŕňŕ ńďîńîáíîńň"
+msgstr "Ńě˙íŕ íŕ CD-ROM"
#: ../../standalone/livedrake_.c:24
-#, fuzzy
msgid ""
"Please insert the Installation Cd-Rom in your drive and press Ok when done.\n"
"If you don't have it, press Cancel to avoid live upgrade."
msgstr ""
-"Ńěĺíĺňĺ CD-ROM !\n"
-"\n"
-"Ěîë˙, ńëîćĺňĺ CD-ROM îçŕăëŕâĺí \"%s\" â óńňđîéńňâîňî č íŕňčńíĺňĺ Ok, ęîăŕňî "
+"Ěîë˙, ńëîćĺňĺ Číńňŕëŕöčîííč˙ CD-ROM â óńňđîéńňâîňî č íŕňčńíĺňĺ Ok, ęîăŕňî "
"ńňĺ ăîňîâč.\n"
"Ŕęî ăî í˙ěŕňĺ, íŕňčńíĺňĺ Îňě˙íŕ, çŕ äŕ čçáĺăíĺňĺ číńňŕëčđŕíĺňî îň ňîçč "
"CD-ROM."
#: ../../standalone/livedrake_.c:34
msgid "Unable to start live upgrade !!!\n"
-msgstr ""
+msgstr "Íĺ ěîăŕ äŕ ďóńíŕ îáíîâ˙âŕíĺňî !!!\n"
-#: ../../standalone/mousedrake_.c:32
+#: ../../standalone/mousedrake_.c:39
msgid "no serial_usb found\n"
msgstr "íĺ ĺ íŕěĺđĺí serial_usb\n"
-#: ../../standalone/mousedrake_.c:37
+#: ../../standalone/mousedrake_.c:43
msgid "Emulate third button?"
msgstr "Äŕ ńčěóëčđŕě ëč ňđĺňč áóňîí ?"
-#: ../../standalone/mousedrake_.c:41
-msgid "Which serial port is your mouse connected to?"
-msgstr "Ęúě ęîé ńĺđčĺí ďîđň ĺ ńâúđçŕíŕ ěčřęŕňŕ âč ?"
-
-#: ../../standalone/rpmdrake_.c:25
-msgid "reading configuration"
-msgstr "÷ĺňĺíĺ íŕ íŕńňđîéęčňĺ"
-
-#: ../../standalone/rpmdrake_.c:45 ../../standalone/rpmdrake_.c:50
-#: ../../standalone/rpmdrake_.c:253
-msgid "File"
-msgstr "Ôŕéë"
-
-#: ../../standalone/rpmdrake_.c:48 ../../standalone/rpmdrake_.c:229
-#: ../../standalone/rpmdrake_.c:253 ../../standalone/rpmdrake_.c:269
-msgid "Search"
-msgstr "Ňúđńč"
-
-#: ../../standalone/rpmdrake_.c:49 ../../standalone/rpmdrake_.c:56
-msgid "Package"
-msgstr "Ďŕęĺňŕ"
-
-#: ../../standalone/rpmdrake_.c:51
-msgid "Text"
-msgstr "Ňĺęńň"
-
-#: ../../standalone/rpmdrake_.c:53
-msgid "Tree"
-msgstr "Äúđâî"
-
-#: ../../standalone/rpmdrake_.c:54
-msgid "Sort by"
-msgstr "Ńîđňčđŕé ďî"
-
-#: ../../standalone/rpmdrake_.c:55
-msgid "Category"
-msgstr "Ęŕňĺăîđč˙"
-
-#: ../../standalone/rpmdrake_.c:58
-msgid "See"
-msgstr "Âčć"
+#: ../../standalone/net_monitor_.c:40 ../../standalone/net_monitor_.c:52
+msgid "Network Monitoring"
+msgstr "Íŕáëţäŕâŕíĺ íŕ ěđĺćŕňŕ"
-#: ../../standalone/rpmdrake_.c:59 ../../standalone/rpmdrake_.c:163
-msgid "Installed packages"
-msgstr "Číńňŕëčđŕíč ďŕęĺňč"
+#: ../../standalone/net_monitor_.c:56
+msgid "Statistics"
+msgstr "Ńňŕňčńňčęč"
-#: ../../standalone/rpmdrake_.c:60
-msgid "Available packages"
-msgstr "Íŕëč÷íč ďŕęĺňč"
+#: ../../standalone/net_monitor_.c:59
+msgid "Sending Speed: "
+msgstr "Ńęîđîńň íŕ čçďđŕůŕíĺ: "
-#: ../../standalone/rpmdrake_.c:62
-msgid "Show only leaves"
-msgstr "Ďîęŕćč ńŕěî ëčńňŕňŕ"
+#: ../../standalone/net_monitor_.c:61
+msgid "Receiving Speed: "
+msgstr "Ńęîđîńň íŕ ďđčĺěŕíĺ: "
-#: ../../standalone/rpmdrake_.c:67
-msgid "Expand all"
-msgstr "Đŕçřčđč âńč÷ęî"
+#: ../../standalone/net_monitor_.c:66
+msgid "Close"
+msgstr "Çŕňâîđč"
-#: ../../standalone/rpmdrake_.c:68
-msgid "Collapse all"
-msgstr "Čç÷čńňč âńč÷ęî"
-
-#: ../../standalone/rpmdrake_.c:70
-msgid "Configuration"
-msgstr "Íŕńňđîéęŕ"
-
-#: ../../standalone/rpmdrake_.c:71
-msgid "Add location of packages"
-msgstr "Äîáŕâč ě˙ńňî íŕ ďŕęĺňčňĺ"
-
-#: ../../standalone/rpmdrake_.c:75
-msgid "Update location"
-msgstr "Îáíîâč ě˙ńňîňî"
+#: ../../standalone/net_monitor_.c:100 ../../standalone/net_monitor_.c:104
+msgid "Connecting to Internet "
+msgstr "Ńâúđçâŕíĺ ęúě Číňĺđíĺň "
-#: ../../standalone/rpmdrake_.c:79 ../../standalone/rpmdrake_.c:328
-msgid "Remove"
-msgstr "Ďđĺěŕőíč"
+#: ../../standalone/net_monitor_.c:100 ../../standalone/net_monitor_.c:104
+msgid "Disconnecting from Internet "
+msgstr "Îňâúđçâŕíĺ îň Číňĺđíĺň "
-#: ../../standalone/rpmdrake_.c:100
-msgid "Configuration: Add Location"
-msgstr "Íŕńňđîéęŕ: äîáŕâč ě˙ńňî"
+#: ../../standalone/net_monitor_.c:114
+msgid "Disconnection from Internet failed."
+msgstr "Îňâúđçâŕíĺňî îň Číňĺđíĺň íĺ óńď˙."
-#: ../../standalone/rpmdrake_.c:103
-msgid "Find Package"
-msgstr "Íŕěĺđč ďŕęĺň"
+#: ../../standalone/net_monitor_.c:115
+msgid "Disconnection from Internet complete."
+msgstr "Îňâúđçâŕíĺňî îň Číňĺđíĺň čçâúđřĺíî."
-#: ../../standalone/rpmdrake_.c:104
-msgid "Find Package containing file"
-msgstr "Íŕěĺđč ďŕęĺň ńúäúđćŕů ôŕéë"
+#: ../../standalone/net_monitor_.c:117
+msgid "Connection complete."
+msgstr "Ńâđúçâŕíĺňî čçâúđřĺíî."
-#: ../../standalone/rpmdrake_.c:105
-msgid "Toggle between Installed and Available"
-msgstr "Ďđĺâęëţ÷âŕíĺ ěĺćäó Číńňŕëčđŕí č Íŕëč÷ĺí"
-
-#: ../../standalone/rpmdrake_.c:139
-msgid "Files:\n"
-msgstr "Ôŕéëîâĺ:\n"
+#: ../../standalone/net_monitor_.c:118
+msgid ""
+"Connection failed.\n"
+"Verify your configuration in the Mandrake Control Center."
+msgstr ""
+"Ńâúđçâŕíĺňî íĺ óńď˙.\n"
+"Ďđîâĺđĺňĺ íŕńňđîéęŕňŕ â Mandrake Control Center."
-#: ../../standalone/rpmdrake_.c:161 ../../standalone/rpmdrake_.c:209
-msgid "Uninstall"
-msgstr "Äĺčíńňŕëčđŕíĺ"
+#: ../../standalone/net_monitor_.c:188
+msgid "sent: "
+msgstr "čçďđŕňĺíč: "
-#: ../../standalone/rpmdrake_.c:163
-msgid "Choose package to install"
-msgstr "Čçáĺđĺňĺ ďŕęĺňč çŕ číńňŕëčđŕíĺ"
+#: ../../standalone/net_monitor_.c:191
+msgid "received: "
+msgstr "ďîëó÷ĺíč: "
-#: ../../standalone/rpmdrake_.c:190
-msgid "Checking dependencies"
-msgstr "Ďđîâĺđ˙âŕě çŕâčńčěîńňčňĺ"
+#: ../../standalone/net_monitor_.c:222
+msgid "Connect"
+msgstr "Ńâúđćč"
-#: ../../standalone/rpmdrake_.c:190 ../../standalone/rpmdrake_.c:409
-msgid "Wait"
-msgstr "Ĺäčí ěîěĺíň"
+#: ../../standalone/net_monitor_.c:222
+msgid "Disconnect"
+msgstr "Îňâúđćč"
-#: ../../standalone/rpmdrake_.c:209
-msgid "The following packages are going to be uninstalled"
-msgstr "Ńëĺäíčňĺ ďŕęĺňč ůĺ áúäŕň äĺčíńňŕëčđŕíč"
+#: ../../standalone/tinyfirewall_.c:29
+msgid "Firewalling Configuration"
+msgstr "Íŕńňđîéęŕ íŕ Çŕůčňíŕ Ńňĺíŕ"
-#: ../../standalone/rpmdrake_.c:210
-msgid "Uninstalling the RPMs"
-msgstr "Äĺčíńňŕëčđŕě ďŕęĺňŕ"
+#: ../../standalone/tinyfirewall_.c:42
+msgid "Firewalling configuration"
+msgstr "Íŕńňđîéęŕ íŕ Çŕůčňíŕ Ńňĺíŕ"
-#: ../../standalone/rpmdrake_.c:229 ../../standalone/rpmdrake_.c:269
-msgid "Regexp"
-msgstr "Regexp"
+#: ../../standalone/tinyfirewall_.c:77
+msgid ""
+"Firewalling\n"
+"\n"
+"You already have set up a firewall.\n"
+"Click on Configure to change or remove the firewall"
+msgstr ""
+"Çŕůčňíŕ ńňĺíŕ\n"
+"\n"
+"Âĺ÷ĺ ńňĺ íŕńňđîčëč çŕůčňíŕ ńňĺíŕ.\n"
+"Öúęíĺňĺ Íŕńňđîé, çŕ äŕ óńňŕíîâčňĺ ńňŕíäŕđňíŕ çŕůčňíŕ ńňĺíŕ"
-#: ../../standalone/rpmdrake_.c:229
-msgid "Which package are looking for"
-msgstr "Ęîé ďŕęĺň ňúđń˙ň"
+#: ../../standalone/tinyfirewall_.c:81
+msgid ""
+"Firewalling\n"
+"\n"
+"Click on Configure to set up a standard firewall"
+msgstr ""
+"Çŕůčňíŕ ńňĺíŕ\n"
+"\n"
+"Öúęíĺňĺ Íŕńňđîé, çŕ äŕ óńňŕíîâčňĺ ńňŕíäŕđňíŕ çŕůčňíŕ ńňĺíŕ"
-#: ../../standalone/rpmdrake_.c:238 ../../standalone/rpmdrake_.c:262
-#: ../../standalone/rpmdrake_.c:278
-#, c-format
-msgid "%s not found"
-msgstr "%s íĺ ĺ íŕěĺđĺíî"
+#: ../../tinyfirewall.pm_.c:10
+msgid ""
+"tinyfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Linux Mandrake machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+"Íŕńňđîé÷čę çŕ ěŕëęŕ çŕůčňíŕ ńňĺíŕ\n"
+"\n"
+"Ňîâŕ íŕńňđîéâŕ ďĺđńîíŕëíŕ çŕůčňíŕ ńňĺíŕ çŕ ňŕçč Linux Mandrake ěŕřčíŕ.\n"
+"Çŕ ěîůíî ďîńňâĺňĺíî íŕ çŕůčňŕňŕ đĺřĺíčĺ, ěîëĺ, ďîăëĺäíĺňĺ ńďĺöčŕëčçčđŕíŕňŕ\n"
+"MandrakeSecurity Firewall äčńňđčáóöč˙."
-#: ../../standalone/rpmdrake_.c:238 ../../standalone/rpmdrake_.c:262
-#: ../../standalone/rpmdrake_.c:278
-msgid "No match"
-msgstr "Í˙ěŕ ńúâďŕäĺíč˙"
+#: ../../tinyfirewall.pm_.c:15
+msgid ""
+"We'll now ask you questions about which services you'd like to allow\n"
+"the Internet to connect to. Please think carefully about these\n"
+"questions, as your computer's security is important.\n"
+"\n"
+"Please, if you're not currently using one of these services, firewall\n"
+"it off. You can change this configuration anytime you like by\n"
+"re-running this application!"
+msgstr ""
+"Ńĺăŕ ůĺ âč çŕäŕäĺě âúďđîńč çŕ ňîâŕ, ęúě ęîč óńëóăč áčőňĺ čńęŕëč äŕ\n"
+"ďîçâîëčňĺ íŕ Číňĺđíĺň äŕ ńâúđçâŕ. Ěîë˙, ďîěčńëĺňĺ âíčěŕňĺëíî ďî\n"
+"ňĺçč âúďđîńč, ňúé ęŕňî ńčăóđíîńňňŕ íŕ ęîěďţňúđŕ âč ĺ âŕćíŕ.\n"
+"\n"
+"Ěîë˙, ŕęî â ěîěĺíňŕ íĺ čçďîëçâŕňĺ í˙ęî˙ îň óńëóăčňĺ, çŕůčňĺňĺ ˙.\n"
+"Ěîćĺňĺ äŕ ďđîěĺíčňĺ íŕńňđîéęŕňŕ ďî âń˙ęî âđĺěĺ, ŕęî čńęŕňĺ, ęŕňî\n"
+"ńňŕđňčđŕňĺ îňíîâî ňîâŕ ďđčëîćĺíčĺ !"
-#: ../../standalone/rpmdrake_.c:238 ../../standalone/rpmdrake_.c:262
-#: ../../standalone/rpmdrake_.c:278
-msgid "No more match"
-msgstr "Í˙ěŕ ďîâĺ÷ĺ ńúâďŕäĺíč˙"
+#: ../../tinyfirewall.pm_.c:22
+msgid ""
+"Are you running a web server on this machine that you need the whole\n"
+"Internet to see? If you are running a webserver that only needs to be\n"
+"accessed by this machine, you can safely answer NO here.\n"
+"\n"
+msgstr ""
+"Čçďîëçâŕňĺ ëč Web ńúđâúđ íŕ ňŕçč ěŕřčíŕ, ęîéňî čńęŕňĺ öĺëč˙ň Číňĺđíĺň\n"
+"çŕ âčćäŕ ? Ŕęî čçďîëçâŕňĺ, ęîéňî ňđ˙áâŕ äŕ áúäĺ äîńňúďĺí îň ňŕçč ěŕřčíŕ,\n"
+"ěîćĺňĺ ńďîęîéíî äŕ îňăîâîđčňĺ ń Íĺ ňóę.\n"
+"\n"
-#: ../../standalone/rpmdrake_.c:246
+#: ../../tinyfirewall.pm_.c:27
msgid ""
-"rpmdrake is currently in ``low memory'' mode.\n"
-"I'm going to relaunch rpmdrake to allow searching files"
+"Are you running a name server on this machine? If you didn't set one\n"
+"up to give away IP and zone information to the whole Internet, please\n"
+"answer no.\n"
+"\n"
msgstr ""
-"rpmdrake ĺ â đĺćčě íŕ ``ěŕëęî ďŕěĺň''.\n"
-"Ůĺ ďóńíŕ îňíîâî rpmdrake, çŕ äŕ đŕçđĺřŕ ňúđńĺíĺňî íŕ ôŕéëîâĺ"
+"Čçďîëçâŕňĺ ëč Name ńúđâúđ íŕ ňŕçč ěŕřčíŕ ? Ŕęî íĺ čńęŕňĺ äŕ ďđĺäîńňŕâ˙ňĺ\n"
+"číôîđěŕöč˙ çŕ IP-ňŕ č çîíč íŕ öĺëč˙ Číňĺđíĺň, ěîë˙, îňăîâîđĺňĺ Íĺ.\n"
+"\n"
-#: ../../standalone/rpmdrake_.c:253
-msgid "Which file are you looking for?"
-msgstr "Ęîé ôŕéë ňúđńčňĺ?"
+#: ../../tinyfirewall.pm_.c:32
+msgid ""
+"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
+"is a telnet-replacement that you might use to login. If you're using\n"
+"telnet now, you should definitely switch to ssh. telnet is not\n"
+"encrypted -- so some attackers can steal your password if you use\n"
+"it. ssh is encrypted and doesn't allow for this eavesdropping."
+msgstr ""
+"Čńęŕňĺ ëč äŕ đŕçđĺřčňĺ âőîä˙ůč Secure SHell (SSH) âđúçęč ? Ňîâŕ ĺ\n"
+"çŕěĺńňčňĺë íŕ telnet, ęîéňî ěîćĺňĺ äŕ čçďîëçâŕňĺ çŕ âëčçŕíĺ. Ŕęî â\n"
+"ěîěĺíňŕ čçďîëçâŕňĺ telnet, îďđĺäĺëĺíî ňđ˙áâŕ äŕ ďđĺěčíĺňĺ ęúě SSH.\n"
+"Telnet íĺ ĺ ęđčďňčđŕí -- ňŕęŕ ÷ĺ í˙ęîč ŕňŕęóâŕůč ěîăŕň äŕ îňęđŕäíŕň\n"
+"ďŕđîëŕňŕ âč, ŕęî ăî čçďîëçâŕňĺ. SSH ĺ ęđčďňčđŕí č čçęëţ÷âŕ ňŕęŕâŕ\n"
+"čçäúíęŕ."
-#: ../../standalone/rpmdrake_.c:269
-msgid "What are looking for?"
-msgstr "Ęŕęâî ňúđń˙ň?"
+#: ../../tinyfirewall.pm_.c:37
+msgid ""
+"Do you want to allow incoming telnet connections?\n"
+"This is horribly unsafe, as we explained in the previous screen. We\n"
+"strongly recommend answering No here and using ssh in place of\n"
+"telnet.\n"
+msgstr ""
+"Čńęŕňĺ ëč äŕ ďîçâîëčňĺ âőîä˙ůč telnet âđúçęč ?\n"
+"Ňîâŕ ĺ óćŕńíî íĺńčăóđíî, ęŕęňî îá˙ńíčőěĺ â ďđĺäčříč˙ ĺęđŕí. Ńčëíî\n"
+"âč ďđĺďîđú÷âŕěĺ äŕ îňăîâîđčňĺ Íĺ ňóę č äŕ čçďîëçâŕňĺ SSH âěĺńňî\n"
+"telnet.\n"
-#: ../../standalone/rpmdrake_.c:289
-msgid "Give a name (eg: `extra', `commercial')"
-msgstr "Äŕéňĺ čěĺ (íŕďđ.: `extra', `commercial')"
+#: ../../tinyfirewall.pm_.c:42
+msgid ""
+"Are you running an FTP server here that you need accessible to the\n"
+"Internet? If you are, we strongly recommend that you only use it for\n"
+"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
+"attackers, since FTP also uses no encryption for transferring passwords.\n"
+msgstr ""
+"Čěŕňĺ ëč FTP ńúđâúđ ňóę, ęîéňî ňđ˙áâŕ äŕ ĺ äîńňúďĺí çŕ Číňĺđíĺň ?\n"
+"Ŕęî čěŕňĺ, ńčëíî âč ďđĺďîđú÷âŕěĺ äŕ ăî čçďîëçâŕňĺ çŕ ŕíîíčěíč ňđŕíńôĺđč.\n"
+"Âńč÷ęč ďŕđîëč čçďđŕůŕíč ďî FTP ěîăŕň äŕ áúäŕň îňęđŕäíŕňč îň ŕňŕęóâŕůŕ\n"
+"ëč÷íîńň, ňúé ęŕňî FTP íĺ čçďîëçâŕ ęđčďňîăđŕôč˙ çŕ ďđĺőâúđë˙íĺňî čě.\n"
-#: ../../standalone/rpmdrake_.c:291
-msgid "Directory"
-msgstr "Äčđĺęňîđč˙"
+#: ../../tinyfirewall.pm_.c:47
+msgid ""
+"Are you running a mail server here? If you're sending you \n"
+"messages through pine, mutt or any other text-based mail client,\n"
+"you probably are. Otherwise, you should firewall this off.\n"
+"\n"
+msgstr ""
+"Čěŕňĺ ëč ďîůĺíńęč ńúđâúđ ňóę ? Ŕęî čçďđŕůŕňĺ ńúîáůĺíč˙ňŕ ńč\n"
+"÷đĺç pine, mutt čëč ęŕęúâňî č äŕ ĺ äđóă ňĺęńňîâ ďîůĺíńęč ęëčĺíň,\n"
+"ěîćĺ áč čěŕňĺ.  ďđîňčâĺí ńëó÷ŕé, ňđ˙áâŕ äŕ çŕůčňčňĺ ňîâŕ.\n"
+"\n"
-#: ../../standalone/rpmdrake_.c:294
-msgid "No cdrom available (nothing in /mnt/cdrom)"
-msgstr "Í˙ěŕ CDROM (í˙ěŕ íčůî â /mnt/cdrom)"
+#: ../../tinyfirewall.pm_.c:52
+msgid ""
+"Are you running a POP or IMAP server here? This would\n"
+"be used to host non-web-based mail accounts for people via \n"
+"this machine.\n"
+"\n"
+msgstr ""
+"Čěŕňĺ ëč POP čëč IMAP ńúđâúđ ňóę ? Ňîâŕ ěîćĺ äŕ áúäĺ\n"
+"čçďîëçâŕíî äŕ ďđčţň˙âŕíĺ íŕ íĺ-web-áŕçčđŕíč ďîůĺíńęč ŕęŕóíňč\n"
+"ďđĺç ňŕçč ěŕřčíŕ.\n"
+"\n"
-#: ../../standalone/rpmdrake_.c:298
-msgid "URL of the directory containing the RPMs"
-msgstr "URL íŕ äčđĺęňîđč˙ňŕ ńúäúđćŕůŕ RPM"
+#: ../../tinyfirewall.pm_.c:57
+msgid ""
+"You appear to be running a 2.2 kernel. If your network IP\n"
+"is automatically set by a computer in your home or office \n"
+"(dynamically assigned), we need to allow for this. Is\n"
+"this the case?\n"
+msgstr ""
+"Ń˙ęŕř čçďîëçâŕňĺ 2.2 ˙äđî. Ŕęî ěđĺćîâîňî IP ŕâňîěŕňč÷íî ńĺ\n"
+"îďđĺäĺë˙ îň ęîěďţňúđ ó âŕń čëč â îôčńŕ (äčíŕěč÷íî ďîńňŕâ˙íî),\n"
+"ňđ˙áâŕ äŕ ďîçâîëčě ňîâŕ. Ňŕęúâ ëč ĺ ńëó÷ŕ˙ ?\n"
-#: ../../standalone/rpmdrake_.c:299
+#: ../../tinyfirewall.pm_.c:62
msgid ""
-"For FTP and HTTP, you need to give the location for hdlist\n"
-"It must be relative to the URL above"
+"Is your computer getting time syncronized to another computer?\n"
+"Mostly, this is used by medium-large Unix/Linux organizations\n"
+"to synchronize time for logging and such. If you're not part\n"
+"of a larger office and haven't heard of this, you probably \n"
+"aren't."
msgstr ""
-"Çŕ FTP č HTTP, ůĺ ňđ˙áâŕ äŕ äŕäĺňĺ ě˙ńňî çŕ hdlist\n"
-"Ňî ňđ˙áâŕ äŕ ďđčëč÷ŕ íŕ URL-ňî îňăîđĺ"
+"Âđĺěĺňî íŕ ęîěďţňúđŕ âč ńčíőđîíčçčđŕ ëč ńĺ ń äđóă ęîěďţňúđ ?\n"
+"Ňîâŕ ăëŕâíî ńĺ čçďîëçâŕ â ńđĺäíî-ăîëĺěč Unix/Linux îđăŕíčçŕöčč,\n"
+"çŕ äŕ ńč ńčíőđîíčçčđŕ âđĺěĺňî çŕ çŕďčńâŕíĺ íŕ ńňŕňóńŕ č ňŕęčâŕ đŕáîňč.\n"
+"Ŕęî íĺ ńňĺ ÷ŕńň îň ďî-ăîë˙ě îôčń č íĺ ńňĺ ÷óâŕëč çŕ ňŕęîâŕ íĺůî,\n"
+"ěîćĺ áč íĺ âč ňđ˙áâŕ."
-#: ../../standalone/rpmdrake_.c:302
-msgid "Please submit the following information"
-msgstr "Ěîë˙, čçďđŕňĺňĺ ńëĺäíŕňŕ číôîđěŕöč˙"
+#: ../../tinyfirewall.pm_.c:67
+msgid ""
+"Configuration complete. May we write these changes to disk?\n"
+"\n"
+"\n"
+"\n"
+msgstr ""
+"Íŕńňđîéęŕňŕ çŕâúđřĺíŕ. Äŕ çŕďčřĺě ëč ďđîěĺíčňĺ íŕ äčńęŕ ?\n"
+"\n"
+"\n"
+"\n"
-#: ../../standalone/rpmdrake_.c:304
+#: ../../tinyfirewall.pm_.c:83
#, c-format
-msgid "%s is already in use"
-msgstr "Ĺňčęĺňúň %s ńĺ čçďîëçâŕ âĺ÷ĺ"
-
-#: ../../standalone/rpmdrake_.c:315 ../../standalone/rpmdrake_.c:321
-#: ../../standalone/rpmdrake_.c:329
-msgid "Updating the RPMs base"
-msgstr "Îáíîâ˙âŕíĺ íŕ RPM áŕçŕňŕ"
+msgid "Can't open %s: %s\n"
+msgstr "Íĺ ěîăŕ äŕ îňâîđ˙ %s: %s\n"
-#: ../../standalone/rpmdrake_.c:328
+#: ../../tinyfirewall.pm_.c:85
#, c-format
-msgid "Going to remove entry %s"
-msgstr "Ďđĺěŕőâŕíĺ íŕ çŕďčńŕ %s"
-
-#: ../../standalone/rpmdrake_.c:360
-msgid "Finding leaves"
-msgstr "Íŕěčđŕíĺ íŕ ëčńňŕňŕ"
-
-#: ../../standalone/rpmdrake_.c:360
-msgid "Finding leaves takes some time"
-msgstr "Íŕěčđŕíĺňî íŕ ëčńňŕ îňíĺěŕ ěŕëęî âđĺěĺ"
-
-# ../../share/compssUsers
-msgid "Graphics Manipulation"
-msgstr ""
+msgid "Can't open %s for writing: %s\n"
+msgstr "Íĺ ěîăŕ äŕ îňâîđ˙ %s çŕ çŕďčń: %s\n"
-# ../../share/compssUsers
-msgid "KDE, QT, Gnome, GTK+"
-msgstr ""
-
-# ../../share/compssUsers
-msgid "Personnal Finance"
-msgstr ""
+#: ../../share/compssUsers:999
+msgid "Clients for different protocols including ssh"
+msgstr "Ęëčĺíňč çŕ đŕçëč÷íč ďđîňîęîëč âęëţ÷čňĺëíî SSH"
-# ../../share/compssUsers
-msgid "Python, Perl, libraries, tools"
-msgstr ""
+#: ../../share/compssUsers:999
+msgid "Development"
+msgstr "Đŕçđŕáîňęŕ"
-# ../../share/compssUsers
-msgid "Scientific applications"
-msgstr ""
+#: ../../share/compssUsers:999
+msgid "Workstation"
+msgstr "Đŕáîňíŕ ńňŕíöč˙"
-# ../../share/compssUsers
-msgid "Databases"
-msgstr ""
+#: ../../share/compssUsers:999
+msgid "Firewall/Router"
+msgstr "Ńúđâúđ, Firewall/Đóňĺđ"
-#, fuzzy
-msgid "Internet"
-msgstr "číňĺđĺńĺí"
+#: ../../share/compssUsers:999
+msgid "Personal Information Management"
+msgstr "Îáđŕáîňęŕ íŕ ëč÷íŕ číôîđěŕöč˙"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Multimedia - Graphics"
-msgstr ""
+msgstr "Ěóëňčěĺäč˙ - Ăđŕôčęŕ"
-# ../../share/compssUsers
-msgid "editors, shells, file tools, terminals"
-msgstr ""
+#: ../../share/compssUsers:999
+msgid "Internet"
+msgstr "Číňĺđíĺň"
-#, fuzzy
-msgid "Development applications"
-msgstr "Çŕ đŕçđŕáîňęŕ"
+#: ../../share/compssUsers:999
+msgid "Network Computer (client)"
+msgstr "Ěđĺćîâ ęîěďţňúđ (ęëčĺíň)"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Audio-related tools: mp3 or midi players, mixers, etc"
-msgstr ""
+msgstr "Číńňđóěĺíňč çŕ ŕóäčî: MP3 čëč MIDI ďëĺéúđč, ěčęńĺđč, č ň.í. "
-# ../../share/compssUsers
-msgid "Multimedia"
-msgstr ""
+#: ../../share/compssUsers:999
+msgid "Internet station"
+msgstr "Číňĺđíĺň ńňŕíöč˙"
-#, fuzzy
+#: ../../share/compssUsers:999
msgid "Office"
-msgstr "äîáúđ"
-
-# ../../share/compssUsers
-msgid "Sciences"
-msgstr ""
+msgstr "Îôčń"
-# ../../share/compssUsers
-msgid ""
-"Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and file "
-"transfer tools"
-msgstr ""
+#: ../../share/compssUsers:999
+msgid "Multimedia station"
+msgstr "Ěóňčěĺäčéíŕ ńňŕíöč˙"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid ""
"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
"browse the Web"
msgstr ""
+"Íŕáîđ îň číńňđóěĺíňč çŕ ÷ĺňĺíĺ č čçďđŕůŕíĺ íŕ ďîůŕ č íîâčíč (pine, mutt, "
+"tin..) č çŕ îáčęŕë˙íĺ čç Ěđĺćŕňŕ"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "C and C++ development libraries, programs and include files"
-msgstr ""
+msgstr "Áčáëčîňĺęč çŕ đŕçđŕáîňęŕ íŕ C č C++, ďđîăđŕěč č include ôŕéëîâĺ"
-# ../../share/compssUsers
-msgid "Communication facilities"
+#: ../../share/compssUsers:999
+msgid "Domain Name and Network Information Server"
msgstr ""
-#, fuzzy
-msgid "KDE"
-msgstr "IDE"
-
-# ../../share/compssUsers
-msgid "Personnal Information Management"
-msgstr ""
-
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Programs to manage your finance, such as gnucash"
-msgstr ""
+msgstr "Ďđîăđŕěč çŕ îáđŕáîňęŕ íŕ ôčíŕíńč, ęŕňî gnucash"
-# ../../share/compssUsers
-msgid "Gnome"
+#: ../../share/compssUsers:999
+msgid "PostgreSQL or MySQL database server"
msgstr ""
-#, fuzzy
-msgid "Internet Tools"
-msgstr "Íŕńňđîéęŕ íŕ Číňĺđíĺň"
+#: ../../share/compssUsers:999
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "NFS ńúđâúđ, SMB ńúđâúđ, Proxy ńúđâúđ, SSH ńúđâúđ"
-#, fuzzy
+#: ../../share/compssUsers:999
msgid "Documentation"
-msgstr "Čäĺíňčôčęŕöč˙"
+msgstr "Äîęóěĺíňŕöč˙"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr ""
+msgstr "Icewm, Window Maker, Enlightenment, Fvwm č ň.í."
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Utilities"
-msgstr ""
+msgstr "Číńňđóěĺíňč"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
+msgid "DNS/NIS "
+msgstr "FND/NIS"
+
+#: ../../share/compssUsers:999
+msgid "Graphical Environment"
+msgstr "Ăđŕôč÷íŕ ńđĺäŕ"
+
+#: ../../share/compssUsers:999
msgid "Multimedia - Sound"
-msgstr ""
+msgstr "Ěóňčěĺäč˙ - Çâóę"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Amusement programs: arcade, boards, strategy, etc"
-msgstr ""
+msgstr "Çŕáŕâíč ďđîăđŕěč: ŕđęŕäíč čăđč, čăđč íŕ ěŕńŕ, ńňđŕňĺăčč č ň.í."
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Video players and editors"
-msgstr ""
+msgstr "Âčäĺî ďëĺéúđč č đĺäŕęňîđč"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Console Tools"
-msgstr ""
+msgstr "Ęîíçîëíč číńňđóěĺíňč"
-#, fuzzy
-msgid "Development other"
-msgstr "Çŕ đŕçđŕáîňęŕ"
+#: ../../share/compssUsers:999
+msgid "Sound and video playing/editing programs"
+msgstr "Ďđîăđŕěč çŕ ďóńęŕíĺ/ďîďđŕâ˙íĺ íŕ çâóę č âčäĺî"
-# ../../share/compssUsers
-msgid "Databases clients and servers (mysql and postgresql)"
-msgstr ""
+#: ../../share/compssUsers:999
+msgid "Scientific Workstation"
+msgstr "Íŕó÷íŕ đŕáîňíŕ ńňŕíöč˙"
-# ../../share/compssUsers
-msgid "Sound and video playing/editing programs"
-msgstr ""
+#: ../../share/compssUsers:999
+msgid "Editors, shells, file tools, terminals"
+msgstr "Đĺäŕęňîđč, řĺëîâĺ, ôŕéëîâč číńňđčěĺíňč, ňĺđěčíŕëč"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
-msgstr ""
+msgstr "Ęíčăč č HOTWO-ňŕ çŕ Linux č ńâîáîäíč˙ ńîôňóĺđ"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid ""
"A graphical environment with user-friendly set of applications and desktop "
"tools"
msgstr ""
+"Ăđŕôč÷íŕ ńđĺäŕ ń ďîňđĺáčňĺëńęč íŕáîđ îň ďđčëîćĺíč˙ č desktop číńňđóěĺíňč"
-# ../../share/compssUsers
-msgid "Games"
+#: ../../share/compssUsers:999
+msgid "Postfix mail server, Inn news server"
msgstr ""
-#, fuzzy
-msgid "Development C/C++"
-msgstr "Çŕ đŕçđŕáîňęŕ"
+#: ../../share/compssUsers:999
+msgid "Games"
+msgstr "Čăđč"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Multimedia - Video"
-msgstr ""
+msgstr "Ěóëňčěĺäč˙ - Âčäĺî"
+
+#: ../../share/compssUsers:999
+msgid "Network Computer server"
+msgstr "Ěđĺćîâ ęîěďţňúđ, ńúđâúđ"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Graphics programs such as The Gimp"
-msgstr ""
+msgstr "Ăđŕôč÷íč ďđîăđŕěč ęŕňî The Gimp"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
+msgid "Office Workstation"
+msgstr "Îôčńíŕ đŕáîňíŕ ńňŕíöč˙"
+
+#: ../../share/compssUsers:999
msgid ""
"The K Desktop Environment, the basic graphical environment with a collection "
"of accompanying tools"
msgstr ""
+"The K Desktop Environment, ďđîńňŕ ńđĺäŕ ń ęîëĺęöč˙ îň ďđčäđóćŕâŕůč "
+"číńňđóěĺíňč"
-# ../../share/compssUsers
-msgid "Tools to create and burn CD's"
-msgstr ""
-
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "More Graphical Desktops (Gnome, IceWM)"
-msgstr ""
+msgstr "Îůĺ ăđŕôč÷íč desktop-č (Gnome, IceWM)"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
+msgid "Tools to create and burn CD's"
+msgstr "Číńňđóěĺíňč çŕ ńúçäŕâŕíĺ č îďč÷ŕíĺ íŕ CD-ňŕ"
+
+#: ../../share/compssUsers:999
msgid "Multimedia - CD Burning"
-msgstr ""
+msgstr "Ěóëňčěĺäč˙ - îďč÷ŕíĺ íŕ CD"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Archiving, emulators, monitoring"
-msgstr ""
+msgstr "Ŕđőčâčđŕřč, ĺěóëŕöč˙, íŕáëţäĺíčĺ"
+
+#: ../../share/compssUsers:999
+msgid "Database"
+msgstr "Ńúđâúđ, Áŕçč-äŕííč"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid ""
"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
"gnumeric), pdf viewers, etc"
msgstr ""
+"Îôčń ďđîăđŕěč: word-ďđîöĺńîđč (kword, abiword), ňŕáëčöč (kspread, gnumeric), "
+"ďđĺăëĺä íŕ PDF, č ň.í."
-# ../../share/compssUsers
-msgid "Other Graphical Desktops"
-msgstr ""
+#: ../../share/compssUsers:999
+msgid "Web/FTP"
+msgstr "Ńúđâúđ, Web/FTP"
-# ../../share/compssUsers
-msgid "Tools for your Palm Pilot or your Visor"
-msgstr ""
+#: ../../share/compssUsers:999
+msgid "Server"
+msgstr "Ńúđâúđ"
-# ../../share/compssUsers
-msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
-msgstr ""
+#: ../../share/compssUsers:999
+msgid "Personal Finance"
+msgstr "Ëč÷íč ôčíŕíńč"
-# ../../share/compssUsers
-msgid "Set of tools for mail, news, web, file transfer, and chat"
-msgstr ""
+#: ../../share/compssUsers:999
+msgid "Configuration"
+msgstr "Íŕńňđîéęŕ"
-#~ msgid "Czech"
-#~ msgstr "×ĺřęč"
+#: ../../share/compssUsers:999
+msgid "KDE Workstation"
+msgstr "KDE đŕáîňíŕ ńňŕíöč˙"
-#~ msgid "Slovakian"
-#~ msgstr "Ńëîâŕřęč"
+#: ../../share/compssUsers:999
+msgid "Other Graphical Desktops"
+msgstr "Äđóăč ăđŕôč÷íč desktop-č"
-#~ msgid ""
-#~ "Time (secs) of inactivity after which\n"
-#~ "it hangs up. (leave blank to disable it)"
-#~ msgstr ""
-#~ "Âđĺěĺ (â ńĺę.) íŕ áĺçäĺéńňâčĺ, ńëĺä ęîĺňî\n"
-#~ "äŕ ńďđĺ. (îńňŕâĺňĺ ďđŕçíî çŕ čçęëţ÷âŕíĺ)"
+#: ../../share/compssUsers:999
+msgid "Apache, Pro-ftpd"
+msgstr "Apache č Pro-ftpd"
-#~ msgid "Germany"
-#~ msgstr "Ăĺđěŕíč˙"
+#: ../../share/compssUsers:999
+msgid "Mail/Groupware/News"
+msgstr "Ńúđâúđ, Ďîůŕ/Groupware/Íîâčíč"
-#~ msgid "Germany (1TR6)"
-#~ msgstr "Ăĺđěŕíč˙ (1TR6)"
+#: ../../share/compssUsers:999
+msgid "Gnome Workstation"
+msgstr "Gnome đŕáîňíŕ ńňŕíöč˙"
-#~ msgid "What do you wish to do?"
-#~ msgstr "Ęŕęâî čńęŕňĺ äŕ ďđŕâčňĺ ?"
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Internet gateway"
+msgstr "Číňĺđíĺň äîńňúď"
-#~ msgid "Connect to internet with a normal modem"
-#~ msgstr "Ńâúđćč ńĺ ęúě Číňĺđíĺň čçďîëçâŕéęč îáčęíîâĺí ěîäĺě"
+#: ../../share/compssUsers:999
+msgid "Tools for your Palm Pilot or your Visor"
+msgstr "Číńňđóěĺíňč çŕ âŕřč˙ Palm Pilot čëč Visor-ŕ âč"
-#~ msgid "Connect to internet using ISDN"
-#~ msgstr "Ńâúđćč ńĺ ęúě Číňĺđíĺň čçďîëçâŕéęč ISDN"
+#: ../../share/compssUsers:999
+msgid "Game station"
+msgstr "Čăđŕëíŕ ńňŕíöč˙"
-#~ msgid "Connect to internet using DSL (or ADSL)"
-#~ msgstr "Ńâúđćč ńĺ ęúě Číňĺđíĺň čçďîëçâŕéęč DSL (čëč ADSL)"
+#: ../../share/compssUsers:999
+msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
+msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, č ň.í."
-#~ msgid "Connect to internet using Cable"
-#~ msgstr "Ńâúđćč ńĺ ęúě Číňĺđíĺň čçďîëçâŕéęč ęŕáĺëĺí ěîäĺě"
+#: ../../share/compssUsers:999
+msgid "Tools to ease the configuration of your computer"
+msgstr "Číńňđóěĺíňč çŕ óëĺńí˙âŕíĺ íŕńňđîéęŕňŕ íŕ ęîěďţňúđŕ âč"
-#~ msgid "Reconfigure local network"
-#~ msgstr "Ďđĺíŕńňđîéęŕ ëîęŕëíŕňŕ ěđĺćŕňŕ"
+#: ../../share/compssUsers:999
+msgid "Set of tools for mail, news, web, file transfer, and chat"
+msgstr "Íŕáîđ îň číńňđóěĺíňč çŕ ďîůŕ, íîâčíč, web, ôŕéëîâ ňđŕíńôĺđ, č ÷ŕň"
-#~ msgid ""
-#~ "Your computer can be configured to share its Internet connection.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Ęîěďţňúđúň Âč ěîćĺ äŕ áúäĺ íŕńňđîĺí äŕ ńďîäĺë˙ ń äđóăč Âđúçęŕňŕ ń Číňĺđíĺň.\n"
-#~ "\n"
+#~ msgid "cannot fork: "
+#~ msgstr "íĺ ěîăŕ äŕ ńĺ îňäĺë˙: "
-#~ msgid "Could not install ipchains RPM with urpmi."
-#~ msgstr "Íĺ ěîćĺ äŕ áúäĺ číńňŕëčđŕí ipchains RPM ń urpmi."
+#, fuzzy
+#~ msgid "Lilo/Grub configuration"
+#~ msgstr "Íŕńňđîéęŕ íŕ LAN"
-#~ msgid "Could not install dhcp RPM with urpmi."
-#~ msgstr "Íĺ ěîćĺ äŕ áúäĺ číńňŕëčđŕí dhcp RPM ń urpmi."
+#~ msgid "Selected size %d%s"
+#~ msgstr "Čçáĺđĺňĺ ăîëĺěčíŕ %d%s"
-#~ msgid "Could not install linuxconf RPM with urpmi."
-#~ msgstr "Íĺ ěîćĺ äŕ áúäĺ číńňŕëčđŕí linuxconf RPM ń urpmi."
+#~ msgid "Opening your connection..."
+#~ msgstr "Îňâŕđ˙íĺ íŕ âđúçęŕňŕ âč ..."
-#~ msgid "Could not install bind RPM with urpmi."
-#~ msgstr "Íĺ ěîćĺ äŕ áúäĺ číńňŕëčđŕí bind RPM ń urpmi."
+#~ msgid "Configure..."
+#~ msgstr "Íŕńňđîé ..."
-#~ msgid "Could not install caching-nameserver RPM with urpmi."
-#~ msgstr "Íĺ ěîćĺ äŕ áúäĺ číńňŕëčđŕí caching-nameserver RPM ń urpmi."
+#~ msgid "Standard tools"
+#~ msgstr "Ńňŕíäŕđňíč číńňđóěĺíňč"
-#~ msgid "Everything has been configured.\n"
-#~ msgstr "Âńč÷ęî áĺřĺ íŕńňđîĺíî.\n"
+#~ msgid "This startup script try to load your modules for your usb mouse."
+#~ msgstr "Ňîçč ńňŕđňîâ ńęđčďň ńĺ îďčňâŕ äŕ çŕđĺäč ěîäóëč usb ěčřęŕňŕ âč."
-#~ msgid "Install/Rescue"
-#~ msgstr "Číńňŕëčđŕíĺ/Ńďŕń˙âŕíĺ"
+#~ msgid "Configuration de Lilo/Grub"
+#~ msgstr "Íŕńňđîéęŕ íŕ Lilo/Grub"
-#~ msgid "Rescue"
-#~ msgstr "Ńďŕńč"
+#~ msgid "Boot style configuration"
+#~ msgstr "Íŕńňđîéęŕ íŕ íŕ÷číŕ íŕ ńňŕđňčđŕíĺ"
-#~ msgid "Which partition type do you want?"
-#~ msgstr "Ęŕęúâ ňčď ä˙ë ćĺëŕĺňĺ ?"
+#~ msgid "Automatic dependencies"
+#~ msgstr "Ďđîâĺđ˙âŕě çŕâčńčěîńňčňĺ"
#~ msgid ""
-#~ "Choose \"Install\" if there are no previous versions of GNU/Linux\n"
-#~ "installed, or if you wish to use multiple distributions or versions.\n"
-#~ "\n"
-#~ "Choose \"Rescue\" if you wish to rescue a version of Linux-Mandrake already "
-#~ "installed.\n"
-#~ "\n"
+#~ "Now that your Internet connection is configured,\n"
+#~ "your computer can be configured to share its Internet connection.\n"
+#~ "Note: you need a dedicated Network Adapter to set up a Local Area Network "
+#~ "(LAN).\n"
#~ "\n"
-#~ "Select:\n"
-#~ "\n"
-#~ " - Recommended: If you have never installed GNU/Linux before, choose this.\n"
-#~ "\n"
-#~ " - Customized: If you are familiar enough with GNU/Linux, you may then "
-#~ "choose\n"
-#~ " the primary usage for your machine. See below for details.\n"
-#~ "\n"
-#~ " - Expert: This supposes that you are fluent with GNU/Linux and want to\n"
-#~ " perform a highly customized installation. As for a \"Customized\"\n"
-#~ " installation class, you will be able to select the usage for your "
-#~ "system.\n"
-#~ " But please, please, DO NOT CHOOSE THIS UNLESS YOU KNOW WHAT YOU ARE "
-#~ "DOING!\n"
+#~ "Would you like to setup the Internet Connection Sharing?\n"
#~ msgstr ""
-#~ "Čçáĺđĺňĺ \"Číńňŕëŕöč˙\", ŕęî í˙ěŕ číńňŕëčđŕíč ďđĺäčříč âĺđńčč íŕ GNU/Linux\n"
-#~ "čëč ŕęî čńęŕňĺ äŕ čçďîëçâŕňĺ đŕçëč÷íč äčńňđčáóöčč čëč âĺđńčč.\n"
-#~ "\n"
-#~ "Čçáĺđĺňĺ \"Âúçńňŕíîâ˙âŕíĺ\", ŕęî čńęŕňĺ äŕ âúçńňŕíîâčňĺ ńúůĺĺńňâóâŕůŕ âĺđńč˙ "
-#~ "íŕ Linux-Mandrake.\n"
-#~ "\n"
-#~ "\n"
-#~ "Čçáĺđĺňĺ:\n"
-#~ "\n"
-#~ " - Ďđĺďîđú÷čňĺëíŕ: Ŕęî íĺ ńňĺ číńňŕëčđŕëč GNU/Linux ďđĺäč, čçáĺđĺňĺ ňîâŕ.\n"
-#~ "\n"
-#~ " - Ńďĺöčŕëčçčđŕíŕ: Ŕęî ńňĺ äîńňŕňú÷íî çŕďîçíŕň ń GNU/Linux, ůĺ ěîćĺňĺ äŕ "
-#~ "čçáĺđĺňĺ\n"
-#~ " ăëŕâíîňî ďđĺäíŕçíŕ÷ĺíčĺ íŕ ěŕřčíŕňŕ ńč. Âčćňĺ ďî-äîëó çŕ ďîäđîáíîńňč.\n"
-#~ "\n"
-#~ " - Ĺęńďĺđňíŕ: Ňîâŕ ďđĺäďîëŕăŕ, ÷ĺ ńňĺ íŕ \"ňč\" ń GNU/Linux č čńęŕňĺ äŕ\n"
-#~ " íŕďđŕâčňĺ âčńîęî ńďĺöčŕëčçčđŕíŕ číńňŕëŕöč˙. Ęŕęňî č â "
-#~ "\"Ńďĺöčŕëčçčđŕíč˙\"\n"
-#~ " číńňŕëŕöčîíĺí ęëŕń, ůĺ ěîćĺňĺ äŕ čçáĺđĺňĺ óďîňđĺáŕňŕ íŕ ńčńňĺěŕňŕ ńč.\n"
-#~ " Íî ěîë˙, ěîë˙, ÍĹ ČÇÁČĐŔÉŇĹ ŇÎÂŔ, ÎŃÂĹÍ ŔĘÎ ÍĹ ÇÍŔĹŇĹ ĘŔĘÂÎ ĎĐŔÂČŇĹ!\n"
+#~ "Ńĺăŕ, ńëĺä ęŕňî Číňĺđíĺň âđúçęŕňŕ âč ĺ íŕńňđîĺíŕ,\n"
+#~ "ęîěďţňúđúň âč ěîćĺ äŕ áúäĺ íŕńňđîĺí íŕ ńďîäĺë˙ Číňĺđíĺň âđúçęŕňŕ ńč.\n"
+#~ "Îňáĺëĺćĺňĺ: çŕ ňîâŕ âč ňđ˙áâŕ óńňŕíîâĺí îňäĺëĺí ěđĺćîâ ŕäŕďňĺđ, çŕ äŕ "
+#~ "óńňŕíîâčňĺ âúňđĺříŕňŕ ńč ěđĺćŕ (LAN).\n"
-#~ msgid ""
-#~ "At this point, you may choose what partition(s) to use to install\n"
-#~ "your Linux-Mandrake system if they have been already defined (from a\n"
-#~ "previous install of GNU/Linux or from another partitioning tool). In other\n"
-#~ "cases, hard drive partitions must be defined. This operation consists of\n"
-#~ "logically dividing the computer's hard drive capacity into separate\n"
-#~ "areas for use.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you have to create new partitions, use \"Auto allocate\" to "
-#~ "automatically\n"
-#~ "create partitions for GNU/Linux. You can select the disk for partitioning "
-#~ "by\n"
-#~ "clicking on \"hda\" for the first IDE drive,\n"
-#~ "\"hdb\" for the second or \"sda\" for the first SCSI drive and so on.\n"
-#~ "\n"
-#~ "\n"
-#~ "Two common partition are: the root partition (/), which is the starting\n"
-#~ "point of the filesystem's directory hierarchy, and /boot, which contains\n"
-#~ "all files necessary to start the operating system when the\n"
-#~ "computer is first turned on.\n"
-#~ "\n"
-#~ "\n"
-#~ "Because the effects of this process are usually irreversible, partitioning\n"
-#~ "can be intimidating and stressful to the unexperienced user. DiskDrake\n"
-#~ "simplifies the process so that it must not be. Consult the documentation\n"
-#~ "and take your time before proceeding.\n"
-#~ "\n"
-#~ "\n"
-#~ "You can reach any option using the keyboard: navigate through the "
-#~ "partitions\n"
-#~ "using Tab and Up/Down arrows. When a partition is selected, you can use:\n"
-#~ "\n"
-#~ "- Ctrl-c to create a new partition (when an empty partition is selected)\n"
-#~ "\n"
-#~ "- Ctrl-d to delete a partition\n"
-#~ "\n"
-#~ "- Ctrl-m to set the mount point\n"
-#~ msgstr ""
-#~ "Ńĺăŕ ňđ˙áâŕ äŕ čçáĺđĺňĺ íŕ ęîé/ęîč ä˙ëîâĺ ůĺ číńňŕëčđŕňĺ âŕřŕňŕ\n"
-#~ "Linux-Mandrake ńčńňĺěŕ, ŕęî ńŕ âĺ÷ĺ ńúçäŕäĺíč (îň ďđĺäčříŕ číńňŕëŕöč˙ íŕ\n"
-#~ "GNU/Linux číńňŕëŕöč˙ čëč í˙ęŕęúâ äđóă číńňđóěĺíň çŕ ďîä˙ëáŕ). Â ďđîňčâĺí\n"
-#~ "ńëó÷ŕé, ä˙ëîâĺňĺ íŕ äčńęŕ âč ňđ˙áâŕ äŕ áúäŕň îďđĺäĺëĺíč. Ňŕçč îďĺđŕöč˙ ńĺ\n"
-#~ "ńúńňîč îň ëîăč÷ĺńęî đŕçäĺë˙íĺ íŕ ďđîńňđŕíńňâîňî íŕ őŕđä äčńęŕ íŕ îňäĺëíč\n"
-#~ "îáëŕńňč íŕ óďîňđĺáŕ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ŕęî ňđ˙áâŕ äŕ ńúçäŕâŕňĺ íîâč ä˙ëîâĺ, čçáĺđĺňĺ \"Ŕâňîěŕňč÷íî ńúçäŕâŕíĺ\", çŕ "
-#~ "äŕ\n"
-#~ "íŕďđŕâčňĺ GNU/Linux ä˙ëîâĺ ŕâňîěŕňč÷íî. Ěîćĺ äŕ čçáĺđĺňĺ äčńęŕ çŕ đŕçäĺë˙íĺ\n"
-#~ "ęŕňî öúęíĺňĺ âúđőó \"hda\" çŕ ďúđâč˙ IDE äčńę, \"hdb\" çŕ âňîđč˙ čëč\n"
-#~ "\"sda\" çŕ ďúđâč˙ SCSI č ň.í.\n"
-#~ "\n"
-#~ "\n"
-#~ "Äâŕ îáůč ä˙ëŕ ńŕ: root ä˙ë (/), ęîéňî ĺ íŕ÷ŕëíŕňŕ ňî÷ęŕ íŕ äčđĺęňîđčéíŕňŕ\n"
-#~ "éĺđŕđőč˙ íŕ ôŕéëîâŕňŕ ńčńňĺěŕ č /boot, ęîéňî ńúäúđćŕ âńč÷ęč íĺîáőîäčěč çŕ\n"
-#~ "ńňŕđňčđŕíĺ íŕ îďĺđŕöčîííŕňŕ ńčńňĺěŕ, ęîăŕňî ęîěďţňúđŕ áúäĺ âęëţ÷ĺí.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ňúé ęŕňî ĺôĺęňčňĺ îň ňîçč ďđîöĺń ńŕ íŕďúëíî íĺîáđŕňčěč, ďîä˙ëáŕňŕ ěîćĺ äŕ ĺ\n"
-#~ "ďëŕřĺůŕ č ńňđĺńîâŕ çŕ íĺîďčňĺí ďîňđĺáčňĺë. DiskDrake îďđîńň˙âŕ ďđîöĺńŕ, "
-#~ "ňŕęŕ\n"
-#~ "÷ĺ äŕ íĺ áúäĺ ňŕęúâ. Ęîíńóëňčđŕéňĺ ńĺ ń äîęóěĺíňŕöč˙ňŕ č íĺ áúđçŕéňĺ äŕ\n"
-#~ "äĺéńňâŕňĺ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ěîćĺňĺ äŕ äîńňčăíĺňĺ âń˙ęŕ âúçěîćíîńň ń ęëŕâčŕňóđŕňŕ: äâčćĺňĺ ďđĺç ä˙ëîâĺňĺ\n"
-#~ "čçďîëçâŕéęč Tab č ńňĺëęčňĺ Up/Down. Ęîăŕňî ěŕđęčđŕňĺ ä˙ë, ěîćĺňĺ äŕ "
-#~ "čçďîëçâŕňĺ:\n"
-#~ "\n"
-#~ "- Ctrl-c çŕ äŕ ńúçäŕäĺňĺ íîâ ä˙ë (ęîăŕňî ĺ čçáđŕí ďđŕçĺí)\n"
-#~ "\n"
-#~ "- Ctrl-d çŕ äŕ čçňđčĺňĺ ä˙ë\n"
-#~ "\n"
-#~ "- Ctrl-m çŕ äŕ îďđĺäĺëčňĺ ě˙ńňî çŕ ěîíňčđŕíĺ\n"
+#~ msgid "Configure LILO/GRUB"
+#~ msgstr "Íŕńňđîéęŕ íŕ LILO/GRUB"
-#~ msgid ""
-#~ "Any partitions that have been newly defined must be formatted for\n"
-#~ "use (formatting meaning creating a filesystem). At this time, you may\n"
-#~ "wish to re-format some already existing partitions to erase the data\n"
-#~ "they contain. Note: it is not necessary to re-format pre-existing\n"
-#~ "partitions, particularly if they contain files or data you wish to keep.\n"
-#~ "Typically retained are /home and /usr/local."
-#~ msgstr ""
-#~ "Íîâčňĺ ä˙ëîâĺ ňđ˙áâŕ äŕ áúäŕň ôîđěŕčňđŕíč çŕ äŕ ńŕ čçďîëçâŕĺěč\n"
-#~ "(ôîđěŕňčđŕíĺ îçíŕ÷ŕâŕ ńúçäŕâŕíĺ íŕ ôŕéëîâŕ ńčńňĺěŕ).  ňîçč ěîěĺíň\n"
-#~ "ěîćĺ äŕ ôîđěŕňčđŕňĺ îňíîâî ńňŕđč ä˙ëîâĺ, çŕ äŕ čçňđčĺňĺ ôŕéëîâĺňĺ íŕ ň˙ő.\n"
-#~ "Çŕ âĺ÷ĺ ńúůĺńňâóâŕůčňĺ ä˙ëîâĺ îáŕ÷ĺ ňîâŕ íĺ ĺ çŕäúëćčňĺëíî. Îáčęíîâĺíî íĺ\n"
-#~ "ńĺ ôîđěŕňčđŕň /home č /usr/local."
+#~ msgid "Create a boot floppy"
+#~ msgstr "Ńúçäŕâŕíĺ íŕ boot-äčńęĺňŕ"
-#~ msgid ""
-#~ "The packages selected are now being installed. This operation\n"
-#~ "should take a few minutes unless you have chosen to upgrade an\n"
-#~ "existing system, in that case it can take more time even before\n"
-#~ "upgrade starts."
-#~ msgstr ""
-#~ "Ďŕęĺňčňĺ, ęîčňî ńňĺ ěŕđęčđŕëč, ůĺ áúäŕň číńňŕëčđŕíč ńĺăŕ. Ňŕçč îďĺđŕöč˙\n"
-#~ "ůĺ îňíĺěĺ í˙ęîëęî ěčíóňč, îńâĺí ŕęî íĺ ńňĺ čçáđŕëč äŕ îáíîâčňĺ ńčńňĺěŕňŕ.\n"
-#~ "Ňîăŕâŕ îáíîâ˙âŕíĺňî ěîćĺ äŕ îíňĺěĺ ďîâĺ÷ĺ âđĺěĺ."
+#~ msgid "Format floppy"
+#~ msgstr "Ôîđěŕňčđŕé äčńęĺňŕňŕ"
+
+#~ msgid "Choice"
+#~ msgstr "Čçáîđ"
+
+#~ msgid "horizontal nice looking aurora"
+#~ msgstr "Őîđčçîíňŕëíŕ äîáđĺ-čçăëĺćäŕůŕ aurora"
+
+#~ msgid "vertical traditional aurora"
+#~ msgstr "Îáčęíîâĺíŕ âĺđňčęŕëíŕ aurora"
+
+#~ msgid "gMonitor"
+#~ msgstr "gMonitor"
#~ msgid ""
-#~ "If DrakX failed to find your mouse, or if you want to\n"
-#~ "check what it has done, you will be presented the list of mice\n"
-#~ "above.\n"
-#~ "\n"
+#~ "You can now select some miscellaneous options for your system.\n"
#~ "\n"
-#~ "If you agree with DrakX's settings, just click 'Ok'.\n"
-#~ "Otherwise you may choose the mouse that more closely matches your own\n"
-#~ "from the menu above.\n"
+#~ "* Use hard drive optimizations: this option can improve hard disk "
+#~ "performance but is only for advanced users. Some buggy\n"
+#~ " chipsets can ruin your data, so beware. Note that the kernel has a builtin "
+#~ "blacklist of drives and chipsets, but if\n"
+#~ " you want to avoid bad surprises, leave this option unset.\n"
#~ "\n"
#~ "\n"
-#~ "In case of a serial mouse, you will also have to tell DrakX\n"
-#~ "which serial port it is connected to."
-#~ msgstr ""
-#~ "Ŕęî DrakX íĺ óńďĺĺ äŕ íŕěĺđč ěčřęŕňŕ âč, čëč čńęŕňĺ äŕ\n"
-#~ "ďđîâĺđčňĺ ęŕęâî ĺ íŕďđŕâčë, ďî-ăîđĺ ůĺ âč áúäĺ\n"
-#~ "ďđĺäîńňŕâĺí ńďčńúę îň ěčřęč.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ŕęî ńňĺ ńúăëŕńíč ń íŕńňđîéęčňĺ íŕ DrakX, ďđîńňî íŕňčńíĺňĺ 'Ok'.\n"
-#~ " ďđîňčâĺí ńëó÷ŕé, ěîćĺňĺ äŕ čçáĺđĺňĺ ěčřęŕňŕ îň ńďčńúęŕ, ęî˙ňî íŕé-äîáđĺ\n"
-#~ "ďŕńâŕ ń âŕřŕňŕ ńîáńňâĺíŕ.\n"
+#~ "* Choose security level: you can choose a security level for your system. "
+#~ "Please refer to the manual for complete\n"
+#~ " information. Basically, if you don't know what to choose, keep the default "
+#~ "option.\n"
#~ "\n"
#~ "\n"
-#~ " ńëó÷ŕé ÷ĺ ěčřęŕňŕ âč ĺ ńĺđčéíŕ, ůĺ ňđ˙áâŕ ńúůî ňŕęŕ äŕ ęŕćĺňĺ\n"
-#~ "íŕ DrakX íŕ ęîé ďîđň ĺ ńâúđçŕíŕ ň˙."
-
-#~ msgid ""
-#~ "This section is dedicated to configuring a local area\n"
-#~ "network (LAN) or a modem.\n"
-#~ "\n"
-#~ "Choose \"Local LAN\" and DrakX will\n"
-#~ "try to find an Ethernet adapter on your machine. PCI adapters\n"
-#~ "should be found and initialized automatically.\n"
-#~ "However, if your peripheral is ISA, autodetection will not work,\n"
-#~ "and you will have to choose a driver from the list that will appear then.\n"
+#~ "* Precise RAM if needed: unfortunately, there is no standard method to ask "
+#~ "the BIOS about the amount of RAM present in\n"
+#~ " your computer. As consequence, Linux may fail to detect your amount of RAM "
+#~ "correctly. If this is the case, you can\n"
+#~ " specify the correct amount or RAM here. Please note that a difference of 2 "
+#~ "or 4 MB between detected memory and memory\n"
+#~ " present in your system is normal.\n"
#~ "\n"
#~ "\n"
-#~ "As for SCSI adapters, you can let the driver probe for the adapter\n"
-#~ "in the first time, otherwise you will have to specify the options\n"
-#~ "to the driver that you will have fetched from documentation of your\n"
-#~ "hardware.\n"
+#~ "* Removable media automounting: if you would prefer not to manually mount "
+#~ "removable media (CD-Rom, floppy, Zip, etc.) by\n"
+#~ " typing \"mount\" and \"umount\", select this option.\n"
#~ "\n"
#~ "\n"
-#~ "If you install a Linux-Mandrake system on a machine which is part\n"
-#~ "of an already existing network, the network administrator will\n"
-#~ "have given you all necessary information (IP address, network\n"
-#~ "submask or netmask for short, and hostname). If you're setting\n"
-#~ "up a private network at home for example, you should choose\n"
-#~ "addresses.\n"
+#~ "* Clean \"/tmp\" at each boot: if you want delete all files and directories "
+#~ "stored in \"/tmp\" when you boot your system,\n"
+#~ " select this option.\n"
#~ "\n"
#~ "\n"
-#~ "Choose \"Dialup with modem\" and the Internet connection with\n"
-#~ "a modem will be configured. DrakX will try to find your modem,\n"
-#~ "if it fails you will have to select the right serial port where\n"
-#~ "your modem is connected to."
+#~ "* Enable num lock at startup: if you want NumLock key enabled after booting, "
+#~ "select this option. Please note that you\n"
+#~ " should not enable this option on laptops and that NumLock may or may not "
+#~ "work under X."
#~ msgstr ""
-#~ "Ňŕçč ńĺęöč˙ ĺ ďîńâĺňĺíŕ íŕ íŕńňđîéęŕňŕ íŕ ëîęŕëíŕňŕ ěđĺćŕ\n"
-#~ "(LAN) čëč ěîäĺě.\n"
+#~ "Ńĺăŕ ěîćĺňĺ äŕ čçáĺđĺňĺ í˙ęîč äîďúëíčňĺëíč îďöčč çŕ ńčńňĺěŕňŕ ńč.\n"
#~ "\n"
-#~ "Čçáĺđĺňĺ \"Ëîęŕëíŕ ěđĺćŕ\" č DrakX ůĺ\n"
-#~ "îďčňŕ äŕ íŕěĺđč Ethernet ŕäŕďňĺđŕ íŕ ěŕřčíŕňŕ âč. PCI aäŕďňĺđčňĺ\n"
-#~ "ůĺ áúäŕň îňęđčňč č íŕńňđîĺíč ŕâňîěŕňč÷íî.\n"
-#~ "Îáŕ÷ĺ, ŕęî ďĺđčôĺđč˙ňŕ âč ĺ ISA, ňîâŕ í˙ěŕ äŕ ńňŕíĺ č ůĺ ňđ˙áâŕ\n"
-#~ "äŕ čçáĺđĺňĺ äđŕéâĺđ îň ńďčńúęŕ, ęîéňî ůĺ ńĺ ďî˙âč ńëĺä ňîâŕ.\n"
+#~ "* Čçďîëçâŕíĺ îďňčěčçŕöčč çŕ őŕđä äčńęŕ: ňŕçč îďöč˙ ěîćĺ äŕ ďîäîáđč đŕáîňŕňŕ "
+#~ "íŕ őŕđä äčńęŕ âč, íî ĺ ńŕěî çŕ íŕďđĺäíŕëč\n"
+#~ " ďîňĺđĺáčňĺëč: í˙ęîč íĺäîä˙ëŕíč ÷čďńĺňč ěîăŕň äŕ ńúńčď˙ň äŕííčňĺ âč, ňŕęŕ "
+#~ "÷ĺ âíčěŕâŕéňĺ. Îňáĺëĺćĺňĺ, ÷ĺ ˙äđîňî čěŕ\n"
+#~ " âăđŕäĺí ÷ĺđĺí ńďčńúę îň óńňđîéńňâŕ č ÷čďńĺňč, íî, ŕęî čńęŕňĺ äŕ čçáĺăíĺňĺ "
+#~ "ëîřč čçíĺíŕäč, îńňŕâĺňĺ ňŕçč îďöč˙ čçęëţ÷ĺíŕ.\n"
#~ "\n"
#~ "\n"
-#~ "Çŕ SCSI ŕäŕďňĺđčňĺ, íŕ ďúđâî âđĺěĺ ďđîáâŕéňĺ äŕ ăî çŕńĺ÷ĺňĺ\n"
-#~ "íî, ŕęî ňîâŕ íĺ ńňŕíĺ, čçáĺđĺňĺ ňîçč äđŕéâĺđ, ęîéňî ńňĺ âçĺëč\n"
-#~ "îň äîęóěĺíňŕöč˙ňŕ ďđĺäîńňŕâĺíŕ âč ń ňîçč\n"
-#~ "őŕđäóĺđ.\n"
+#~ "* Čçáĺđĺňĺ íčâî íŕ ńčăóđíîńň: ěîćĺňĺ äŕ čçáĺđĺňĺ íčâî íŕ ńčăóđíîńň çŕ "
+#~ "ńčńňĺěŕňŕ\n"
+#~ " ńč. Ěîë˙, îáúđíĺňĺ ńĺ ęúě đúęîâîäńňâîňî çŕ ďúëíŕ číôîđěŕöč˙. Ďđîńňî, ŕęî\n"
+#~ " íĺ çíŕĺňĺ ęŕęâî äŕ čçáĺđĺňĺ, îńňŕâĺňĺ ňîâŕ ďî ďîäđŕçáčđŕíĺ.\n"
#~ "\n"
#~ "\n"
-#~ "Ŕęî číńňŕëčđŕňĺ Linux-Mandrake ńčńňĺěŕ íŕ ěŕřčíŕ, ęî˙ňî ĺ ÷ŕńň\n"
-#~ "îň âĺ÷ĺ ńúůĺńňâóâŕůŕ ěđĺćŕ, ŕäěčíčńňđŕňîđúň íŕ ěđĺćŕňŕ áč ňđ˙áâŕëî\n"
-#~ "äŕ âč ĺ äŕë íĺîáőîäčěŕňŕ číôîđěŕöč˙ (IP ŕäđĺń č ěđĺćîâŕ Submask čëč\n"
-#~ "Netmask çŕ ďî-ęđŕňęî, č čěĺ íŕ ěŕřčíŕňŕ). Ŕęî ńëŕăŕňĺ ÷ŕńňíŕ ěđĺćŕ\n"
-#~ "âęúůč íŕďđčěĺđ, ůĺ âč ńĺ íŕëîćč äŕ čçáĺđĺňĺ\n"
-#~ "ŕäđĺńč.\n"
+#~ "* Ňî÷íî RAM, ŕęî ĺ íóćíî: çŕ ńúćŕëĺíčĺ, í˙ěŕ ńňŕíäŕđňĺí ěĺňîä, äŕ ńĺ ďîďčňŕ "
+#~ "BIOS çŕ îáĺěŕ íŕ RAM â ęîěďţňúđŕ. Ęŕňî\n"
+#~ " ďîńëĺäńňâčĺ, GNU/Linux ěîćĺ äŕ íĺ óńďĺĺ äŕ çŕńĺ÷ĺ ďđŕâčëíî îáĺěŕ íŕ RAM. "
+#~ "Ŕęî ĺ ňŕęúâ ńëó÷ŕ˙, ňóę ěîćĺňĺ äŕ\n"
+#~ " çŕäŕäĺňĺ ňî÷íč˙ îáĺě íŕ RAM. Ěîë˙, îňáĺëĺćĺňĺ ÷ĺ îň 2 čëč 4 MB ěĺćäó "
+#~ "çŕńĺ÷ĺíŕňŕ č ďđčńúńňâŕůŕňŕ RAM ĺ íîđěŕëíŕ.\n"
#~ "\n"
#~ "\n"
-#~ "Čçáĺđĺňĺ \"Íŕáčđŕíĺ ń ěîäĺě\", çŕ äŕ áúäĺ íŕńňđîĺíŕ âđúçęŕňŕ\n"
-#~ "âč ďî Číňĺđíĺň. DrakX ůĺ îďčňŕ äŕ íŕěĺđč ěîäĺěŕ âč, íî, ŕęî íĺ\n"
-#~ "óńďĺĺ, ůĺ ňđ˙áâŕ âčĺ äŕ čçáĺđĺňĺ ńĺđčéíč˙ ďîđň, ęúě ęîéňî ĺ\n"
-#~ "ńâúđçŕí âŕřč˙ ěîäĺě."
-
-#~ msgid ""
-#~ "GNU/Linux can deal with many types of printer. Each of these\n"
-#~ "types require a different setup. Note however that the print\n"
-#~ "spooler uses 'lp' as the default printer name; so you\n"
-#~ "must have one printer with such a name; but you can give\n"
-#~ "several names, separated by '|' characters, to a printer.\n"
-#~ "So, if you prefer to have a more meaningful name you just have\n"
-#~ "to put it first, eg: \"My Printer|lp\".\n"
-#~ "The printer having \"lp\" in its name(s) will be the default printer.\n"
-#~ "\n"
+#~ "* Ŕâňîěŕňč÷íî ěîíňčđŕíĺ íŕ ďđĺíîńčěč óńňđîéńňâŕ: ŕęî ďđĺäďî÷čňŕňĺ äŕ íĺ "
+#~ "ěîíňčđŕňĺ đú÷íî ďđĺíîńčěč óńňđîéńňâŕ (CD-ROM,\n"
+#~ " ôëîďč, Zip č ň.í.) ďčřĺéęč \"mount\" č \"umount\", čçáĺđĺňĺ ňŕçč îďöč˙.\n"
#~ "\n"
-#~ "If your printer is physically connected to your computer, select\n"
-#~ "\"Local printer\". You will then have to tell which port your\n"
-#~ "printer is connected to, and select the appropriate filter.\n"
#~ "\n"
+#~ "* Ďî÷čńňâŕíĺ íŕ \"/tmp\" ďđč çŕđĺćäŕíĺ: ŕęî čńęŕňĺ äŕ ńĺ čçňđčâŕň âńč÷ęč "
+#~ "ôŕéëîâĺ č äčđĺęňîđčč ńúőđŕí˙âŕíč â \"/tmp\",\n"
+#~ " ęîăŕňî çŕđĺćäŕňĺ ńčńňĺěŕňŕ ńč, čçáĺđĺňĺ ňŕçč îďöč˙.\n"
#~ "\n"
-#~ "If you want to access a printer located on a remote Unix machine,\n"
-#~ "you will have to select \"Remote lpd\". In order to make\n"
-#~ "it work, no username or password is required, but you will need\n"
-#~ "to know the name of the printing queue on this server.\n"
#~ "\n"
-#~ "\n"
-#~ "If you want to access a SMB printer (which means, a printer located\n"
-#~ "on a remote Windows 9x/NT machine), you will have to specify its\n"
-#~ "SMB name (which is not its TCP/IP name), and possibly its IP address,\n"
-#~ "plus the username, workgroup and password required in order to\n"
-#~ "access the printer, and of course the name of the printer. The same goes\n"
-#~ "for a NetWare printer, except that you need no workgroup information."
+#~ "* Âęëţ÷âŕíĺ íŕ NumLock ďđč çŕđĺćäŕíĺ: ŕęî čńęŕňĺ äŕ ńĺ âęëţ÷âŕ NumLock ďđč "
+#~ "ńňŕđňčđŕíĺ, čçáĺđĺňĺ ňŕçč îďöč˙. Ěîë˙, îňáĺëĺćĺňĺ ÷ĺ\n"
+#~ " íĺ ňđ˙áâŕ äŕ âęëţ÷âŕňĺ ňŕçč îďöč˙ ďđč ëŕďňîďč č ÷ĺ ěîćĺ č äŕ íĺ đŕáîňč ďîä "
+#~ "X)."
+
+#~ msgid "Sorry, the mail configuration is not yet implemented. Be patient."
#~ msgstr ""
-#~ "GNU/Linux ěîćĺ äŕ čçďîëçâŕ ěíîăî âčäîâĺ ďđčíňĺđč. Âńĺęč îň ňĺçč\n"
-#~ "âčäîâĺ čçčńęâŕ đŕçëč÷íŕ íŕńňđîéęŕ. Îňáĺëĺćĺňĺ îáŕ÷ĺ, ÷ĺ ďî ďîäđŕçáčđŕíĺ\n"
-#~ "ďîäŕâŕůŕňŕ ďđîăđŕěŕ íŕ ďđčíňĺđŕ čçďîëçâŕ 'lp' ęŕňî čěĺ íŕ ďđčíňĺđŕ; ňŕęŕ ÷ĺ\n"
-#~ "ňđ˙áâŕ äŕ čěŕňĺ ďđčíňĺđ ń ňîâŕ čěĺ; íî âčĺ ěîćĺňĺ äŕ äŕäĺňĺ í˙ęîëęî\n"
-#~ "čěĺíŕ íŕ ďđčíňĺđŕ ńč îňäĺëĺíč ńúń ńčěâîëŕ '|'.\n"
-#~ "Ňŕęŕ ÷ĺ, ŕęî ďđĺäďî÷čňŕňĺ ďî-ńěčńëĺíî čěĺ, ďđîńňî ůĺ ňđ˙áâŕ äŕ\n"
-#~ "ăî ńëîćčňĺ ďúđâî, íŕďđ.: \"My Printer|lp\".\n"
-#~ "Ďđčíňĺđúň, ęîéňî čěŕ \"lp\" â čěĺ(ňî/íŕňŕ) ńč ůĺ áúäĺ ďđčíňĺđŕ ďî "
-#~ "ďîäđŕçáčđŕíĺ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ŕęî ďđčíňĺđúň âč ĺ ôčçč÷ĺńęč ńâúđçŕí ęúě ęîěďţňúđŕ âč, čçáĺđĺňĺ\n"
-#~ "\"Ëîęŕëĺí ďđčíňĺđ\". Ňîăŕâŕ ůĺ ňđ˙áâŕ äŕ óęŕćĺňĺ ďîđňŕ, ęúě ęîéňî\n"
-#~ "ĺ ńâúđçŕí ďđčíňĺđŕ âč, č äŕ ěŕđęčđŕňĺ ďîäőîä˙ůč˙ ôčëňúđ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ŕęî čńęŕňĺ äîńňúď äî ďđčíňĺđ ńâúđçŕí ęúě äđóăŕ Unix ěŕřčíŕ, ůĺ ňđ˙áâŕ\n"
-#~ "äŕ čçáĺđĺňĺ \"Îňäŕëĺ÷ĺíî lpd\". Çŕ äŕ ăî íŕęŕđŕňĺ äŕ đŕáîňč, í˙ěŕ\n"
-#~ "äŕ ńĺ íóćäŕĺňĺ îň čěĺ č ďŕđoëŕ, íî ůĺ ňđ˙áâŕ äŕ çíŕĺňĺ čěĺňî íŕ\n"
-#~ "îďŕřęŕňŕ çŕ ďĺ÷ŕňŕíĺ íŕ ňîçč ńúđâúđ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ŕęî čńęŕňĺ äîńňúď äî SMB ďđčíňĺđ (ęîĺňî çíŕ÷č ďđčíňĺđ íŕěčđŕů ńĺ íŕ\n"
-#~ "îňäŕëĺ÷ĺíŕ Windows 9x/NT ěŕřčíŕ), ůĺ ňđ˙áâŕ äŕ çíŕĺňĺ íĺăîâîňî\n"
-#~ "SMB čěĺ (íĺ TCP/IP čěĺňî), č ĺâĺíňóŕëíî IP ŕäđĺńŕ ďëţń ďîňđĺáčňĺëńęî\n"
-#~ "čěĺ, đŕáîňíŕ ăđóďŕ č ďŕđîëŕ íĺîáőîäčěč çŕ äîńňúďŕ äî íĺăî, ęŕęňî č,\n"
-#~ ", đŕçáčđŕ ńĺ, čěĺňî íŕ ďđčíňĺđŕ. Ńúůîňî ńĺ îňíŕń˙ č çŕ NetWare ďđčíňĺđ,\n"
-#~ "îáŕ÷ĺ áĺç äŕ čěŕňĺ íóćäŕ îň čěĺ íŕ đŕáîňíŕ ăđóďŕ."
+#~ "Ńúćĺë˙âŕě, íŕńňđîéęŕňŕ íŕ ďîůŕňŕ îůĺ íĺ ĺ âúâĺäĺíŕ. Áúäĺňĺ ňúđďĺëčâč."
#~ msgid ""
-#~ "It is strongly recommended that you answer \"Yes\" here. If you install\n"
-#~ "Microsoft Windows at a later date it will overwrite the boot sector.\n"
-#~ "Unless you have made a bootdisk as suggested, you will not be able to\n"
-#~ "boot into GNU/Linux any more."
+#~ "Welcome to The Network Configuration Wizard.\n"
+#~ "Which components do you want to configure?\n"
#~ msgstr ""
-#~ "Ăîđĺůî âč ďđĺďîđú÷âŕěĺ äŕ îňăîâîđčňĺ ń \"Äŕ\" ňóę. Ŕęî číńňŕëčđŕňĺ\n"
-#~ "Microsoft Windows ďî-ęúńíî, ňîé ůĺ ďđĺçŕďčřĺ boot-ńĺęňîđŕ.\n"
-#~ "Ŕęî íĺ ńúçäŕäĺňĺ ńďŕńčňĺëíŕ äčńęĺňŕ ęŕęňî ĺ ďđĺďîđú÷ŕíî, ďîâĺ÷ĺ í˙ěŕ\n"
-#~ "äŕ ěîćĺňĺ äŕ ńňŕđňčđŕňĺ ńčńňĺěŕňŕ â GNU/Linux."
-
-#~ msgid "Move your wheel!"
-#~ msgstr "Ďđĺěĺńňĺňĺ ňîď÷ĺňî !"
+#~ "Äîáđĺ äîřëč â Ěŕăüîńíčęŕ çŕ ěđĺćîâŕ íŕńňđîéęŕ.\n"
+#~ "Ęîč ęîěďîíĺíňč čńęŕňĺ äŕ íŕńňđîčňĺ ?\n"
-#~ msgid "Forget the changes?"
-#~ msgstr "Äŕ çŕáđŕâ˙ ëč ďđîěĺíčňĺ?"
+#~ msgid "Internet/Network access"
+#~ msgstr "Číňĺđíĺň/Ěđĺćîâ äîńňúď"
-#~ msgid "Cable connection"
-#~ msgstr "Ęŕáĺëíŕ âđúçęŕ"
+#~ msgid "Mail information"
+#~ msgstr "Ďîůĺíńęŕ číôîđěŕöč˙ňŕ"
-#~ msgid "Host name:"
-#~ msgstr "Čěĺ íŕ őîńň:"
+#~ msgid "Miscellaneous"
+#~ msgstr "Äîďúëíčňĺëíč"
-#~ msgid "What is the type of your mouse?"
-#~ msgstr "Ęŕęúâ ňčď ěčřęŕňŕ čěŕňĺ ?"
+#~ msgid "Miscellaneous questions"
+#~ msgstr "Äîďúëíčňĺëíč âúďđîńč"
-#~ msgid "Automatic resolutions"
-#~ msgstr "Ŕâňîěŕňč÷íč ńňîéíîńňč íŕ đŕçäĺëčňĺëíŕ ńďîńîáíîńň"
+#~ msgid "Can't use supermount in high security level"
+#~ msgstr "Íĺ ěîćĺ äŕ čçďîëçâŕňĺ supermount ďđč âčńîęî íčâî íŕ ńčăóđíîńň"
#~ msgid ""
-#~ "To find the available resolutions I will try different ones.\n"
-#~ "Your screen will blink...\n"
-#~ "You can switch if off if you want, you'll hear a beep when it's over"
+#~ "beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
+#~ "If you want to be root, you have to login as a user and then use \"su\".\n"
+#~ "More generally, do not expect to use your machine for anything but as a "
+#~ "server.\n"
+#~ "You have been warned."
#~ msgstr ""
-#~ "Çŕ äŕ íŕěĺđ˙ đŕçäĺëčňĺëíčňĺ ńďîńîáíîńňč íŕ ěîíčňîđŕ Âč, ůĺ îďčňŕě ń í˙ęîëęî "
-#~ "đŕçëč÷íč.\n"
-#~ "Ĺęđŕíúň Âč ůĺ ńĺ čç÷čńňč...\n"
-#~ "Ěîćĺňĺ äŕ ăî čçęëţ÷čňĺ, ŕęî čńęŕňĺ, ęîăŕňî ĺ ăîňîâî ůĺ ÷óĺňĺ ŕëŕđěŕňŕ"
+#~ "âíčěŕíčĺ: Â ŇÎÂŔ ÍČÂÎ ÍŔ ŃČĂÓĐÍÎŃŇ, ROOT ÂËČÇŔÍĹŇÎ ÍŔ ĘÎÍÇÎËŔŇŔ ÍĹ Ĺ "
+#~ "ĎÎÇÂÎËĹÍÎ !\n"
+#~ "Ŕęî čńęŕňĺ äŕ ńňĺ root, ňđ˙áâŕ äŕ âëĺçĺňĺ ęŕňî ďîňđĺáčňĺë č ňîăŕâŕ äŕ "
+#~ "čçďîëçâŕňĺ \"su\".\n"
+#~ "Ęŕňî ö˙ëî, íĺ î÷ŕęâŕéňĺ äŕ čçďîëçâŕňĺ ěŕřčíŕňŕ ńč çŕ íĺůî äđóăî, îńâĺí çŕ "
+#~ "ńúđâúđ.Á˙őňĺ ďđĺäóďđĺäĺí."
#~ msgid ""
-#~ "I can try to find the available resolutions (eg: 800x600).\n"
-#~ "Sometimes, though, it may hang the machine.\n"
-#~ "Do you want to try?"
+#~ "Be carefull, having numlock enabled causes a lot of keystrokes to\n"
+#~ "give digits instead of normal letters (eg: pressing `p' gives `6')"
#~ msgstr ""
-#~ "Ěîăŕ äŕ îďčňŕě äŕ íŕěĺđ˙ őŕđŕęňĺđíčňĺ çŕ ěîíčňîđŕ Âč đŕçäĺëčňĺëíč "
-#~ "ńďîńîáíîńňč (íŕďđčěĺđ: 800x600).\n"
-#~ "Ďîí˙ęîăŕ, îáŕ÷ĺ, ňîâŕ ěîćĺ äŕ çŕáčĺ ěŕřčíŕňŕ.\n"
-#~ "Čńęŕňĺ ëč äŕ îďčňŕňĺ?"
-
-#~ msgid ""
-#~ "No valid modes found\n"
-#~ "Try with another video card or monitor"
-#~ msgstr ""
-#~ "Íĺ ńŕ îňęđčňĺ âŕëčäíč đĺćčěč\n"
-#~ "Îďčňŕéňĺ ń äđóăŕ âčäĺî ęŕđňŕ čëč ěîíčňîđ"
-
-#~ msgid "Automatical resolutions search"
-#~ msgstr "Ŕâňîěŕňč÷íî ňúđńĺíĺ íŕ đŕçäĺëčňĺëíŕňŕ ńďîńîáíîńň"
-
-#~ msgid "dhcpd"
-#~ msgstr "DHCPD"
-
-#~ msgid "pump"
-#~ msgstr "PUMP"
+#~ "Âíčěŕíčĺ, ŕęî ĺ âęëţ÷ĺí numlock ěîćĺ äŕ äîâĺäĺ äî čçâĺćäŕíĺňî íŕ\n"
+#~ "÷čńëŕ âěĺńňî áóęâč (íŕďđčěĺđ: íŕňčńęŕéęč 'p' äŕâŕ '6')"
-#~ msgid "dhcpxd"
-#~ msgstr "DHCPXD"
+#~ msgid "not connected"
+#~ msgstr "íĺ ńâúđçŕí"
-#~ msgid "dhcp-client"
-#~ msgstr "DHCP-Client"
+#~ msgid "Scientific applications"
+#~ msgstr "Íŕó÷íč ďđčëîćĺíč˙"
-#~ msgid "Apple ADB Mouse"
-#~ msgstr "Apple ADB ěčřęŕ"
+#~ msgid "File/Print/Samba"
+#~ msgstr "Ńúđâúđ, Ôŕéëîâ/Ďđčíňĺđĺí/Samba"
-#~ msgid "Apple ADB Mouse (2 Buttons)"
-#~ msgstr "Apple ADB ěčřęŕ (2 áóňîíŕ)"
+#~ msgid "DNS/DHCP "
+#~ msgstr "Ńúđâúđ, DNS/DHCP "
-#~ msgid "Apple ADB Mouse (3+ Buttons)"
-#~ msgstr "Apple ADB ěčřęŕ (3+ áóňîíŕ)"
+#~ msgid "First DNS Server"
+#~ msgstr "Ďúđâč DNS ńúđâúđ"
-#~ msgid "Apple USB Mouse"
-#~ msgstr "Apple USB ěčřęŕ"
+#~ msgid "Second DNS Server"
+#~ msgstr "Âňîđč DNS ńúđâúđ"
-#~ msgid "Apple USB Mouse (2 Buttons)"
-#~ msgstr "Apple USB ěčřęŕ (2 áóňîíŕ)"
+#~ msgid "using module"
+#~ msgstr "čçďîëçâŕíĺ íŕ ěîäóë"
-#~ msgid "Apple USB Mouse (3+ Buttons)"
-#~ msgstr "Apple USB ěčřęŕ (3+ áóňîíŕ)"
+#~ msgid "Development, Database"
+#~ msgstr "Đŕçđŕáîňęŕ, Áŕçč-äŕííč"
-#~ msgid "eneric Mouse"
-#~ msgstr "Îáčęíîâĺííŕ ěčřęŕ"
+#~ msgid "Development, Integrated Environment"
+#~ msgstr "Đŕçđŕáîňęŕ, Číňĺăđčđŕíŕ ńđĺäŕ"
-#~ msgid "ASCII MieMouse"
-#~ msgstr "ASCII MieMouse"
+#~ msgid "Development, Standard tools"
+#~ msgstr "Đŕçđŕáîňęŕ, Ńňŕíäŕđňíč číńňđóěĺíňč"
-#~ msgid "Genius NetMouse Pro"
-#~ msgstr "Genius NetMouse Pro"
-
-#~ msgid "ATI Bus Mouse"
-#~ msgstr "ATI Bus ěčřęŕ"
-
-#~ msgid "Microsoft Bus Mouse"
-#~ msgstr "Microsoft Bus ěčřęŕ"
+#~ msgid ""
+#~ "\n"
+#~ "Warning:\n"
+#~ "Applying the changes while running may crash your X environnement."
+#~ msgstr ""
+#~ "\n"
+#~ "Âíčěŕíčĺ:\n"
+#~ "Ďđčëŕăŕéęč íŕ ďđîěĺíčĺ ďî âđĺěĺ íŕ đŕáîňŕ ěîćĺ äŕ ńúńčďĺ X ńđĺäŕňŕ âč."
-#~ msgid "Logitech Bus Mouse"
-#~ msgstr "Logitech Bus ěčřęŕ"
+#~ msgid ""
+#~ "\n"
+#~ "If you continue, I will shut down your %s environnement"
+#~ msgstr ""
+#~ "\n"
+#~ "Ŕęî ďđîäúëćčňĺ, ůĺ ńďđŕ %s ńđĺäŕňŕ âč"
-#~ msgid "USB Mouse"
-#~ msgstr "USB ěčřęŕ"
+#~ msgid "eth$_"
+#~ msgstr "eth$_"
-#~ msgid "USB Mouse (3 buttons or more)"
-#~ msgstr "USB ěčřęŕ (3+ áóňîíŕ)"
+#~ msgid "loopback"
+#~ msgstr "loopback"
-#~ msgid "Microsoft Rev 2.1A or higher (serial)"
-#~ msgstr "Microsoft Rev 2.1A čëč ďî-íîâŕ (ńĺđčéíŕ)"
+#~ msgid "None"
+#~ msgstr "Íčęŕęúâ"
-#~ msgid "Logitech MouseMan+/FirstMouse+ (serial)"
-#~ msgstr "Logitech MouseMan+/FirstMouse+ (ńĺđčéíŕ)"
+#~ msgid "Which bootloader(s) do you want to use?"
+#~ msgstr "Ęŕęâŕ ďđîăđŕěŕ çŕ íŕ÷ŕëíî çŕđĺćäŕíĺ čńęŕňĺ äŕ čçďîëçâŕňĺ?"
-#~ msgid "ASCII MieMouse (serial)"
-#~ msgstr "ASCII MieMouse (ńĺđčéíŕ)"
+#~ msgid "Auto install floppy"
+#~ msgstr "Ŕâňîěŕňč÷íî číńňŕëčđŕíĺ îň ôëîďč"
-#~ msgid "Genius NetMouse (serial)"
-#~ msgstr "Genius NetMouse (ńĺđčéíŕ)"
+#~ msgid "Try to find a modem?"
+#~ msgstr "Äŕ ńĺ îďčňŕě ëč äŕ îňęđč˙ ěîäĺě ?"
-#~ msgid "Generic Mouse (serial)"
-#~ msgstr "Îáčęíîâĺííŕ ěčřęŕ (ńĺđčéíŕ)"
+#~ msgid "Disable Internet Connection"
+#~ msgstr "Čçęëţ÷âŕíĺ íŕ Číňĺđíĺň âđúçęŕ"
-#~ msgid "Microsoft compatible (serial)"
-#~ msgstr "Microsoft-ńúâěĺńňěŕ (ńĺđčéíŕ)"
+#~ msgid "Configure local network"
+#~ msgstr "Íŕńňîéęŕ íŕ ëîęŕëíŕňŕ ěđĺćŕ"
-#~ msgid "Generic 3 Button Mouse (serial)"
-#~ msgstr "Îáčęíîâĺííŕ 3-áóňîííŕ ěčřęŕ (ńĺđčéíŕ)"
+#~ msgid "Disable networking"
+#~ msgstr "Čçęëţ÷âŕíĺ íŕ ěđĺćŕňŕ"
-#~ msgid "Kensington Thinking Mouse (serial)"
-#~ msgstr "Kensington THinking Mouse (serial)"
+#~ msgid "Configure the Internet connection / Configure local Network"
+#~ msgstr "Íŕńňđîéęŕ íŕ Číňĺđíĺň âđúçęŕňŕ / Íŕńňđîéęŕ íŕ ëîęŕëíŕňŕ ěđĺćŕ"
#~ msgid ""
-#~ "I need to configure your network adapter to be able to connect to internet."
+#~ "Local networking has already been configured.\n"
+#~ "Do you want to:"
#~ msgstr ""
-#~ "Ňđ˙áâŕ äŕ íŕńňđî˙ ěđĺćîâč˙ âč ŕäŕďňĺđ, çŕ äŕ ńĺ ńâúđćŕ ęúě Číňĺđíĺň."
+#~ "Ëîęŕëíŕňŕ ěđĺćŕ âĺ÷ĺ ĺ íŕńňđîĺíŕ.\n"
+#~ "Čńęŕňĺ ëč äŕ:"
-#~ msgid ""
-#~ "Please choose which network adapter do you want to use to connect to "
-#~ "internet.\n"
-#~ "If you don't know, choose eth0.\n"
-#~ msgstr ""
-#~ "Ěîë˙ čçáĺđĺňĺ ęîé ěđĺćîâ ŕäŕďňĺđ äŕ čçďîëçâŕě çŕ âđúçęŕ ęúě Číňĺđíĺň.\n"
-#~ "Ŕęî íĺ ăî çíŕĺňĺ, čçáĺđĺňĺ eth0.\n"
+#~ msgid "Reconfigure using wizard..."
+#~ msgstr "Ďđĺíŕńňđîé čçďîëçâŕéęč ěŕăüîńíčę ..."
-#~ msgid "nfs mount failed"
-#~ msgstr "nfs ěîíňčđŕíĺňî íĺ óńď˙"
+#~ msgid "Graphics Manipulation"
+#~ msgstr "Îáđŕáîňęŕ íŕ ăđŕôčęŕ"
-#~ msgid "CHAP"
-#~ msgstr "CHAP"
+#~ msgid "Multimedia"
+#~ msgstr "Ěóëňčěĺäč˙"
-#~ msgid "Socket"
-#~ msgstr "Socket"
+#~ msgid "Sciences"
+#~ msgstr "Íŕóęč"
#~ msgid ""
-#~ "DrakX will generate config files for both XFree 3.3 and XFree 4.0.\n"
-#~ "By default, the 4.0 server is used unless your card is not supported.\n"
-#~ "\n"
-#~ "Do you want to keep XFree 3.3?"
+#~ "Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and file "
+#~ "transfer tools"
#~ msgstr ""
-#~ "DrakX ůĺ ńúçäŕäĺ íŕńňđîéâŕůčňĺ ôŕéëîâĺ č çŕ XFree 3.3 č çŕ XFree 4.0.\n"
-#~ "Ďî ďîäđŕçáčđŕíĺ ńĺ čçďîëçâŕ 4.0 , çŕůîňî đŕáîňč íŕ ďîâĺ÷ĺ ăđŕôč÷íč ęŕđňč.\n"
-#~ "\n"
-#~ "Čńęŕňĺ ëč äŕ čçďđîáâŕňĺ XFree 3.3 ?"
+#~ "×ŕň (IRC čëč ěîěĺíňíč ńúîáůĺíč˙) ďđîăđŕěč ęŕňî xchat, licq, gaim č "
+#~ "číńňđóěĺíňč çŕ ňđŕíńôĺđ íŕ ôŕéëîâĺ"
-#~ msgid "Cryptographic"
-#~ msgstr "Ęđčďňîăđŕôč˙"
+#~ msgid "Communication facilities"
+#~ msgstr "Číńňđóěĺíňč çŕ ęîěóíčęŕöč˙"
-#~ msgid "Configure LAN"
-#~ msgstr "Íŕńňđîéęŕ íŕ LAN"
+#~ msgid "KDE"
+#~ msgstr "KDE"
-#~ msgid "End configuration"
-#~ msgstr "Ôčíŕëíŕ íŕńňđîéęŕ"
+#~ msgid "Gnome"
+#~ msgstr "Gnome"
-#~ msgid "Do not set up networking"
-#~ msgstr "Íĺ óńňŕíîâ˙âŕé ěđĺćŕňŕ"
+#~ msgid "Internet Tools"
+#~ msgstr "Číňĺđíĺň Číńňđóěĺíňč"
-#~ msgid "Do you want to configure a local network for your system?"
-#~ msgstr "Čńęŕňĺ ëč äŕ íŕńňđîčňĺ ńčńňĺěŕňŕ ńč çŕ đŕáîňŕ â ëîęŕëíŕňŕ ěđĺćŕ ?"
+#~ msgid "Databases clients and servers (mysql and postgresql)"
+#~ msgstr "Ęëčĺíňč č ńúđâúđ íŕ áŕçč äŕííč (MySQL č PostgreSQL)"
-#~ msgid "Show less"
-#~ msgstr "Ďîęŕćč ďî-ěŕëęî"
+#~ msgid "Development C/C++"
+#~ msgstr "Đŕçđŕáîňęŕ íŕ C/C++"
-#~ msgid "Show more"
-#~ msgstr "Ďîęŕćč ďîâĺ÷ĺ"
+#~ msgid "Configure timezone"
+#~ msgstr "Íŕńňđîéęŕ íŕ ÷ŕńîâŕ çîíŕ"
-#~ msgid "Take over the hard drive"
-#~ msgstr "Číńňŕëŕöč˙ âúđőó öĺëč˙ ňâúđä äčńę"
+#~ msgid "Configure printer"
+#~ msgstr "Íŕńňđîéęŕ íŕ ďđčíňĺđŕ"
-#~ msgid "URI for Local printer"
-#~ msgstr "URI çŕ ëîęŕëĺí ďđčíňĺđ"
+#~ msgid "Network adaptater 1 (eth0):"
+#~ msgstr "Ěđĺćîâ ďđčíňĺđ 1 (eth0):"
-#~ msgid "URI for Network printer"
-#~ msgstr "URI çŕ ěđĺćîâ číňĺđôĺéń"
+#~ msgid "(may cause data corruption)"
+#~ msgstr "(ěîćĺ äŕ ďđč÷číč çŕăóáŕ íŕ äŕííč)"
-#~ msgid "Local Printer Device (URI)"
-#~ msgstr "Ëîęŕëíî ďĺ÷ŕňŕůî óńňđîéńňâî (URI)"
+#~ msgid "Use hard drive optimisations?"
+#~ msgstr "Čńęŕňĺ ëč îďňčěčçŕöč˙ íŕ äčńęîâĺňĺ ?"
-#~ msgid ""
-#~ "What URI device is your printer connected to\n"
-#~ "(note that parallel:/dev/lp0 is equivalent to LPT1:)?"
-#~ msgstr ""
-#~ "Ęúě ęîĺ URI óńňđîéńňâŕ ĺ ńâúđçŕí ďđčíňĺđŕ âč\n"
-#~ "(çŕáĺëĺćĺňĺ, ÷ĺ parallel:/dev/lp0 ĺ ĺęâčâŕëĺíňĺí íŕ LPT1:) ?\n"
+#~ msgid "Enable num lock at startup"
+#~ msgstr "Çŕäĺéńňâŕíĺ Num Lock-ŕ ďđč çŕđĺćäŕíĺ"
-#~ msgid "curly"
-#~ msgstr "ęúäđŕâ"
+#~ msgid "Confirm Password"
+#~ msgstr "Ďîňâúđćäĺíčĺ íŕ ďŕđîëŕňŕ"
#~ msgid "default"
-#~ msgstr "Ďî ďîäđŕçáčđŕíĺ"
-
-#~ msgid "tie"
-#~ msgstr "Ŕęňčâčđŕé"
+#~ msgstr "ďî ďîäđŕçáčđŕíĺ"
-#~ msgid "brunette"
-#~ msgstr "áđţíĺňęŕ"
+#~ msgid "What is your system used for?"
+#~ msgstr "Çŕ ęŕęâî ńĺ óďîňđĺá˙âŕ ńčńňĺěŕňŕ âč ?"
-#~ msgid "girl"
-#~ msgstr "ěîěč÷ĺ"
+#~ msgid "Select the size you want to install"
+#~ msgstr "Čçáĺđĺňĺ đŕçěĺđŕ, ęîéňî čńęŕňĺ äŕ číńňŕëčđŕě"
-#~ msgid "woman-blond"
-#~ msgstr "áëîíäčíęŕ"
+#~ msgid "Use diskdrake"
+#~ msgstr "Čçďîëçâŕé diskdrake"
-#~ msgid "automagic"
-#~ msgstr "ŕâňîěŕăč÷ĺí"
-
-#~ msgid "Have you been provided with a hostname?"
-#~ msgstr "Äŕäĺíî ëč âč ĺ čěĺ íŕ őîńň ?"
-
-#~ msgid "Local Area Network specification"
-#~ msgstr "Ńďĺöčöčęŕöč˙ íŕ Ëîęŕëíŕňŕ Ěđĺćŕ"
-
-#~ msgid "You may now decide which class C network to use.\n"
-#~ msgstr "Ěîćĺňĺ äŕ čçáĺđĺňĺ ęîé ěđĺćîâ C ęëŕń äŕ čçďîëçâŕňĺ.\n"
-
-#~ msgid "Network:"
-#~ msgstr "Ěđĺćŕ:"
-
-#~ msgid "Internet Connection Sharing - setup of $device"
-#~ msgstr "SŃďîäĺë˙íĺ íŕ Âđúçęŕňŕ ń Číňĺđíĺň - çŕäŕâŕíĺ íŕ $device"
+#~ msgid "Customized"
+#~ msgstr "Ńďĺöčŕëčçčđŕíŕ"
#~ msgid ""
-#~ "The following interface is about to be configured:\n"
-#~ "\n"
-#~ "$interface\n"
+#~ "Are you sure you are an expert? \n"
+#~ "You will be allowed to make powerful but dangerous things here.\n"
#~ "\n"
+#~ "You will be asked questions such as: ``Use shadow file for passwords?'',\n"
+#~ "are you ready to answer that kind of questions?"
#~ msgstr ""
-#~ "Ůĺ áúäĺ ęîíôčăóđčđŕí ńëĺäíč˙ň číňĺđôĺéń:\n"
-#~ "\n"
-#~ "$interface\n"
-#~ "\n"
+#~ "Ńčăóđíč ëč ńňĺ, ÷ĺ ńňĺ ĺęńďĺđň ?\n"
+#~ "Ňóę ůĺ âč áúäŕň ďîçâîëĺíč ěîůíč, íî îďŕńíč íĺůŕ.\n"
+#~ "Ŕęî Âč áúäĺ çŕäŕäĺí âúďđîń: ``Use shadow file for passwords?'',\n"
+#~ "ůĺ ěîćĺňĺ ëč äŕ ăî đŕáĺđĺňĺ č îňăîâîđčňĺ?"
-#~ msgid "Everything configured!"
-#~ msgstr "Âńč÷ęî ĺ ęîíôčăóđčđŕíî!"
+#~ msgid "Use shadow file"
+#~ msgstr "Čçďîëçâŕé shadow ôŕéë"
-#~ msgid "What is your keyboard layout?"
-#~ msgstr "Ęŕęâî ĺ ďîäđĺćäŕíĺňî íŕ ęëŕâčŕňóđŕňŕ Âč?"
+#~ msgid "shadow"
+#~ msgstr "shadow"
-#~ msgid "Normal"
-#~ msgstr "Íîđěŕëíŕ"
+#~ msgid "MD5"
+#~ msgstr "MD5"
-#~ msgid "Configure my card"
-#~ msgstr "Íŕńňđîé ęŕđňŕňŕ ěč"
+#~ msgid "Use MD5 passwords"
+#~ msgstr "Čçďîëçâŕé MD5 ďŕđîëč"
-#~ msgid "pptp alcatel"
-#~ msgstr "PPTP Alcatel"
+#~ msgid "Search"
+#~ msgstr "Ňúđńč"
-#~ msgid "Try to find PCMCIA cards?"
-#~ msgstr "Äŕ ńĺ îďčňŕě ëč äŕ íŕěĺđ˙ PCMCIA ęŕđňč ?"
+#~ msgid "Package"
+#~ msgstr "Ďŕęĺňŕ"
-#~ msgid "Try to find %s devices?"
-#~ msgstr "Äŕ ńĺ îďčňŕě ëč äŕ íŕěĺđ˙ %s óńňđîéńňâŕ ?"
+#~ msgid "Text"
+#~ msgstr "Ňĺęńň"
-#~ msgid "Small(%dMB)"
-#~ msgstr "Ěŕëęŕ(%d Mb)"
+#~ msgid "Tree"
+#~ msgstr "Äúđâî"
-#~ msgid "Modem Configuration"
-#~ msgstr "Íŕńňđîéęŕ íŕ ěîäĺěŕ"
+#~ msgid "Sort by"
+#~ msgstr "Ńîđňčđŕé ďî"
-#~ msgid ""
-#~ "Do you want to configure a dialup connection with modem for your system?"
-#~ msgstr "Čńęŕňĺ ëč äŕ íŕńňđîčňĺ ńčńňĺěŕňŕ ńč çŕ đŕáîňŕ â ěđĺćŕ ÷đĺç ěîäĺě ?"
+#~ msgid "Category"
+#~ msgstr "Ęŕňĺăîđč˙"
-#~ msgid "Do you want to configure a ISDN connection for your system?"
-#~ msgstr "Čńęŕňĺ ëč äŕ ęîíôčăóđčđŕňĺ ISDN âđúçęŕ çŕ ńčńňĺěŕňŕ Âč?"
+#~ msgid "See"
+#~ msgstr "Âčć"
-#~ msgid "Try to find PCI devices?"
-#~ msgstr "Äŕ ńĺ îďčňŕě ëč äŕ íŕěĺđ˙ PCI óńňđîéńňâŕ ?"
+#~ msgid "Installed packages"
+#~ msgstr "Číńňŕëčđŕíč ďŕęĺňč"
-#~ msgid "Searching root partition."
-#~ msgstr "Ňúđń˙ root-ä˙ë"
+#~ msgid "Available packages"
+#~ msgstr "Íŕëč÷íč ďŕęĺňč"
-#~ msgid "%s: This is not a root partition, please select another one."
-#~ msgstr "%s: Ňîâŕ íĺ ĺ root-ä˙ë, ěîë˙ čçáĺđĺňĺ í˙ęîé äđóă."
+#~ msgid "Show only leaves"
+#~ msgstr "Ďîęŕćč ńŕěî ëčńňŕňŕ"
-#~ msgid "No root partition found"
-#~ msgstr "Í˙ěŕ íŕěĺđĺí root-ä˙ë"
+#~ msgid "Expand all"
+#~ msgstr "Đŕçřčđč âńč÷ęî"
-#~ msgid "Can't use broadcast with no NIS domain"
-#~ msgstr "Íĺ ěîăŕ äŕ čçďîëçâŕě ďđĺäŕâŕíĺ áĺç NIS domain"
+#~ msgid "Collapse all"
+#~ msgstr "Čç÷čńňč âńč÷ęî"
-#~ msgid "Please choose a partition to use as your root partition."
-#~ msgstr "Ěîë˙, čçáĺđĺňĺ ä˙ë çŕ ńâîé root-ä˙ë."
+#~ msgid "Add location of packages"
+#~ msgstr "Äîáŕâč ě˙ńňî íŕ ďŕęĺňčňĺ"
-#~ msgid "Autologin at startup"
-#~ msgstr "Autologin íŕ ńčńňĺěŕňŕ"
+#~ msgid "Update location"
+#~ msgstr "Îáíîâč ě˙ńňîňî"
-#~ msgid "Autologin - Choose default user"
-#~ msgstr "Autologin - Čçáĺđč ďîäđŕçáčđŕů ńĺ ďîňđĺáčňĺë"
+#~ msgid "Remove"
+#~ msgstr "Ďđĺěŕőíč"
-#~ msgid "You don't have any windows partitions!"
-#~ msgstr "Í˙ěŕňĺ íčęŕęâč windows ä˙ëîâĺ!"
+#~ msgid "Find Package"
+#~ msgstr "Íŕěĺđč ďŕęĺň"
-#~ msgid "You don't have any enough room for Lnx4win"
-#~ msgstr "Í˙ěŕňĺ äîńňŕňú÷íî ě˙ńňî çŕ Lnx4win"
+#~ msgid "Find Package containing file"
+#~ msgstr "Íŕěĺđč ďŕęĺň ńúäúđćŕů ôŕéë"
-#~ msgid ", %U MB"
-#~ msgstr ", %U MB"
+#~ msgid "Toggle between Installed and Available"
+#~ msgstr "Ďđĺâęëţ÷âŕíĺ ěĺćäó Číńňŕëčđŕí č Íŕëč÷ĺí"
-#~ msgid "Automated"
-#~ msgstr "Ŕâňîěŕňčçčđŕíŕ"
+#~ msgid "Uninstall"
+#~ msgstr "Äĺčíńňŕëčđŕíĺ"
-# NOTE: this message will be displayed by lilo at boot time; that is
-# using the BIOS font; that means cp437 charset on 99.99% of PC computers
-# out there. It is the nsuggested that for non latin languages an ascii
-# transliteration be used; or maybe the english text be used; as it is best
-#
-#~ msgid ""
-#~ "Welcome to LILO the operating system chooser!\n"
-#~ "\n"
-#~ "To list the possible choices, press <TAB>.\n"
-#~ "\n"
-#~ "To load one of them, write its name and press <ENTER> or wait %d seconds for "
-#~ "default boot.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Äîáđĺ äîřëč â LILO - íŕ÷číŕ äŕ čçáĺđĺňĺ îďĺđŕöčîííŕ ńčńňĺěŕ !\n"
-#~ "\n"
-#~ "Çŕ äŕ ďîëó÷čňĺ ńďčńúę íŕ âúçěîćíîńňčňĺ, íŕňčńíĺňĺ <TAB>.\n"
-#~ "\n"
-#~ "Çŕ äŕ çŕđĺäčňĺ ĺäíŕ îň ň˙ő, íŕďčřĺňĺ čěĺňî č íŕňčńíĺňĺ <ENTER> čëč čç÷ŕęŕéňĺ "
-#~ "%d ńĺęóíäč çŕ ńňŕđňčđŕíĺ ďî ďîäđŕçáčđŕíĺ.\n"
+#~ msgid "Choose package to install"
+#~ msgstr "Čçáĺđĺňĺ ďŕęĺňč çŕ číńňŕëčđŕíĺ"
-# NOTE: this message will be displayed by SILO at boot time; that is
-# only the ascii charset will be available
-# so use only 7bit for this message
-#
-#~ msgid ""
-#~ "Welcome to SILO the operating system chooser!\n"
-#~ "\n"
-#~ "To list the possible choices, press <TAB>.\n"
-#~ "\n"
-#~ "To load one of them, write its name and press <ENTER> or\n"
-#~ "wait %d seconds for default boot.\n"
-#~ "\n"
-#~ msgstr ""
-#~ "Welcome to SILO the operating system chooser!\n"
-#~ "\n"
-#~ "To list the possible choices, press <TAB>.\n"
-#~ "\n"
-#~ "To load one of them, write its name and press <ENTER> or\n"
-#~ "wait %d seconds for default boot.\n"
-#~ "\n"
+#~ msgid "Checking dependencies"
+#~ msgstr "Ďđîâĺđ˙âŕě çŕâčńčěîńňčňĺ"
-#~ msgid "SILO main options"
-#~ msgstr "Ăëŕâíč îďöčč íŕ SILO"
+#~ msgid "Wait"
+#~ msgstr "Ĺäčí ěîěĺíň"
-#~ msgid ""
-#~ "Here are the following entries in SILO.\n"
-#~ "You can add some more or change the existing ones."
-#~ msgstr ""
-#~ "Ňîâŕ ńŕ ďŕđŕěĺňđčňĺ íŕ SILO.\n"
-#~ "Ěîćĺňĺ äŕ âúâĺäĺňĺ îůĺ čëč äŕ ďđîěĺíčňĺ ńúůĺńňâóâŕůčňĺ."
+#~ msgid "The following packages are going to be uninstalled"
+#~ msgstr "Ńëĺäíčňĺ ďŕęĺňč ůĺ áúäŕň äĺčíńňŕëčđŕíč"
-#~ msgid "This label is already in use"
-#~ msgstr "Ňîçč ĺňčęĺň âĺ÷ĺ ńĺ čçďîëçâŕ"
+#~ msgid "Uninstalling the RPMs"
+#~ msgstr "Äĺčíńňŕëčđŕě ďŕęĺňŕ"
-#~ msgid "Installation of SILO failed. The following error occured:"
-#~ msgstr "Číńňŕëŕöč˙ňŕ íŕ SILO ďđîâŕëĺíŕ. Ďî˙âč ńĺ ńëĺäíŕňŕ ăđĺřęŕ:"
+#~ msgid "Regexp"
+#~ msgstr "Regexp"
-#~ msgid ""
-#~ "DrakX will attempt at first to look for one or more PCI\n"
-#~ "SCSI adapter(s). If it finds it (or them) and knows which driver(s)\n"
-#~ "to use, it will insert it (them) automatically.\n"
-#~ "\n"
-#~ "\n"
-#~ "If your SCSI adapter is an ISA board, or is a PCI board but DrakX\n"
-#~ "doesn't know which driver to use for this card, or if you have no\n"
-#~ "SCSI adapters at all, you will then be prompted on whether you have\n"
-#~ "one or not. If you have none, answer \"No\". If you have one or more,\n"
-#~ "answer \"Yes\". A list of drivers will then pop up, from which you\n"
-#~ "will have to select one.\n"
-#~ "\n"
-#~ "\n"
-#~ "After you have selected the driver, DrakX will ask if you\n"
-#~ "want to specify options for it. First, try and let the driver\n"
-#~ "probe for the hardware: it usually works fine.\n"
-#~ "\n"
-#~ "\n"
-#~ "If not, do not forget the information on your hardware that you\n"
-#~ "could get from your documentation or from Windows (if you have it\n"
-#~ "on your system), as suggested by the installation guide. These\n"
-#~ "are the options you will need to provide to the driver."
-#~ msgstr ""
-#~ "DrakX ůĺ íŕďđŕâč ďđîâĺđęŕ çŕ ĺäčí čëč í˙ęîëęî PCI SCSI ŕäŕďňĺđŕ.\n"
-#~ "Ŕęî îňđęčĺ č çíŕĺ,ęîé äđŕéâĺđ äŕ číńňŕëčđŕ,ůĺ ăî íŕďđŕâč\n"
-#~ "ŕâňîěŕňč÷íî áĺç âŕřŕ íŕěĺńŕ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ŕęî âŕřč˙ň SCSI ŕäŕďňĺđ ĺ íŕ ISA board , čëč íŕ PCI board,íî DrakX\n"
-#~ "íĺçíŕĺ ęîé äđŕéâúđ äŕ čçďîëçâŕ , ůĺ áúäĺňĺ ďîďčňŕí čěŕňĺ ëč ňŕęčâŕ\n"
-#~ "ŕäŕďňĺđč. Ŕęî í˙ěŕňĺ îňăîâîđĺňĺ \"Íĺ\".Ŕęî čěŕňĺ - \"Äŕ\" č ůĺ ńĺ ďîęŕćĺ\n"
-#~ "ńďčńúę ń äđŕéâĺđč.\n"
-#~ "Ňŕě čçáĺđĺňĺ íŕé-ďîäőîä˙ůč˙ çŕ âŕřč˙ ŕäŕďňĺđ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ńëĺä ňŕçč ďđîöĺäóđŕ, DrakX ůĺ âč ďîďčňŕ čńęŕňĺ ëč äŕ ěîäčôčöčđŕňĺ îďöččňĺ\n"
-#~ "çŕ ŕäŕďňĺđŕ. Ďúđâî ďđîáâŕéňĺ äđŕéâĺđŕ äŕ íŕěĺđč őŕđäóĺđŕ: îáčęíîâĺíî đŕáîňč\n"
-#~ "äîáđĺ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ŕęî ëč íĺ,íĺ çŕáđŕâ˙éňĺ äŕ âçĺěĺňĺ číôîđěŕöč˙ňŕ îň äîęóěĺíňŕöč˙ňŕ íŕ\n"
-#~ "äđŕéâĺđŕ,čëč îň Windows."
+#~ msgid "Which package are looking for"
+#~ msgstr "Ęîé ďŕęĺň ňúđń˙ň"
-#~ msgid "Shutting down"
-#~ msgstr "Čçęëţ÷âŕíĺ"
+#~ msgid "%s not found"
+#~ msgstr "%s íĺ ĺ íŕěĺđĺíî"
-#~ msgid "useless"
-#~ msgstr "íĺóďîňđĺá˙ĺě"
+#~ msgid "No match"
+#~ msgstr "Í˙ěŕ ńúâďŕäĺíč˙"
-#~ msgid "garbage"
-#~ msgstr "áóęëóę"
+#~ msgid "No more match"
+#~ msgstr "Í˙ěŕ ďîâĺ÷ĺ ńúâďŕäĺíč˙"
#~ msgid ""
-#~ "Some true type fonts from windows have been found on your computer.\n"
-#~ "Do you want to use them? Be sure you have the right to use them under Linux."
+#~ "rpmdrake is currently in ``low memory'' mode.\n"
+#~ "I'm going to relaunch rpmdrake to allow searching files"
#~ msgstr ""
-#~ "Í˙ęîč true type-řđčôňîâĺ îň windows á˙őŕ íŕěĺđĺíč íŕ ęîěďţňúđŕ âč.\n"
-#~ "Čńęŕňĺ ëč äŕ ăč čçďîëçâŕňĺ ? Ňđ˙áâŕ äŕ čěŕňĺ ďđŕâîňî äŕ ăč čçďîëçâŕňĺ ďîä "
-#~ "Linux."
+#~ "rpmdrake ĺ â đĺćčě íŕ ``ěŕëęî ďŕěĺň''.\n"
+#~ "Ůĺ ďóńíŕ îňíîâî rpmdrake, çŕ äŕ đŕçđĺřŕ ňúđńĺíĺňî íŕ ôŕéëîâĺ"
-#~ msgid ""
-#~ "Choose \"Install\" if there are no previous versions of Linux\n"
-#~ "installed, or if you wish to use multiple distributions or versions.\n"
-#~ "\n"
-#~ "\n"
-#~ "Choose \"Upgrade\" if you wish to update a previous version of Mandrake "
-#~ "Linux:\n"
-#~ "5.1 (Venice), 5.2 (Leloo), 5.3 (Festen), 6.0 (Venus), 6.1 (Helios), Gold "
-#~ "2000\n"
-#~ "or 7.0 (Air)."
-#~ msgstr ""
-#~ "Čçáĺđĺňĺ \"Číńňŕëŕöč˙\" ŕęî í˙ěŕ ďđĺäčříŕ âĺđńč˙ íŕ Linux číńňŕëčđŕíŕ\n"
-#~ "čëč ŕęî čńęŕňĺ äŕ ďîëçâŕňĺ đŕçëč÷íč äčńňđčáóöčč/âĺđńčč.\n"
-#~ "\n"
-#~ "\n"
-#~ "Čçáĺđĺňĺ \"Îáíîâ˙âŕíĺ\" ŕęî čńęŕňĺ äŕ číńňŕëčđŕňĺ âúđőó ďđĺäčříŕ âĺđńč˙ íŕ\n"
-#~ "Mandrake Linux: 5.1 (Venice), 5.2 (Leeloo), 5.3 (Festen), 6.0 (Venus),\n"
-#~ "6.1 (Helios), Gold 2000 or 7.0 (Air)."
+#~ msgid "Which file are you looking for?"
+#~ msgstr "Ęîé ôŕéë ňúđńčňĺ?"
-#~ msgid "Do you want to use LILO?"
-#~ msgstr "Čńęŕňĺ ëč äŕ čçďîëçâŕňĺ LILO?"
+#~ msgid "What are looking for?"
+#~ msgstr "Ęŕęâî ňúđń˙ň?"
-#~ msgid ""
-#~ "You may now select the packages you wish to install.\n"
-#~ "\n"
-#~ "\n"
-#~ "First you can select group of package to install or upgrade. After that\n"
-#~ "you can select more packages according to the total size you wish to\n"
-#~ "select.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you are in expert mode, you can select packages individually.\n"
-#~ "Please note that some packages require the installation of others.\n"
-#~ "These are referred to as package dependencies. The packages you select,\n"
-#~ "and the packages they require will be automatically selected for\n"
-#~ "install. It is impossible to install a package without installing all\n"
-#~ "of its dependencies."
-#~ msgstr ""
-#~ "Ńĺăŕ ěîćĺ äŕ čçáĺđĺňĺ ďŕęĺňčňĺ,ęîčňî áčőňĺ ćĺëŕëč äŕ áúäŕň číńňŕëčđŕíč.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ďúđâî, ěîćĺňĺ äŕ čçáĺđĺňĺ ăđóďŕ îň ďŕęĺňč çŕ číńňŕëčđŕíĺ čëč íŕäăđŕćäŕíĺ. "
-#~ "Ńëĺä ňîâŕ,\n"
-#~ "ěîćĺňĺ äŕ čçáĺđĺňĺ îůĺ ďŕęĺňč ńúîáđŕçíî ďúíŕňŕ ăîëĺěčíŕ, ęî˙ňî čńęŕňĺ äŕ\n"
-#~ "čçáĺđĺňĺ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ŕęî ńňĺ čçáđŕëč ĺęńďĺđňíŕ číńňŕëŕöč˙, ňîăŕâŕ ěîćĺňĺ äŕ čçáĺđĺňĺ ďŕęĺňčňĺ "
-#~ "ńŕěč.\n"
-#~ "Ěîë˙, îáúđíĺňĺ âíčěŕíčĺ, ÷ĺ í˙ęîč ďŕęĺňč čçčńęâŕň číńňŕëčđŕíĺňî íŕ äđóăč.\n"
-#~ "Ěĺćäó ň˙ő ńúůĺńňâóâŕ ďŕęĺňíŕ çŕâčńčěîńň. Ďŕęĺňúň, ęîéňî ńňĺ čçáđŕëč,\n"
-#~ "č ňĺçč, ęîčňî ňîé čçčńęâŕ, ůĺ áúäŕň čçáđŕíč çŕ číńňŕëčđŕíĺ ŕâňîěŕňč÷íî.\n"
-#~ "Íĺâúçěîćíî ĺ äŕ čńňŕëčđŕňĺ ďŕęĺň áĺç äŕ číńňŕëčđŕňĺ âńč÷ęčňĺ äđóăč, îň "
-#~ "ęîčňî\n"
-#~ "ňîé çŕâčńč."
+#~ msgid "Give a name (eg: `extra', `commercial')"
+#~ msgstr "Äŕéňĺ čěĺ (íŕďđ.: `extra', `commercial')"
-#~ msgid ""
-#~ "LILO (the LInux LOader) can boot Linux and other operating systems.\n"
-#~ "Normally they are correctly detected during installation. If you don't\n"
-#~ "see yours detected, you can add one or more now.\n"
-#~ "\n"
-#~ "\n"
-#~ "If you don't want that everybody could access at one of them, you can "
-#~ "remove\n"
-#~ "it now (a boot disk will be needed to boot it)."
-#~ msgstr ""
-#~ "LILO (the LInux LOader) ěîćĺ äŕ çŕđĺäč Linux č äđóăč îďĺđŕöčîííč ńčńňĺěč.\n"
-#~ "Îáčęíîâĺíî ňĺ ńĺ çŕńč÷ŕň íîđěŕëíî ďî âđĺěĺ íŕ číńňŕëŕöč˙ňŕ. Ŕęî íĺ âčäčňĺ\n"
-#~ "âŕřčňĺ çŕńĺ÷ĺíč, ěîćĺňĺ äŕ äîáŕâčňĺ ĺäíŕ čëč ďîâĺ÷ĺ ńĺăŕ.\n"
-#~ "\n"
-#~ "\n"
-#~ "Ŕęî íĺ čńęŕňĺ âńĺęč äŕ čěŕ äîńňúď ňî ň˙ő, ěîćĺňĺ ńĺăŕ äŕ ăč ěŕőíĺňĺ\n"
-#~ "(ůĺ âč ňđ˙áâŕ boot-äčńęĺňŕ, çŕ äŕ ăč ńňŕđňčđŕňĺ)."
+#~ msgid "Directory"
+#~ msgstr "Äčđĺęňîđč˙"
-#~ msgid ""
-#~ "Now that you've selected desired groups, please choose \n"
-#~ "how many packages you want, ranging from minimal to full \n"
-#~ "installation of each selected groups."
-#~ msgstr ""
-#~ "Ńĺăŕ ńňĺ čçáđŕëč íóćíčňĺ ăđóďč. Ěîë˙, čçáĺđĺňĺ ęîëęî \n"
-#~ "ďŕęĺňŕ čńęŕňĺ, â ăđŕíčöč îň ěčíčěŕëíŕ äî ďúëíŕ číńňŕëŕöč˙ \n"
-#~ "íŕ âń˙ęŕ čçáđŕíŕ ăđóďŕ."
+#~ msgid "No cdrom available (nothing in /mnt/cdrom)"
+#~ msgstr "Í˙ěŕ CDROM (í˙ěŕ íčůî â /mnt/cdrom)"
+
+#~ msgid "URL of the directory containing the RPMs"
+#~ msgstr "URL íŕ äčđĺęňîđč˙ňŕ ńúäúđćŕůŕ RPM"
#~ msgid ""
-#~ "You need %dMB for a full install of the groups you selected.\n"
-#~ "You can go on anyway, but be warned that you won't get all packages"
+#~ "For FTP and HTTP, you need to give the location for hdlist\n"
+#~ "It must be relative to the URL above"
#~ msgstr ""
-#~ "Íóćäŕĺňĺ ńĺ îň %d MB çŕ ďúëíŕ číńňŕëŕöč˙ íŕ čçáđŕíčňĺ ăđóďč.\n"
-#~ "Ěîćĺňĺ äŕ ďđîäúëćčňĺ âúďđĺęč âńč÷ęî, íî í˙ěŕ äŕ čěŕňĺ âńč÷ęč ďŕęĺňč"
-
-#~ msgid "Choose other CD to install"
-#~ msgstr "Čçáĺđĺňĺ äđóăî CD çŕ číńňŕëčđŕíĺ"
+#~ "Çŕ FTP č HTTP, ůĺ ňđ˙áâŕ äŕ äŕäĺňĺ ě˙ńňî çŕ hdlist\n"
+#~ "Ňî ňđ˙áâŕ äŕ ďđčëč÷ŕ íŕ URL-ňî îňăîđĺ"
-#~ msgid "Help"
-#~ msgstr "Ďîěîů"
+#~ msgid "Please submit the following information"
+#~ msgstr "Ěîë˙, čçďđŕňĺňĺ ńëĺäíŕňŕ číôîđěŕöč˙"
-#~ msgid "Downloading cryptographic packages"
-#~ msgstr "Čçňĺăë˙ě ęđčďňîăđŕôńęčňĺ ďŕęĺňč"
+#~ msgid "%s is already in use"
+#~ msgstr "Ĺňčęĺňúň %s ńĺ čçďîëçâŕ âĺ÷ĺ"
-#~ msgid "Setup SCSI"
-#~ msgstr "Íŕńňđîéęŕ íŕ SCSI"
+#~ msgid "Updating the RPMs base"
+#~ msgstr "Îáíîâ˙âŕíĺ íŕ RPM áŕçŕňŕ"
-#~ msgid "Installation CD Nr %s"
-#~ msgstr "Číńňŕëŕöčîííî CD Nr %s"
+#~ msgid "Going to remove entry %s"
+#~ msgstr "Ďđĺěŕőâŕíĺ íŕ çŕďčńŕ %s"
-#~ msgid ""
-#~ "Update installation image!\n"
-#~ "\n"
-#~ "Ask your system administrator or reboot to update your installation image to "
-#~ "include\n"
-#~ "the Cd-Rom image labelled \"%s\". Press Ok if image has been updated or "
-#~ "press Cancel\n"
-#~ "to avoid installation from this Cd-Rom image."
-#~ msgstr ""
-#~ "Îáíîâ˙âŕíĺ íŕ číńňŕëŕöč˙ňŕ !\n"
-#~ "\n"
-#~ "Ďîďčňŕéňĺ ńčńňĺěíč˙ ŕäěčíčńňđŕňîđ čëč đĺńňŕđňčđŕéňĺ, çŕ äŕ îáíîâčňĺ "
-#~ "číńňŕëŕöč˙ňŕ, çŕ äŕ äîáŕâčňĺ\n"
-#~ "CD-ROM-ŕ îçŕăëŕâĺí \"%s\". Íŕňčńíĺňĺ Ok, ŕęî číńňŕëŕöč˙ňŕ ĺ îáíîâĺíŕ, čëč "
-#~ "íŕňčńíĺňĺ Îňě˙íŕ,\n"
-#~ "çŕ äŕ čçáĺăíĺňĺ číńňŕëčđŕíĺňî îň íĺăî."
+#~ msgid "Finding leaves"
+#~ msgstr "Íŕěčđŕíĺ íŕ ëčńňŕňŕ"
-#~ msgid "Which language do you want?"
-#~ msgstr "Ęîé ĺçčę ďđĺäďî÷čňŕňĺ?"
+#~ msgid "Finding leaves takes some time"
+#~ msgstr "Íŕěčđŕíĺňî íŕ ëčńňŕ îňíĺěŕ ěŕëęî âđĺěĺ"
-#~ msgid "Hurt me plenty"
-#~ msgstr "Ńëŕáŕ đŕáîňŕ"
+#~ msgid "Alcatel modem"
+#~ msgstr "Ěîäĺě Alcatel"
-#~ msgid "Which packages do you want to install"
-#~ msgstr "Ęîč ďŕęĺňč čńęŕňĺ äŕ číńňŕëčđŕňĺ?"
+#~ msgid "ECI modem"
+#~ msgstr "Ěîäĺě ECI"
-#~ msgid "Choose install or upgrade"
-#~ msgstr "Čçáîđ číńňŕëčđŕíĺ čëč îáíîâ˙âŕíĺ"
+#~ msgid "France"
+#~ msgstr "Ôđŕíöč˙"
-#~ msgid "A entry %s already exists"
-#~ msgstr "Âúâĺäĺíč˙ çŕďčń %s âĺ÷ĺ ńúůĺńňâóâŕ"
+#~ msgid "I have found an ISDN Card:\n"
+#~ msgstr "Íŕěĺđĺő ISDN ęŕđňŕ:\n"
#~ msgid ""
-#~ "Failed to create an HTP boot floppy.\n"
-#~ "You may have to restart installation and give ``%s'' at the prompt"
+#~ "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
#~ msgstr ""
-#~ "Íĺ ěîćŕő äŕ ńúçäŕě äčńęĺňŕ ń HTP çŕđĺćäŕíĺ.\n"
-#~ "Ůĺ ňđ˙áâŕ äŕ đĺńňŕđňčđŕňĺ číńňŕëŕöč˙ňŕ č ďîäŕäĺňĺ ``%s'' ďđč ďóńęŕíĺňî č"
+#~ "Ŕęî ADSL ěîäĺěúň âč ĺ Alcatel, čçáĺđĺňĺ Alcatel. Číŕ÷ĺ, čçáĺđĺňĺ ECI."
+
+#~ msgid "In which country are you located ?"
+#~ msgstr "Â ęî˙ ńňđŕíŕ ńĺ íŕěčđŕňĺ ?"
+
+#~ msgid "KDE, QT, Gnome, GTK+"
+#~ msgstr "KDE, QT, Gnome, GTK+"
+
+#~ msgid "Other countries"
+#~ msgstr "Äđóăč ńňđŕíč"
-#~ msgid "It is necessary to restart installation with the new parameters"
-#~ msgstr "Ňđ˙áâŕ äŕ đĺńňŕđňčđŕňĺ číńňŕëŕöč˙ňŕ ń íîâč ďŕđŕěĺňđč"
+#~ msgid "Python, Perl, libraries, tools"
+#~ msgstr "Python, Perl, áčáëčîňĺęč, číńňđóěĺíňč"
-#~ msgid "It is necessary to restart installation booting on the floppy"
-#~ msgstr "Ňđ˙áâŕ äŕ đĺńňŕđňčđŕňĺ číńňŕëŕöč˙ňŕ ńňŕđňčđŕéęč äčńęĺňŕňŕ"
+#~ msgid "Which serial port is your mouse connected to?"
+#~ msgstr "Ęúě ęîé ńĺđčĺí ďîđň ĺ ńâúđçŕíŕ ěčřęŕňŕ âč ?"
-#~ msgid "Bad kickstart file %s (failed %s)"
-#~ msgstr "Ëîř ńňŕđňčđŕů ôŕéë %s (%s íĺ óńď˙)"
+#~ msgid "don't use pppoe"
+#~ msgstr "íĺ čçďîëçâŕé PPPOE"
-#~ msgid "Size: %s MB"
-#~ msgstr "Ăîëĺěčíŕ: %s MB"
+#~ msgid "i18n (important)"
+#~ msgstr "i18n (âŕćĺí)"
-#~ msgid "US Keyboard"
-#~ msgstr "US ęëŕâčŕňóđŕ"
+#~ msgid "i18n (nice)"
+#~ msgstr "i18n (äîáúđ)"
-#~ msgid "linear"
-#~ msgstr "ëčíĺĺí"
+#~ msgid "i18n (very nice)"
+#~ msgstr "i18n (ěíîăî äîáúđ)"
-#~ msgid "Linear (needed for some SCSI drives)"
-#~ msgstr "Ëčíĺĺí (íĺîáőîäčě çŕ í˙ęîč SCSI óńňđîéńňâŕ)"
+#~ msgid "interesting"
+#~ msgstr "číňĺđĺńĺí"
-#~ msgid "Local LAN"
-#~ msgstr "Ëîęŕëíŕ ěđĺćŕ"
+#~ msgid "mandatory"
+#~ msgstr "ěŕíäŕňĺí"
diff --git a/perl-install/share/po/br.po b/perl-install/share/po/br.po
index 39feeeca6..f715e43f4 100644
--- a/perl-install/share/po/br.po
+++ b/perl-install/share/po/br.po
@@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2000-11-11 21:39+0100\n"
+"POT-Creation-Date: 2001-04-17 16:58+0200\n"
"PO-Revision-Date: 1999-12-30 15:29+0100\n"
"Last-Translator: Jań-Mai Drapier <jan-mai.drapier@mail.dotcom.fr>\n"
"Language-Team: Brezhoneg <ofisk@wanadoo.fr>\n"
@@ -14,91 +14,115 @@ msgstr ""
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:179
+#: ../../Xconfigurator.pm_.c:232
+msgid "Configure all heads independantly"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:233
+msgid "Use Xinerama extension"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:236
+#, c-format
+msgid "Configure only card \"%s\" (%s)"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:239
+#, fuzzy
+msgid "Multi-head configuration"
+msgstr "o lenn ar c'hefluniadur"
+
+#: ../../Xconfigurator.pm_.c:240
+msgid ""
+"Your system support multiple head configuration.\n"
+"What do you want to do?"
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:249
msgid "Graphic card"
msgstr "Kartenn c'hrafek"
-#: ../../Xconfigurator.pm_.c:179
+#: ../../Xconfigurator.pm_.c:249
msgid "Select a graphic card"
msgstr "Diuzit ur gartenn c'hrafek"
-#: ../../Xconfigurator.pm_.c:180
+#: ../../Xconfigurator.pm_.c:250
msgid "Choose a X server"
msgstr "Dibabit ur servijer X"
-#: ../../Xconfigurator.pm_.c:180
+#: ../../Xconfigurator.pm_.c:250
msgid "X server"
msgstr "servijer X"
-#: ../../Xconfigurator.pm_.c:217 ../../Xconfigurator.pm_.c:223
+#: ../../Xconfigurator.pm_.c:304 ../../Xconfigurator.pm_.c:311
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:220
+#: ../../Xconfigurator.pm_.c:307
#, fuzzy
msgid "Which configuration of XFree do you want to have?"
msgstr "Pe seurt enmont a vennit ouzhpennań"
-#: ../../Xconfigurator.pm_.c:232
+#: ../../Xconfigurator.pm_.c:320
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
-#: ../../Xconfigurator.pm_.c:234 ../../Xconfigurator.pm_.c:257
+#: ../../Xconfigurator.pm_.c:322 ../../Xconfigurator.pm_.c:355
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
-#: ../../Xconfigurator.pm_.c:236 ../../Xconfigurator.pm_.c:259
+#: ../../Xconfigurator.pm_.c:324 ../../Xconfigurator.pm_.c:357
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr ""
-#: ../../Xconfigurator.pm_.c:245
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
-"Your card is supported by XFree %s which may have a better support in 2D."
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:248
+#: ../../Xconfigurator.pm_.c:332 ../../Xconfigurator.pm_.c:346
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."
msgstr ""
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfigurator.pm_.c:334 ../../Xconfigurator.pm_.c:348
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr ""
-#: ../../Xconfigurator.pm_.c:265
+#: ../../Xconfigurator.pm_.c:343
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+
+#: ../../Xconfigurator.pm_.c:363
#, fuzzy
msgid "XFree configuration"
msgstr "Kefluniadur goude staliań"
-#: ../../Xconfigurator.pm_.c:303
+#: ../../Xconfigurator.pm_.c:396
msgid "Select the memory size of your graphic card"
msgstr "Diuzit ment memor ho kartenn c'hrafek"
-#: ../../Xconfigurator.pm_.c:347
+#: ../../Xconfigurator.pm_.c:443
msgid "Choose options for server"
msgstr "Dibabit dibarzhoů ar servijer"
-#: ../../Xconfigurator.pm_.c:358
+#: ../../Xconfigurator.pm_.c:460
msgid "Choose a monitor"
msgstr "Dibabit ur skramm"
-#: ../../Xconfigurator.pm_.c:358
+#: ../../Xconfigurator.pm_.c:460
msgid "Monitor"
msgstr "Skramm"
-#: ../../Xconfigurator.pm_.c:361
+#: ../../Xconfigurator.pm_.c:463
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -121,40 +145,40 @@ msgstr ""
"a zo en tu-hont da varregezh ho skramm : gallout a rafe gwastań ho skramm\n"
" M'hoc'h eus douetańs, dibabit ur c'hefluniadur fur."
-#: ../../Xconfigurator.pm_.c:368
+#: ../../Xconfigurator.pm_.c:470
msgid "Horizontal refresh rate"
msgstr "Feur freskaat a-led"
-#: ../../Xconfigurator.pm_.c:368
+#: ../../Xconfigurator.pm_.c:471
msgid "Vertical refresh rate"
msgstr "Feur freskaat a-serzh"
-#: ../../Xconfigurator.pm_.c:407
+#: ../../Xconfigurator.pm_.c:508
msgid "Monitor not configured"
msgstr "Skramm ket kefluniet"
-#: ../../Xconfigurator.pm_.c:410
+#: ../../Xconfigurator.pm_.c:511
msgid "Graphic card not configured yet"
msgstr "Kartenn c'hrafek ket kefluniet c'hoazh"
-#: ../../Xconfigurator.pm_.c:413
+#: ../../Xconfigurator.pm_.c:514
msgid "Resolutions not chosen yet"
msgstr "Spisterioů ket dibabet c'hoazh"
-#: ../../Xconfigurator.pm_.c:429
+#: ../../Xconfigurator.pm_.c:530
msgid "Do you want to test the configuration?"
msgstr "Mennout a rit amprouiń ar c'hefluniadur ?"
-#: ../../Xconfigurator.pm_.c:433
+#: ../../Xconfigurator.pm_.c:534
#, fuzzy
msgid "Warning: testing this graphic card may freeze your computer"
msgstr "Da ziwall : arvarus eo amprouiń ar gartenn c'hrafek-mań"
-#: ../../Xconfigurator.pm_.c:436
+#: ../../Xconfigurator.pm_.c:537
msgid "Test of the configuration"
msgstr "Amprouiń ar c'hefluniadur"
-#: ../../Xconfigurator.pm_.c:475
+#: ../../Xconfigurator.pm_.c:576
msgid ""
"\n"
"try to change some parameters"
@@ -162,146 +186,153 @@ msgstr ""
"\n"
"klaskit kemmań arventennoů 'zo"
-#: ../../Xconfigurator.pm_.c:475
+#: ../../Xconfigurator.pm_.c:576
msgid "An error has occurred:"
msgstr "C'hoarvezet eo ur fazi :"
-#: ../../Xconfigurator.pm_.c:497
+#: ../../Xconfigurator.pm_.c:598
#, c-format
msgid "Leaving in %d seconds"
msgstr "Kuitaat e %d eilenn"
-#: ../../Xconfigurator.pm_.c:507
+#: ../../Xconfigurator.pm_.c:609
msgid "Is this the correct setting?"
msgstr "Ha reizh eo ar c'hefluniadur ?"
-#: ../../Xconfigurator.pm_.c:515
+#: ../../Xconfigurator.pm_.c:617
msgid "An error has occurred, try to change some parameters"
msgstr "C'hoarvezet eo ur fazi, klaskit kemmań arventennoů 'zo"
-#: ../../Xconfigurator.pm_.c:552 ../../printerdrake.pm_.c:276
+#: ../../Xconfigurator.pm_.c:663 ../../printerdrake.pm_.c:277
+#: ../../services.pm_.c:125
msgid "Resolution"
msgstr "Spister"
-#: ../../Xconfigurator.pm_.c:587
+#: ../../Xconfigurator.pm_.c:710
msgid "Choose the resolution and the color depth"
msgstr "Dibabit ar spister ha donder al livioů"
-#: ../../Xconfigurator.pm_.c:589
+#: ../../Xconfigurator.pm_.c:712
#, c-format
msgid "Graphic card: %s"
msgstr "Kartenn c'hrafek : %s"
-#: ../../Xconfigurator.pm_.c:590
+#: ../../Xconfigurator.pm_.c:713
#, c-format
msgid "XFree86 server: %s"
msgstr "Servijer XFree86 : %s"
-#: ../../Xconfigurator.pm_.c:599
+#: ../../Xconfigurator.pm_.c:729 ../../standalone/draknet_.c:280
+#: ../../standalone/draknet_.c:283
+#, fuzzy
+msgid "Expert Mode"
+msgstr "Mailh"
+
+#: ../../Xconfigurator.pm_.c:730
msgid "Show all"
msgstr "Diskouez pep tra"
-#: ../../Xconfigurator.pm_.c:623
+#: ../../Xconfigurator.pm_.c:773
msgid "Resolutions"
msgstr "Spisterioů"
-#: ../../Xconfigurator.pm_.c:1021
+#: ../../Xconfigurator.pm_.c:1299
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Reizhadur ar stokellaoueg : %s\n"
-#: ../../Xconfigurator.pm_.c:1022
+#: ../../Xconfigurator.pm_.c:1300
#, c-format
msgid "Mouse type: %s\n"
msgstr "Seurt logodenn : %s\n"
-#: ../../Xconfigurator.pm_.c:1023
+#: ../../Xconfigurator.pm_.c:1301
#, c-format
msgid "Mouse device: %s\n"
msgstr "Trobarzhell al logodenn : %s\n"
-#: ../../Xconfigurator.pm_.c:1024
+#: ../../Xconfigurator.pm_.c:1302
#, c-format
msgid "Monitor: %s\n"
msgstr "Skramm : %s\n"
-#: ../../Xconfigurator.pm_.c:1025
+#: ../../Xconfigurator.pm_.c:1303
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "KempredA-led ar skramm : %s\n"
-#: ../../Xconfigurator.pm_.c:1026
+#: ../../Xconfigurator.pm_.c:1304
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "FreskA-serzh ar skramm : %s\n"
-#: ../../Xconfigurator.pm_.c:1027
+#: ../../Xconfigurator.pm_.c:1305
#, c-format
msgid "Graphic card: %s\n"
msgstr "Kartenn c'hrafek : %s\n"
-#: ../../Xconfigurator.pm_.c:1028
+#: ../../Xconfigurator.pm_.c:1306
#, c-format
msgid "Graphic memory: %s kB\n"
msgstr "Memor c'hrafek : %s ko\n"
-#: ../../Xconfigurator.pm_.c:1030
+#: ../../Xconfigurator.pm_.c:1308
#, fuzzy, c-format
msgid "Color depth: %s\n"
msgstr "Dibarzhoů donder liv"
-#: ../../Xconfigurator.pm_.c:1031
+#: ../../Xconfigurator.pm_.c:1309
#, fuzzy, c-format
msgid "Resolution: %s\n"
msgstr "Spisterioů"
-#: ../../Xconfigurator.pm_.c:1033
+#: ../../Xconfigurator.pm_.c:1311
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Servijer XFree86 : %s\n"
-#: ../../Xconfigurator.pm_.c:1034
+#: ../../Xconfigurator.pm_.c:1312
#, fuzzy, c-format
msgid "XFree86 driver: %s\n"
msgstr "Servijer XFree86 : %s\n"
-#: ../../Xconfigurator.pm_.c:1053
+#: ../../Xconfigurator.pm_.c:1331
msgid "Preparing X-Window configuration"
msgstr "O prientiń kefluniadur X-Window"
-#: ../../Xconfigurator.pm_.c:1067
+#: ../../Xconfigurator.pm_.c:1351
+msgid "What do you want to do?"
+msgstr "Petra a vennit ober ? "
+
+#: ../../Xconfigurator.pm_.c:1356
msgid "Change Monitor"
msgstr "Kemmań ar skramm"
-#: ../../Xconfigurator.pm_.c:1068
+#: ../../Xconfigurator.pm_.c:1357
msgid "Change Graphic card"
msgstr "Kemmań ar gartenn c'hrafek"
-#: ../../Xconfigurator.pm_.c:1069
+#: ../../Xconfigurator.pm_.c:1359
msgid "Change Server options"
msgstr "Kemmań dibarzhoů ar servijer"
-#: ../../Xconfigurator.pm_.c:1070
+#: ../../Xconfigurator.pm_.c:1360
msgid "Change Resolution"
msgstr "Kemmań ar spister"
-#: ../../Xconfigurator.pm_.c:1071
+#: ../../Xconfigurator.pm_.c:1361
msgid "Show information"
msgstr "Diskouez titouroů"
-#: ../../Xconfigurator.pm_.c:1072
+#: ../../Xconfigurator.pm_.c:1362
msgid "Test again"
msgstr "Amprouiń adarre"
-#: ../../Xconfigurator.pm_.c:1073 ../../standalone/rpmdrake_.c:46
+#: ../../Xconfigurator.pm_.c:1363 ../../bootlook.pm_.c:220
msgid "Quit"
msgstr "Kuitaat"
-#: ../../Xconfigurator.pm_.c:1077 ../../standalone/drakboot_.c:40
-msgid "What do you want to do?"
-msgstr "Petra a vennit ober ? "
-
-#: ../../Xconfigurator.pm_.c:1084
+#: ../../Xconfigurator.pm_.c:1371
#, fuzzy, c-format
msgid ""
"Keep the changes?\n"
@@ -310,20 +341,20 @@ msgid ""
"%s"
msgstr "Derc'hel ar c'hefluniadur IP o ren"
-#: ../../Xconfigurator.pm_.c:1105
+#: ../../Xconfigurator.pm_.c:1392
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Adereit ouzh %s evit bevaat ar c'hemmoů mar plij"
-#: ../../Xconfigurator.pm_.c:1125
+#: ../../Xconfigurator.pm_.c:1412
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Dizereit mar plij ha neuze implijit Ctrl-Alt-WarGil"
-#: ../../Xconfigurator.pm_.c:1128
+#: ../../Xconfigurator.pm_.c:1415
msgid "X at startup"
msgstr "X pa loc'her"
-#: ../../Xconfigurator.pm_.c:1129
+#: ../../Xconfigurator.pm_.c:1416
msgid ""
"I can set up your computer to automatically start X upon booting.\n"
"Would you like X to start when you reboot?"
@@ -331,29 +362,6 @@ msgstr ""
"Kefluniań ho urzhiataer evit lańsań X ent emgefreek pa loc'ho a c'hellań.\n"
"Mennout a rit lańsań X pa adloc'hit ?"
-#: ../../Xconfigurator.pm_.c:1153
-msgid "Autologin"
-msgstr ""
-
-#: ../../Xconfigurator.pm_.c:1154
-#, fuzzy
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"If you don't want to use this feature, click on the cancel button."
-msgstr ""
-"Kefluniań ho urzhiataer evit lańsań X ent emgefreek pa loc'ho a c'hellań.\n"
-"Mennout a rit lańsań X pa adloc'hit ?"
-
-#: ../../Xconfigurator.pm_.c:1156
-#, fuzzy
-msgid "Choose the default user:"
-msgstr "Dibabit ar ment nevez"
-
-#: ../../Xconfigurator.pm_.c:1157
-#, fuzzy
-msgid "Choose the window manager to run:"
-msgstr "Dibabit ar benveg a vennit staliań"
-
#: ../../Xconfigurator_consts.pm_.c:6
msgid "256 colors (8 bits)"
msgstr "256 liv (8 bit)"
@@ -402,165 +410,216 @@ msgstr "8 Mo"
msgid "16 MB or more"
msgstr "16 Mo pe vuioc'h"
-#: ../../Xconfigurator_consts.pm_.c:117 ../../Xconfigurator_consts.pm_.c:118
+#: ../../Xconfigurator_consts.pm_.c:120
msgid "Standard VGA, 640x480 at 60 Hz"
msgstr "VGA standard, 640x480 da 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:119
+#: ../../Xconfigurator_consts.pm_.c:121
msgid "Super VGA, 800x600 at 56 Hz"
msgstr "Gour-VGA, 800x600 da 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:120
+#: ../../Xconfigurator_consts.pm_.c:122
msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
msgstr "Kenglotus 8514, 1024x768 da 87 Hz pebeilet (800x600 ebet)"
-#: ../../Xconfigurator_consts.pm_.c:121
+#: ../../Xconfigurator_consts.pm_.c:123
msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
msgstr "Gour-VGA, 1024x768 da 87 Hz pebeilet, 800x600 da 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:122
+#: ../../Xconfigurator_consts.pm_.c:124
msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
msgstr "Gour-VGA astennet, 800x600 da 60 Hz, 640x480 da 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:123
+#: ../../Xconfigurator_consts.pm_.c:125
msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
msgstr "G-VGA nann-pebeilet, 1024x768 da 60 Hz, 800x600 da 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:124
+#: ../../Xconfigurator_consts.pm_.c:126
msgid "High Frequency SVGA, 1024x768 at 70 Hz"
msgstr "G-VGA talm uhel, 1024x768 da 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:125
+#: ../../Xconfigurator_consts.pm_.c:127
msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
msgstr "Lies-talm a c'hell ober 1280x1024 da 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:126
+#: ../../Xconfigurator_consts.pm_.c:128
msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
msgstr "Lies-talm a c'hell ober 1280x1024 da 74 Hz"
-#: ../../Xconfigurator_consts.pm_.c:127
+#: ../../Xconfigurator_consts.pm_.c:129
msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
msgstr "Lies-talm a c'hell ober 1280x1024 da 76 Hz"
-#: ../../Xconfigurator_consts.pm_.c:128
+#: ../../Xconfigurator_consts.pm_.c:130
msgid "Monitor that can do 1600x1200 at 70 Hz"
msgstr "Skramm a c'hell ober 1600x1200 da 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:129
+#: ../../Xconfigurator_consts.pm_.c:131
msgid "Monitor that can do 1600x1200 at 76 Hz"
msgstr "Skramm a c'hell ober 1600x1200 da 76 Hz"
-#: ../../any.pm_.c:91 ../../any.pm_.c:121 ../../any_new.pm_.c:91
-#: ../../any_new.pm_.c:121
+#: ../../any.pm_.c:99 ../../any.pm_.c:124
msgid "First sector of boot partition"
msgstr "Rann gentań ar parzhadur loc'hań"
-#: ../../any.pm_.c:91 ../../any.pm_.c:121 ../../any.pm_.c:150
-#: ../../any_new.pm_.c:91 ../../any_new.pm_.c:121 ../../any_new.pm_.c:150
+#: ../../any.pm_.c:99 ../../any.pm_.c:124 ../../any.pm_.c:196
msgid "First sector of drive (MBR)"
msgstr "Rann gentań ar bladenn (MBR)"
-#: ../../any.pm_.c:95 ../../any_new.pm_.c:95
+#: ../../any.pm_.c:103
#, fuzzy
msgid "SILO Installation"
msgstr "Staliadur LILO/grub"
-#: ../../any.pm_.c:96 ../../any.pm_.c:102 ../../any_new.pm_.c:96
-#: ../../any_new.pm_.c:102
+#: ../../any.pm_.c:104 ../../any.pm_.c:117
msgid "Where do you want to install the bootloader?"
msgstr "Pelec'h e mennit staliań ar c'harger loc'hań ?"
-#: ../../any.pm_.c:101 ../../any_new.pm_.c:101
+#: ../../any.pm_.c:116
msgid "LILO/grub Installation"
msgstr "Staliadur LILO/grub"
-#: ../../any.pm_.c:111 ../../any_new.pm_.c:111
-#: ../../install_steps_interactive.pm_.c:736
+#: ../../any.pm_.c:128 ../../any.pm_.c:142
+msgid "SILO"
+msgstr ""
+
+#: ../../any.pm_.c:130
+msgid "LILO with text menu"
+msgstr ""
+
+#: ../../any.pm_.c:131 ../../any.pm_.c:142
+msgid "LILO with graphical menu"
+msgstr ""
+
+#: ../../any.pm_.c:134
+msgid "Grub"
+msgstr ""
+
+#: ../../any.pm_.c:138
+msgid "Boot from DOS/Windows (loadlin)"
+msgstr ""
+
+#: ../../any.pm_.c:140 ../../any.pm_.c:142
#, fuzzy
-msgid "None"
-msgstr "Graet"
+msgid "Yaboot"
+msgstr "Gwrizienn"
+
+#: ../../any.pm_.c:148 ../../any.pm_.c:179
+msgid "Bootloader main options"
+msgstr "Dibarzhoů pennań ar c'harger loc'hań"
-#: ../../any.pm_.c:111 ../../any_new.pm_.c:111
-msgid "Which bootloader(s) do you want to use?"
-msgstr "Pe garger(ien) loc'hań a vennit imlijout ?"
+#: ../../any.pm_.c:149 ../../any.pm_.c:180
+#, fuzzy
+msgid "Bootloader to use"
+msgstr "Dibarzhoů pennań ar c'harger loc'hań"
-#: ../../any.pm_.c:125 ../../any_new.pm_.c:125
+#: ../../any.pm_.c:151
#, fuzzy
msgid "Bootloader installation"
msgstr "Dibarzhoů pennań ar c'harger loc'hań"
-#: ../../any.pm_.c:127 ../../any_new.pm_.c:127
+#: ../../any.pm_.c:153 ../../any.pm_.c:182
msgid "Boot device"
msgstr "Trobarzhell loc'hań"
-#: ../../any.pm_.c:128 ../../any_new.pm_.c:128
+#: ../../any.pm_.c:154
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (ne da ket en-dro gant BIOSoů kozh)"
-#: ../../any.pm_.c:129 ../../any_new.pm_.c:129
+#: ../../any.pm_.c:155
msgid "Compact"
msgstr "Fetis"
-#: ../../any.pm_.c:129 ../../any_new.pm_.c:129
+#: ../../any.pm_.c:155
msgid "compact"
msgstr "fetis"
-#: ../../any.pm_.c:130 ../../any.pm_.c:199 ../../any_new.pm_.c:130
-#: ../../any_new.pm_.c:199
+#: ../../any.pm_.c:156 ../../any.pm_.c:255
msgid "Video mode"
msgstr "Mod video"
-#: ../../any.pm_.c:132 ../../any_new.pm_.c:132
+#: ../../any.pm_.c:158
msgid "Delay before booting default image"
msgstr "Gedvezh kent loc'hań ar skeudenn dre ziouer"
-#: ../../any.pm_.c:134 ../../any_new.pm_.c:134
-#: ../../install_steps_interactive.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:815 ../../netconnect.pm_.c:560
-#: ../../netconnect_new.pm_.c:686 ../../printerdrake.pm_.c:94
-#: ../../printerdrake.pm_.c:128 ../../standalone/adduserdrake_.c:42
+#: ../../any.pm_.c:160 ../../any.pm_.c:737
+#: ../../install_steps_interactive.pm_.c:904 ../../netconnect.pm_.c:627
+#: ../../printerdrake.pm_.c:98 ../../printerdrake.pm_.c:132
+#: ../../standalone/draknet_.c:567
msgid "Password"
msgstr "Tremenger"
-#: ../../any.pm_.c:135 ../../any_new.pm_.c:135
-#: ../../install_steps_interactive.pm_.c:765
-#: ../../install_steps_interactive.pm_.c:816
-#: ../../standalone/adduserdrake_.c:43
+#: ../../any.pm_.c:161 ../../any.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:905
msgid "Password (again)"
msgstr "Tremenger (adarre)"
-#: ../../any.pm_.c:136 ../../any_new.pm_.c:136
+#: ../../any.pm_.c:162
msgid "Restrict command line options"
msgstr "Strishaat dibarzhoů al linenn urzhiań"
-#: ../../any.pm_.c:136 ../../any_new.pm_.c:136
+#: ../../any.pm_.c:162
msgid "restrict"
msgstr "strishaat"
-#: ../../any.pm_.c:142 ../../any_new.pm_.c:142
-msgid "Bootloader main options"
-msgstr "Dibarzhoů pennań ar c'harger loc'hań"
+#: ../../any.pm_.c:164
+msgid "Clean /tmp at each boot"
+msgstr "Skarań /tmp bep ma loc'her"
+
+#: ../../any.pm_.c:165
+#, c-format
+msgid "Precise RAM size if needed (found %d MB)"
+msgstr "Spisait ment ar memor vev diouzh ret (kavet %d Mo)"
+
+#: ../../any.pm_.c:167
+msgid "Enable multi profiles"
+msgstr "Aotren lies trolinenn"
-#: ../../any.pm_.c:145 ../../any_new.pm_.c:145
+#: ../../any.pm_.c:171
+msgid "Give the ram size in MB"
+msgstr "Roit ment ar memor vev e Mo"
+
+#: ../../any.pm_.c:173
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "Didalvout eo ``Strishaat dibarzhoů al linenn urzhiań'' hep tremenger"
-#: ../../any.pm_.c:146 ../../any_new.pm_.c:146
-#: ../../install_steps_interactive.pm_.c:774
-#: ../../install_steps_interactive.pm_.c:829
-#: ../../standalone/adduserdrake_.c:56
+#: ../../any.pm_.c:174 ../../any.pm_.c:714
+#: ../../install_steps_interactive.pm_.c:899
msgid "Please try again"
msgstr "Klaskit adarre mar plij"
-#: ../../any.pm_.c:146 ../../any_new.pm_.c:146
-#: ../../install_steps_interactive.pm_.c:774
-#: ../../install_steps_interactive.pm_.c:829
-#: ../../standalone/adduserdrake_.c:56
+#: ../../any.pm_.c:174 ../../any.pm_.c:714
+#: ../../install_steps_interactive.pm_.c:899
msgid "The passwords do not match"
msgstr "An tremegerioů ne glot ket"
-#: ../../any.pm_.c:157 ../../any_new.pm_.c:157
+#: ../../any.pm_.c:181
+msgid "Init Message"
+msgstr ""
+
+#: ../../any.pm_.c:183
+msgid "Open Firmware Delay"
+msgstr ""
+
+#: ../../any.pm_.c:184
+msgid "Kernel Boot Timeout"
+msgstr ""
+
+#: ../../any.pm_.c:185
+msgid "Enable CD Boot?"
+msgstr ""
+
+#: ../../any.pm_.c:186
+msgid "Enable OF Boot?"
+msgstr ""
+
+#: ../../any.pm_.c:187
+#, fuzzy
+msgid "Default OS?"
+msgstr "Dre ziouer"
+
+#: ../../any.pm_.c:209
msgid ""
"Here are the different entries.\n"
"You can add some more or change the existing ones."
@@ -568,144 +627,148 @@ msgstr ""
"Setu da heul an enmontoů liesseurt.\n"
"Gallout a rit ouzhpennań lod pe gemmań a re a zo."
-#: ../../any.pm_.c:165 ../../any_new.pm_.c:165 ../../printerdrake.pm_.c:352
-#: ../../standalone/rpmdrake_.c:302
+#: ../../any.pm_.c:219 ../../printerdrake.pm_.c:356
msgid "Add"
msgstr "Ouzhpennań"
-#: ../../any.pm_.c:165 ../../any_new.pm_.c:165 ../../diskdrake.pm_.c:46
-#: ../../install_steps_interactive.pm_.c:809 ../../netconnect.pm_.c:842
-#: ../../netconnect_new.pm_.c:984 ../../printerdrake.pm_.c:352
-#: ../../standalone/adduserdrake_.c:36
+#: ../../any.pm_.c:219 ../../any.pm_.c:725 ../../diskdrake.pm_.c:46
+#: ../../printerdrake.pm_.c:356
msgid "Done"
msgstr "Graet"
-#: ../../any.pm_.c:174 ../../any_new.pm_.c:174
+#: ../../any.pm_.c:219
+#, fuzzy
+msgid "Modify"
+msgstr "Kemmań RAID"
+
+#: ../../any.pm_.c:227
msgid "Which type of entry do you want to add?"
msgstr "Pe seurt enmont a vennit ouzhpennań"
-#: ../../any.pm_.c:175 ../../any_new.pm_.c:175
+#: ../../any.pm_.c:228
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:175 ../../any_new.pm_.c:175
-#, fuzzy
+#: ../../any.pm_.c:228
msgid "Other OS (SunOS...)"
-msgstr "Reizhiadoů (windows...)"
+msgstr "Reizhiadoů (SunOS...)"
+
+#: ../../any.pm_.c:229
+msgid "Other OS (MacOS...)"
+msgstr "Reizhiadoů (MacOS...)"
-#: ../../any.pm_.c:175 ../../any_new.pm_.c:175
+#: ../../any.pm_.c:229
msgid "Other OS (windows...)"
msgstr "Reizhiadoů (windows...)"
-#: ../../any.pm_.c:196 ../../any_new.pm_.c:196
+#: ../../any.pm_.c:249 ../../any.pm_.c:251
msgid "Image"
msgstr "Skeudenn"
-#: ../../any.pm_.c:197 ../../any.pm_.c:206 ../../any_new.pm_.c:197
-#: ../../any_new.pm_.c:206
+#: ../../any.pm_.c:252 ../../any.pm_.c:263
msgid "Root"
msgstr "Gwrizienn"
-#: ../../any.pm_.c:198 ../../any_new.pm_.c:198
+#: ../../any.pm_.c:253 ../../any.pm_.c:282
msgid "Append"
msgstr "Ouzhpennań"
-#: ../../any.pm_.c:200 ../../any_new.pm_.c:200
+#: ../../any.pm_.c:257
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:201 ../../any_new.pm_.c:201
+#: ../../any.pm_.c:258
msgid "Read-write"
msgstr "Lenn-skrivań "
-#: ../../any.pm_.c:208 ../../any_new.pm_.c:208
+#: ../../any.pm_.c:265
msgid "Table"
msgstr "Taolenn"
-#: ../../any.pm_.c:209 ../../any_new.pm_.c:209
+#: ../../any.pm_.c:266
msgid "Unsafe"
msgstr "Arvarus"
-#: ../../any.pm_.c:215 ../../any_new.pm_.c:215
+#: ../../any.pm_.c:273 ../../any.pm_.c:278 ../../any.pm_.c:281
msgid "Label"
msgstr "Skridennad"
-#: ../../any.pm_.c:217 ../../any_new.pm_.c:217
+#: ../../any.pm_.c:275 ../../any.pm_.c:286
msgid "Default"
msgstr "Dre ziouer"
-#: ../../any.pm_.c:220 ../../any_new.pm_.c:220 ../../install_gtk.pm_.c:82
-#: ../../install_steps_interactive.pm_.c:762 ../../interactive.pm_.c:76
-#: ../../interactive.pm_.c:86 ../../interactive.pm_.c:250
-#: ../../interactive_newt.pm_.c:51 ../../interactive_newt.pm_.c:99
-#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:243
-#: ../../my_gtk.pm_.c:486 ../../my_gtk.pm_.c:661 ../../printerdrake.pm_.c:444
-#: ../../printerdrake.pm_.c:464
-msgid "Ok"
-msgstr "Mat eo"
+#: ../../any.pm_.c:283
+#, fuzzy
+msgid "Initrd-size"
+msgstr "Initrd"
-#: ../../any.pm_.c:220 ../../any_new.pm_.c:220
+#: ../../any.pm_.c:285
+msgid "NoVideo"
+msgstr ""
+
+#: ../../any.pm_.c:293
msgid "Remove entry"
msgstr "Dilemel an enmont"
-#: ../../any.pm_.c:223 ../../any_new.pm_.c:223
+#: ../../any.pm_.c:296
msgid "Empty label not allowed"
msgstr "Berzet eo ar skridennadoů goullo"
-#: ../../any.pm_.c:224 ../../any_new.pm_.c:224
+#: ../../any.pm_.c:297
msgid "This label is already used"
msgstr "En implij eo ar skridennad-se endeo"
-#: ../../any.pm_.c:500 ../../any_new.pm_.c:492
+#: ../../any.pm_.c:316
+#, fuzzy
+msgid "What type of partitioning?"
+msgstr "Peseurt moullerez hoc'h eus ?"
+
+#: ../../any.pm_.c:604
#, c-format
msgid "Found %s %s interfaces"
msgstr "Kavet etrefas %s %s"
-#: ../../any.pm_.c:501 ../../any_new.pm_.c:493
+#: ../../any.pm_.c:605
msgid "Do you have another one?"
msgstr "Hag un all hoc'h eus ?"
-#: ../../any.pm_.c:502 ../../any_new.pm_.c:494
+#: ../../any.pm_.c:606
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Hag un etrefas %s bennak a zo ganeoc'h ?"
-#: ../../any.pm_.c:504 ../../any_new.pm_.c:496 ../../interactive.pm_.c:81
-#: ../../my_gtk.pm_.c:485 ../../netconnect.pm_.c:90 ../../netconnect.pm_.c:470
-#: ../../netconnect_new.pm_.c:148 ../../netconnect_new.pm_.c:509
-#: ../../printerdrake.pm_.c:233
+#: ../../any.pm_.c:608 ../../interactive.pm_.c:100 ../../my_gtk.pm_.c:615
+#: ../../printerdrake.pm_.c:237
msgid "No"
msgstr "Ket"
-#: ../../any.pm_.c:504 ../../any_new.pm_.c:496 ../../interactive.pm_.c:81
-#: ../../my_gtk.pm_.c:485 ../../netconnect.pm_.c:88 ../../netconnect.pm_.c:468
-#: ../../netconnect_new.pm_.c:146 ../../netconnect_new.pm_.c:507
+#: ../../any.pm_.c:608 ../../interactive.pm_.c:100 ../../my_gtk.pm_.c:615
msgid "Yes"
msgstr "Ya"
-#: ../../any.pm_.c:505 ../../any_new.pm_.c:497
+#: ../../any.pm_.c:609
msgid "See hardware info"
msgstr "Gwelet titouroů periantel"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:522 ../../any_new.pm_.c:533
+#: ../../any.pm_.c:644
#, c-format
msgid "Installing driver for %s card %s"
msgstr "O staliań ur sturier evit kartenn %s %s"
-#: ../../any.pm_.c:523 ../../any_new.pm_.c:534
+#: ../../any.pm_.c:645
#, c-format
msgid "(module %s)"
msgstr "(mollad %s)"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:534 ../../any_new.pm_.c:545
+#: ../../any.pm_.c:656
#, c-format
msgid "Which %s driver should I try?"
msgstr "Pe sturier %s a zlefen amprouiń ?"
-#: ../../any.pm_.c:542 ../../any_new.pm_.c:553
+#: ../../any.pm_.c:664
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -724,20 +787,20 @@ msgstr ""
"urzhiataer,\n"
"hogen ne raio reuz ebet."
-#: ../../any.pm_.c:547 ../../any_new.pm_.c:558
+#: ../../any.pm_.c:669
msgid "Autoprobe"
msgstr "Embrouiń"
-#: ../../any.pm_.c:547 ../../any_new.pm_.c:558
+#: ../../any.pm_.c:669
msgid "Specify options"
msgstr "Spisait dibarzhoů"
-#: ../../any.pm_.c:551 ../../any_new.pm_.c:562
+#: ../../any.pm_.c:673
#, c-format
msgid "You may now provide its options to module %s."
msgstr "Bremań e c'hellit pourvezań e zibarzhoů d'ar mollad %s"
-#: ../../any.pm_.c:557 ../../any_new.pm_.c:568
+#: ../../any.pm_.c:679
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -748,11 +811,11 @@ msgstr ""
"Diouzh ar furmad ``anv=talvoud anv2=talvoud2...'' eo an dibaboů.\n"
"Da skouer, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:560 ../../any_new.pm_.c:571
+#: ../../any.pm_.c:682
msgid "Module options:"
msgstr "Dibarzhoů ar mollad :"
-#: ../../any.pm_.c:570 ../../any_new.pm_.c:581
+#: ../../any.pm_.c:693
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -761,12 +824,94 @@ msgstr ""
"Kargań ar mollad %s a zo sac'het.\n"
"Mennout a rit klask adarre gant arventennoů all ?"
+#: ../../any.pm_.c:711
+#, c-format
+msgid "(already added %s)"
+msgstr "(ouzhpennet %s endeo)"
+
+#: ../../any.pm_.c:715
+msgid "This password is too simple"
+msgstr "Re eeun eo an tremeger"
+
+#: ../../any.pm_.c:716
+msgid "Please give a user name"
+msgstr "Roit un anv arveriad mar plij"
+
+#: ../../any.pm_.c:717
+msgid ""
+"The user name must contain only lower cased letters, numbers, `-' and `_'"
+msgstr ""
+"An anv arveriad a zle bezań ennań lizherennoů munut, sifroů, `-' ha `_' "
+"hepken"
+
+#: ../../any.pm_.c:718
+msgid "This user name is already added"
+msgstr "En implij eo an anv arveriad-se endeo"
+
+#: ../../any.pm_.c:722
+msgid "Add user"
+msgstr "Ouzhpennań un arveriad"
+
+#: ../../any.pm_.c:723
+#, c-format
+msgid ""
+"Enter a user\n"
+"%s"
+msgstr ""
+"Skrivit un arveriad\n"
+"%s"
+
+#: ../../any.pm_.c:724
+msgid "Accept user"
+msgstr "Aotren an arveriad"
+
+#: ../../any.pm_.c:735
+msgid "Real name"
+msgstr "Anv gwirion"
+
+#: ../../any.pm_.c:736 ../../printerdrake.pm_.c:97
+#: ../../printerdrake.pm_.c:131
+msgid "User name"
+msgstr "Anv arveriad"
+
+#: ../../any.pm_.c:739
+msgid "Shell"
+msgstr "Shell"
+
+#: ../../any.pm_.c:741
+msgid "Icon"
+msgstr "Arlun"
+
+#: ../../any.pm_.c:762
+msgid "Autologin"
+msgstr ""
+
+#: ../../any.pm_.c:763
+#, fuzzy
+msgid ""
+"I can set up your computer to automatically log on one user.\n"
+"If you don't want to use this feature, click on the cancel button."
+msgstr ""
+"Kefluniań ho urzhiataer evit lańsań X ent emgefreek pa loc'ho a c'hellań.\n"
+"Mennout a rit lańsań X pa adloc'hit ?"
+
+#: ../../any.pm_.c:765
+#, fuzzy
+msgid "Choose the default user:"
+msgstr "Dibabit ar ment nevez"
+
+#: ../../any.pm_.c:766
+#, fuzzy
+msgid "Choose the window manager to run:"
+msgstr "Dibabit ar benveg a vennit staliań"
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#
-#: ../../bootloader.pm_.c:234
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#: ../../bootloader.pm_.c:262
#, fuzzy, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -791,56 +936,237 @@ msgstr ""
# The lines must fit on screen, aka length < 80
# and only one line per string for the GRUB messages
#
-#: ../../bootloader.pm_.c:596
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#: ../../bootloader.pm_.c:795
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Degemer mat e GRUB an dibaber reizhiad oberia¤ !"
-#: ../../bootloader.pm_.c:597
+#: ../../bootloader.pm_.c:796
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Implijit ar stokelloů %c ha %c evit diuz pe enmont zo war wel"
-#: ../../bootloader.pm_.c:598
+#: ../../bootloader.pm_.c:797
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Stokit enkas evit loc'ha¤ ar RK diuzet, 'e' evit aoza¤ an"
-#: ../../bootloader.pm_.c:599
+#: ../../bootloader.pm_.c:798
msgid "commands before booting, or 'c' for a command-line."
msgstr "urzhiado— kent loc'ha¤, pe 'c' evit ul linenn-urzhia¤."
-#: ../../bootloader.pm_.c:600
+#: ../../bootloader.pm_.c:799
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "An enmont war wel a vo loc'het ent emgefreek e %d eilenn."
-#: ../../bootloader.pm_.c:604
+#: ../../bootloader.pm_.c:803
msgid "not enough room in /boot"
msgstr ""
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:696
+#: ../../bootloader.pm_.c:895
msgid "Desktop"
msgstr "Gorretaol"
-#: ../../bootloader.pm_.c:696
+#: ../../bootloader.pm_.c:895
msgid "Start Menu"
msgstr "Meuziad Lańsań"
-#: ../../common.pm_.c:610
+#: ../../bootlook.pm_.c:46
+msgid "no help implemented yet.\n"
+msgstr ""
+
+#: ../../bootlook.pm_.c:62
+#, fuzzy
+msgid "Boot Style Configuration"
+msgstr "Kefluniadur goude staliań"
+
+#: ../../bootlook.pm_.c:79
+#, fuzzy
+msgid "/_File"
+msgstr "Restroů :\n"
+
+#: ../../bootlook.pm_.c:81
+msgid "/File/_New"
+msgstr ""
+
+#: ../../bootlook.pm_.c:82
+msgid "<control>N"
+msgstr ""
+
+#: ../../bootlook.pm_.c:84
+msgid "/File/_Open"
+msgstr ""
+
+#: ../../bootlook.pm_.c:85
+msgid "<control>O"
+msgstr ""
+
+#: ../../bootlook.pm_.c:87
+msgid "/File/_Save"
+msgstr ""
+
+#: ../../bootlook.pm_.c:88
+msgid "<control>S"
+msgstr ""
+
+#: ../../bootlook.pm_.c:90
+msgid "/File/Save _As"
+msgstr ""
+
+#: ../../bootlook.pm_.c:91
+msgid "/File/-"
+msgstr ""
+
+#: ../../bootlook.pm_.c:93
+msgid "/File/_Quit"
+msgstr ""
+
+#: ../../bootlook.pm_.c:94
+msgid "<control>Q"
+msgstr ""
+
+#: ../../bootlook.pm_.c:96
+msgid "/_Options"
+msgstr ""
+
+#: ../../bootlook.pm_.c:98
+msgid "/Options/Test"
+msgstr ""
+
+#: ../../bootlook.pm_.c:99
+msgid "/_Help"
+msgstr ""
+
+#: ../../bootlook.pm_.c:101
+msgid "/Help/_About..."
+msgstr ""
+
+#: ../../bootlook.pm_.c:111 ../../standalone/drakgw_.c:634
+#: ../../standalone/draknet_.c:262 ../../standalone/tinyfirewall_.c:57
+#, fuzzy
+msgid "Configure"
+msgstr "Kefluniań X"
+
+#: ../../bootlook.pm_.c:114
+#, fuzzy, c-format
+msgid ""
+"You are currently using %s as Boot Manager.\n"
+"Click on Configure to launch the setup wizard."
+msgstr "Lugerezh ar voullerez"
+
+#: ../../bootlook.pm_.c:121
+#, fuzzy
+msgid "Lilo/grub mode"
+msgstr "Anv domani"
+
+#: ../../bootlook.pm_.c:131
+msgid "NewStyle Categorizing Monitor"
+msgstr ""
+
+#: ../../bootlook.pm_.c:134
+#, fuzzy
+msgid "NewStyle Monitor"
+msgstr "Skramm"
+
+#: ../../bootlook.pm_.c:137
+#, fuzzy
+msgid "Traditional Monitor"
+msgstr "Kemmań ar skramm"
+
+#: ../../bootlook.pm_.c:140
+msgid "Traditional Gtk+ Monitor"
+msgstr ""
+
+#: ../../bootlook.pm_.c:144
+msgid "Launch Aurora at boot time"
+msgstr ""
+
+#: ../../bootlook.pm_.c:169
+#, fuzzy
+msgid "Boot mode"
+msgstr "Trobarzhell loc'hań"
+
+#: ../../bootlook.pm_.c:179
+msgid "Launch the X-Window system at start"
+msgstr ""
+
+#: ../../bootlook.pm_.c:187
+msgid "No, I don't want autologin"
+msgstr ""
+
+#: ../../bootlook.pm_.c:193
+msgid "Yes, I want autologin with this (user, desktop)"
+msgstr ""
+
+#: ../../bootlook.pm_.c:210
+msgid "System mode"
+msgstr ""
+
+#: ../../bootlook.pm_.c:218 ../../standalone/draknet_.c:88
+#: ../../standalone/draknet_.c:120 ../../standalone/draknet_.c:184
+#: ../../standalone/draknet_.c:302 ../../standalone/draknet_.c:394
+#: ../../standalone/draknet_.c:471 ../../standalone/draknet_.c:507
+#: ../../standalone/draknet_.c:609
+msgid "OK"
+msgstr ""
+
+#: ../../bootlook.pm_.c:220 ../../install_steps_gtk.pm_.c:576
+#: ../../interactive.pm_.c:110 ../../interactive.pm_.c:265
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:357
+#: ../../my_gtk.pm_.c:360 ../../my_gtk.pm_.c:616
+#: ../../standalone/drakgw_.c:639 ../../standalone/draknet_.c:95
+#: ../../standalone/draknet_.c:127 ../../standalone/draknet_.c:295
+#: ../../standalone/draknet_.c:483 ../../standalone/draknet_.c:623
+#: ../../standalone/tinyfirewall_.c:63
+msgid "Cancel"
+msgstr "Nullań"
+
+#: ../../bootlook.pm_.c:297
+msgid "can not open /etc/inittab for reading: $!"
+msgstr ""
+
+#: ../../bootlook.pm_.c:351
+msgid "can not open /etc/sysconfig/autologin for reading: $!"
+msgstr ""
+
+#: ../../bootlook.pm_.c:416 ../../standalone/drakboot_.c:47
+msgid "Installation of LILO failed. The following error occured:"
+msgstr "Staliadur LILO a zo sac'het. Degouezhet eo ar fazi a heul :"
+
+#: ../../common.pm_.c:634
+msgid "GB"
+msgstr ""
+
+#: ../../common.pm_.c:634
+msgid "KB"
+msgstr ""
+
+#: ../../common.pm_.c:634 ../../diskdrake.pm_.c:660
+#: ../../install_steps_graphical.pm_.c:287
+#: ../../install_steps_graphical.pm_.c:334
+msgid "MB"
+msgstr "Mo"
+
+#: ../../common.pm_.c:642
+msgid "TB"
+msgstr ""
+
+#: ../../common.pm_.c:655
#, c-format
msgid "%d minutes"
msgstr ""
-#: ../../common.pm_.c:612
+#: ../../common.pm_.c:657
msgid "1 minute"
msgstr ""
-#: ../../common.pm_.c:614
+#: ../../common.pm_.c:659
#, fuzzy, c-format
msgid "%d seconds"
msgstr "Kuitaat e %d eilenn"
-#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:427
+#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:462
msgid "Create"
msgstr "Krouiń"
@@ -848,7 +1174,7 @@ msgstr "Krouiń"
msgid "Unmount"
msgstr "Divarc'hań"
-#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:429
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:464
msgid "Delete"
msgstr "Dilemel"
@@ -856,16 +1182,16 @@ msgstr "Dilemel"
msgid "Format"
msgstr "Furmadiń"
-#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:610
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:653
msgid "Resize"
msgstr "Adventań"
-#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:427
-#: ../../diskdrake.pm_.c:480
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:462
+#: ../../diskdrake.pm_.c:518
msgid "Type"
msgstr "Seurt"
-#: ../../diskdrake.pm_.c:24 ../../diskdrake.pm_.c:500
+#: ../../diskdrake.pm_.c:24 ../../diskdrake.pm_.c:539
msgid "Mount point"
msgstr "Poent marc'hań"
@@ -905,23 +1231,23 @@ msgstr "Enrollań war bladennig"
msgid "Clear all"
msgstr "Skarań an holl"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "Format all"
msgstr "Furmadiń an holl"
-#: ../../diskdrake.pm_.c:51
+#: ../../diskdrake.pm_.c:55
msgid "Auto allocate"
msgstr "Ac'hubiń ent emgefreek"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:59
msgid "All primary partitions are used"
msgstr "Ac'hubet eo an holl barzhadurioů kentań renk"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:59
msgid "I can't add any more partition"
msgstr "N'hellan ouzpennań parzhadur ebet ken"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:59
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -929,63 +1255,61 @@ msgstr ""
"Evit kaout muioc'h a barzhadurioů, lamit unan evit ma c'hellot krouiń ur "
"parzhadur astennet mar plij"
-#: ../../diskdrake.pm_.c:57
-msgid "Rescue partition table"
-msgstr "Taolenn barzhań saveteerezh"
+#: ../../diskdrake.pm_.c:61
+msgid "Not enough space for auto-allocating"
+msgstr ""
-#: ../../diskdrake.pm_.c:58
+#: ../../diskdrake.pm_.c:63
msgid "Undo"
msgstr "Dizober"
-#: ../../diskdrake.pm_.c:59
+#: ../../diskdrake.pm_.c:64
msgid "Write partition table"
msgstr "Skrivań an daolenn barzhań"
-#: ../../diskdrake.pm_.c:60
-msgid "Reload"
-msgstr "Adkargań"
-
-#: ../../diskdrake.pm_.c:101
-msgid "loopback"
-msgstr "saveteiń"
+#: ../../diskdrake.pm_.c:65 ../../install_steps_interactive.pm_.c:185
+#, fuzzy
+msgid "More"
+msgstr "Dilec'hiań"
-#: ../../diskdrake.pm_.c:114
+#: ../../diskdrake.pm_.c:116
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake.pm_.c:114
+#: ../../diskdrake.pm_.c:116
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake.pm_.c:114
+#: ../../diskdrake.pm_.c:116
msgid "HFS"
msgstr ""
-#: ../../diskdrake.pm_.c:114
+#: ../../diskdrake.pm_.c:116
msgid "SunOS"
msgstr ""
-#: ../../diskdrake.pm_.c:114
+#: ../../diskdrake.pm_.c:116
msgid "Swap"
msgstr "Disloań"
-#: ../../diskdrake.pm_.c:115
+#: ../../diskdrake.pm_.c:117
msgid "Empty"
msgstr "Goullo"
-#: ../../diskdrake.pm_.c:115 ../../mouse.pm_.c:125
+#: ../../diskdrake.pm_.c:117 ../../install_steps_gtk.pm_.c:407
+#: ../../mouse.pm_.c:145
msgid "Other"
msgstr "All"
-#: ../../diskdrake.pm_.c:121
+#: ../../diskdrake.pm_.c:123
msgid "Filesystem types:"
msgstr "Seurt ar reizhiadoů restroů :"
-#: ../../diskdrake.pm_.c:130
+#: ../../diskdrake.pm_.c:132 ../../install_steps_gtk.pm_.c:577
msgid "Details"
msgstr "Munudoů"
-#: ../../diskdrake.pm_.c:144
+#: ../../diskdrake.pm_.c:147
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -997,17 +1321,17 @@ msgstr ""
"Aliań a ran ouzoc'h adventań ar parzhadur-se\n"
"(klikit warni, da c'houde klikit war \"Adventań\")"
-#: ../../diskdrake.pm_.c:149
+#: ../../diskdrake.pm_.c:152
msgid "Please make a backup of your data first"
msgstr "Gwarezit ho roadoů da gentań mar plij"
-#: ../../diskdrake.pm_.c:149 ../../diskdrake.pm_.c:166
-#: ../../diskdrake.pm_.c:175 ../../diskdrake.pm_.c:532
-#: ../../diskdrake.pm_.c:554
+#: ../../diskdrake.pm_.c:152 ../../diskdrake.pm_.c:170
+#: ../../diskdrake.pm_.c:179 ../../diskdrake.pm_.c:570
+#: ../../diskdrake.pm_.c:592
msgid "Read carefully!"
msgstr "Lennit aketus !"
-#: ../../diskdrake.pm_.c:152
+#: ../../diskdrake.pm_.c:155
msgid ""
"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
"enough)\n"
@@ -1017,77 +1341,81 @@ msgstr ""
"rann\n"
"a zo a-walc'h) e deroů ar bladenn"
-#: ../../diskdrake.pm_.c:166
+#: ../../diskdrake.pm_.c:170
msgid "Be careful: this operation is dangerous."
msgstr "Bezit war evezh : arvarus eo an obererezh-mań."
-#: ../../diskdrake.pm_.c:203 ../../install_steps.pm_.c:73
-#: ../../install_steps_interactive.pm_.c:38
-#: ../../install_steps_interactive.pm_.c:315 ../../standalone/diskdrake_.c:60
-#: ../../standalone/rpmdrake_.c:294 ../../standalone/rpmdrake_.c:304
+#: ../../diskdrake.pm_.c:214 ../../install_steps.pm_.c:72
+#: ../../install_steps_interactive.pm_.c:37
+#: ../../install_steps_interactive.pm_.c:322 ../../standalone/diskdrake_.c:66
msgid "Error"
msgstr "Fazi"
-#: ../../diskdrake.pm_.c:227 ../../diskdrake.pm_.c:708
+#: ../../diskdrake.pm_.c:238 ../../diskdrake.pm_.c:748
msgid "Mount point: "
msgstr "Poent marc'hań :"
-#: ../../diskdrake.pm_.c:228 ../../diskdrake.pm_.c:269
+#: ../../diskdrake.pm_.c:239 ../../diskdrake.pm_.c:298
msgid "Device: "
msgstr "Trobarzhell :"
-#: ../../diskdrake.pm_.c:229
+#: ../../diskdrake.pm_.c:240
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Lizher ar bladenn DOS : %s (diwar varteze hepken)\n"
-#: ../../diskdrake.pm_.c:230 ../../diskdrake.pm_.c:272
+#: ../../diskdrake.pm_.c:244 ../../diskdrake.pm_.c:251
+#: ../../diskdrake.pm_.c:301
msgid "Type: "
msgstr "Seurt : "
-#: ../../diskdrake.pm_.c:231
+#: ../../diskdrake.pm_.c:248
+msgid "Name: "
+msgstr "Anv: "
+
+#: ../../diskdrake.pm_.c:253
#, c-format
msgid "Start: sector %s\n"
msgstr "O kregiń : rann %s\n"
-#: ../../diskdrake.pm_.c:232
+#: ../../diskdrake.pm_.c:254
#, c-format
-msgid "Size: %d MB"
-msgstr "Ment: %d Mo"
+msgid "Size: %s"
+msgstr "Ment: %s"
-#: ../../diskdrake.pm_.c:234
+#: ../../diskdrake.pm_.c:256
#, c-format
msgid ", %s sectors"
msgstr ", %s rann"
-#: ../../diskdrake.pm_.c:236
+#: ../../diskdrake.pm_.c:258
#, c-format
msgid "Cylinder %d to cylinder %d\n"
msgstr "Kranenn %d da granenn %d\n"
-#: ../../diskdrake.pm_.c:237
+#: ../../diskdrake.pm_.c:259
msgid "Formatted\n"
msgstr "Furmadet\n"
-#: ../../diskdrake.pm_.c:238
+#: ../../diskdrake.pm_.c:260
msgid "Not formatted\n"
msgstr "Ket furmadet\n"
-#: ../../diskdrake.pm_.c:239
+#: ../../diskdrake.pm_.c:261
msgid "Mounted\n"
msgstr "Marc'het\n"
-#: ../../diskdrake.pm_.c:240
+#: ../../diskdrake.pm_.c:262
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake.pm_.c:241
+#: ../../diskdrake.pm_.c:264
#, c-format
msgid "Loopback file(s): %s\n"
msgstr "Restr(oů) saveteiń : %s\n"
-#: ../../diskdrake.pm_.c:242
+#: ../../diskdrake.pm_.c:265
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -1095,80 +1423,109 @@ msgstr ""
"Parzhadur loc'het dre ziouer\n"
" (evit loc'hań MS-DOS, ket evit lilo)\n"
-#: ../../diskdrake.pm_.c:244
+#: ../../diskdrake.pm_.c:267
#, c-format
msgid "Level %s\n"
msgstr "Live %s\n"
-#: ../../diskdrake.pm_.c:245
+#: ../../diskdrake.pm_.c:268
#, c-format
msgid "Chunk size %s\n"
msgstr "Ment diaoz %s\n"
-#: ../../diskdrake.pm_.c:246
+#: ../../diskdrake.pm_.c:269
#, c-format
msgid "RAID-disks %s\n"
msgstr "Pladennoů RAID %s\n"
-#: ../../diskdrake.pm_.c:248
+#: ../../diskdrake.pm_.c:271
#, c-format
msgid "Loopback file name: %s"
msgstr "Anv ar restr saveteiń : %s"
+#: ../../diskdrake.pm_.c:274
+msgid ""
+"\n"
+"Chances are, this partition is\n"
+"a Driver partition, you should\n"
+"probably leave it alone.\n"
+msgstr ""
+
+#: ../../diskdrake.pm_.c:277
+msgid ""
+"\n"
+"This special Bootstrap\n"
+"partition is for\n"
+"dual-booting your system.\n"
+msgstr ""
+
#
-#: ../../diskdrake.pm_.c:265
+#: ../../diskdrake.pm_.c:294
msgid "Please click on a partition"
msgstr "Klikit war ur parzhadur mar plij"
-#: ../../diskdrake.pm_.c:270
+#: ../../diskdrake.pm_.c:299
#, c-format
-msgid "Size: %d MB\n"
-msgstr "Ment: %d Mo\n"
+msgid "Size: %s\n"
+msgstr "Ment: %s\n"
-#: ../../diskdrake.pm_.c:271
+#: ../../diskdrake.pm_.c:300
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Mentoniezh : %s kranenn, %s penn, %s rann\n"
-#: ../../diskdrake.pm_.c:273
+#: ../../diskdrake.pm_.c:302
+#, c-format
+msgid "LVM-disks %s\n"
+msgstr "Pladennoů LVM %s\n"
+
+#: ../../diskdrake.pm_.c:303
#, c-format
msgid "Partition table type: %s\n"
msgstr "Seurt taolenn barzhań : %s\n"
-#: ../../diskdrake.pm_.c:274
+#: ../../diskdrake.pm_.c:304
#, c-format
msgid "on bus %d id %d\n"
msgstr "war bus %d Nn %d\n"
-#: ../../diskdrake.pm_.c:290
+#: ../../diskdrake.pm_.c:320
msgid "Mount"
msgstr "Marc'hań"
-#: ../../diskdrake.pm_.c:292
+#: ../../diskdrake.pm_.c:322
msgid "Active"
msgstr "Bevaat"
-#: ../../diskdrake.pm_.c:294
+#: ../../diskdrake.pm_.c:324
msgid "Add to RAID"
msgstr "Ouzhpennań da RAID"
-#: ../../diskdrake.pm_.c:296
+#: ../../diskdrake.pm_.c:326
msgid "Remove from RAID"
msgstr "Lemel diwar RAID"
-#: ../../diskdrake.pm_.c:298
+#: ../../diskdrake.pm_.c:328
msgid "Modify RAID"
msgstr "Kemmań RAID"
-#: ../../diskdrake.pm_.c:300
+#: ../../diskdrake.pm_.c:330
+msgid "Add to LVM"
+msgstr "Ouzhpennań da LVM"
+
+#: ../../diskdrake.pm_.c:332
+msgid "Remove from LVM"
+msgstr "Lemel diwar LVM"
+
+#: ../../diskdrake.pm_.c:334
msgid "Use for loopback"
msgstr "Implij da saveteiń"
-#: ../../diskdrake.pm_.c:307
+#: ../../diskdrake.pm_.c:341
msgid "Choose action"
msgstr "Dibabit un obererezh"
-#: ../../diskdrake.pm_.c:400
+#: ../../diskdrake.pm_.c:435
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1180,7 +1537,7 @@ msgstr ""
"Pe e implijit LILO ha ne daio ket en-dro, pe ne rit ket ha n'hoc'h eus ket "
"ezhomm a /boot"
-#: ../../diskdrake.pm_.c:404
+#: ../../diskdrake.pm_.c:439
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1194,65 +1551,65 @@ msgstr ""
"Ma vennit implijout ar merour loc'hań LILO, taolit pled da ouzhpennań ur "
"parzhadur /boot"
-#: ../../diskdrake.pm_.c:410
+#: ../../diskdrake.pm_.c:445
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"So be careful to add a /boot partition"
msgstr ""
-#: ../../diskdrake.pm_.c:427 ../../diskdrake.pm_.c:429
+#: ../../diskdrake.pm_.c:462 ../../diskdrake.pm_.c:464
#, c-format
msgid "Use ``%s'' instead"
msgstr "Grit kentoc'h gant ``%s''"
-#: ../../diskdrake.pm_.c:432
+#: ../../diskdrake.pm_.c:468
msgid "Use ``Unmount'' first"
msgstr "Implijit ``Divarc'hań'' da gentań"
-#: ../../diskdrake.pm_.c:433 ../../diskdrake.pm_.c:475
+#: ../../diskdrake.pm_.c:469 ../../diskdrake.pm_.c:513
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Goude kemmań seurt ar parzhadur %s, holl roadoů ar parzhadur-se a vo kollet"
-#: ../../diskdrake.pm_.c:445
+#: ../../diskdrake.pm_.c:481
msgid "Continue anyway?"
msgstr "Kenderc'hel evelato ?"
-#: ../../diskdrake.pm_.c:450
+#: ../../diskdrake.pm_.c:486
msgid "Quit without saving"
msgstr "Kuitaat hep enrollań"
-#: ../../diskdrake.pm_.c:450
+#: ../../diskdrake.pm_.c:486
msgid "Quit without writing the partition table?"
msgstr "Kuitaat hep skrivań an daolenn barzhań ?"
-#: ../../diskdrake.pm_.c:478
+#: ../../diskdrake.pm_.c:516
msgid "Change partition type"
msgstr "Kemmań seurt ar parzhadur"
-#: ../../diskdrake.pm_.c:479
+#: ../../diskdrake.pm_.c:517
#, fuzzy
msgid "Which filesystem do you want?"
msgstr "Pe seurt parzhadur a vennit ?"
-#: ../../diskdrake.pm_.c:482 ../../diskdrake.pm_.c:740
+#: ../../diskdrake.pm_.c:520 ../../diskdrake.pm_.c:780
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr ""
-#: ../../diskdrake.pm_.c:498
+#: ../../diskdrake.pm_.c:537
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Pelec'h e mennit marc'hań ar restr saveteiń %s ?"
-#: ../../diskdrake.pm_.c:499
+#: ../../diskdrake.pm_.c:538
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Pelec'h e mennit marc'hań an drobarzhell %s ?"
-#: ../../diskdrake.pm_.c:504
+#: ../../diskdrake.pm_.c:542
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1260,146 +1617,139 @@ msgstr ""
"N'hellan ket dizober ar poent marc'hań dre m'eo implijet ar parzhadur-se\n"
"evit saveteiń. Lamit ar saveteiń da gentań"
-#: ../../diskdrake.pm_.c:523
+#: ../../diskdrake.pm_.c:561
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Goude furmadiń ar parzhadur %s, holl roadoů ar parzhadur-se a vo kollet"
-#: ../../diskdrake.pm_.c:525
+#: ../../diskdrake.pm_.c:563
msgid "Formatting"
msgstr "O furmadiń"
-#: ../../diskdrake.pm_.c:526
+#: ../../diskdrake.pm_.c:564
#, c-format
msgid "Formatting loopback file %s"
msgstr "O furmadiń ar restr saveteiń %s"
-#: ../../diskdrake.pm_.c:527 ../../install_steps_interactive.pm_.c:402
+#: ../../diskdrake.pm_.c:565 ../../install_steps_interactive.pm_.c:430
#, c-format
msgid "Formatting partition %s"
msgstr "O furmadiń ar parzhadur %s"
-#: ../../diskdrake.pm_.c:532
+#: ../../diskdrake.pm_.c:570
msgid "After formatting all partitions,"
msgstr "Goude furmadiń an holl barzhadurioů,"
-#: ../../diskdrake.pm_.c:532
+#: ../../diskdrake.pm_.c:570
msgid "all data on these partitions will be lost"
msgstr "kollet e vo holl roadoů war ar parzhadurioů-se"
-#: ../../diskdrake.pm_.c:538
+#: ../../diskdrake.pm_.c:576
msgid "Move"
msgstr "Dilec'hiań"
-#: ../../diskdrake.pm_.c:539
+#: ../../diskdrake.pm_.c:577
msgid "Which disk do you want to move it to?"
msgstr "Da beseurt pladenn e mennit dilec'hiań ?"
-#: ../../diskdrake.pm_.c:540
+#: ../../diskdrake.pm_.c:578
msgid "Sector"
msgstr "Rann"
-#: ../../diskdrake.pm_.c:541
+#: ../../diskdrake.pm_.c:579
msgid "Which sector do you want to move it to?"
msgstr "Da beseurt rann e mennit dilec'hiań ?"
-#: ../../diskdrake.pm_.c:544
+#: ../../diskdrake.pm_.c:582
msgid "Moving"
msgstr "O tilec'hiań"
-#: ../../diskdrake.pm_.c:544
+#: ../../diskdrake.pm_.c:582
msgid "Moving partition..."
msgstr "O tilec'hiań ur parzhadur..."
-#: ../../diskdrake.pm_.c:554
+#: ../../diskdrake.pm_.c:592
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "War-nes bezań skrivet war bladenn eo taolenn barzhań an ardivink %s !"
-#: ../../diskdrake.pm_.c:556
+#: ../../diskdrake.pm_.c:594
msgid "You'll need to reboot before the modification can take place"
msgstr "Ret e vo deoc'h adloc'hań a-raok ma talvezo ar c'hemm"
-#: ../../diskdrake.pm_.c:577
+#: ../../diskdrake.pm_.c:615
msgid "Computing FAT filesystem bounds"
msgstr "O jediń bevennoů ar reizhiad restroů FAT"
-#: ../../diskdrake.pm_.c:577 ../../diskdrake.pm_.c:637
+#: ../../diskdrake.pm_.c:615 ../../diskdrake.pm_.c:680
#: ../../install_interactive.pm_.c:107
msgid "Resizing"
msgstr "Oc'h adventań"
-#: ../../diskdrake.pm_.c:600
+#: ../../diskdrake.pm_.c:643
#, fuzzy
msgid "This partition is not resizeable"
msgstr "Pe seurt parzhadur a vennit ?"
-#: ../../diskdrake.pm_.c:605
+#: ../../diskdrake.pm_.c:648
msgid "All data on this partition should be backed-up"
msgstr "Mat e vije gwareziń holl roadoů ar parzhadur-se"
-#: ../../diskdrake.pm_.c:607
+#: ../../diskdrake.pm_.c:650
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Goude adventań ar parzhadur %s e vo kollet holl roadoů ar parzhadur-se"
-#: ../../diskdrake.pm_.c:617
+#: ../../diskdrake.pm_.c:660
msgid "Choose the new size"
msgstr "Dibabit ar ment nevez"
-#: ../../diskdrake.pm_.c:617 ../../install_steps_graphical.pm_.c:287
-#: ../../install_steps_graphical.pm_.c:334
-#: ../../install_steps_interactive.pm_.c:518
-#: ../../partition_table_raw.pm_.c:101
-msgid "MB"
-msgstr "Mo"
-
-#: ../../diskdrake.pm_.c:674
+#: ../../diskdrake.pm_.c:714
msgid "Create a new partition"
msgstr "Krouiń ur parzhadur nevez"
-#: ../../diskdrake.pm_.c:700
+#: ../../diskdrake.pm_.c:740
msgid "Start sector: "
msgstr "Rann kregiń :"
-#: ../../diskdrake.pm_.c:704 ../../diskdrake.pm_.c:779
+#: ../../diskdrake.pm_.c:744 ../../diskdrake.pm_.c:819
msgid "Size in MB: "
msgstr "Ment e Mo :"
-#: ../../diskdrake.pm_.c:707 ../../diskdrake.pm_.c:782
+#: ../../diskdrake.pm_.c:747 ../../diskdrake.pm_.c:822
msgid "Filesystem type: "
msgstr "Seurt ar reizhiad restroů :"
-#: ../../diskdrake.pm_.c:710
+#: ../../diskdrake.pm_.c:750
msgid "Preference: "
msgstr "Dibarzh :"
-#: ../../diskdrake.pm_.c:758
+#: ../../diskdrake.pm_.c:798
msgid "This partition can't be used for loopback"
msgstr "N'heller ket implijout ar parzhadur-mań evit saveteiń"
-#: ../../diskdrake.pm_.c:768
+#: ../../diskdrake.pm_.c:808
msgid "Loopback"
msgstr "Saveteiń"
-#: ../../diskdrake.pm_.c:778
+#: ../../diskdrake.pm_.c:818
msgid "Loopback file name: "
msgstr "Anv ar restr saveteiń :"
-#: ../../diskdrake.pm_.c:804
+#: ../../diskdrake.pm_.c:844
msgid "File already used by another loopback, choose another one"
msgstr "Restr implijet gant ur saveteiń all endeo, dibabit unan all"
-#: ../../diskdrake.pm_.c:805
+#: ../../diskdrake.pm_.c:845
msgid "File already exists. Use it?"
msgstr "Ar restr a zo endeo. E implijout ?"
-#: ../../diskdrake.pm_.c:827 ../../diskdrake.pm_.c:843
+#: ../../diskdrake.pm_.c:867 ../../diskdrake.pm_.c:883
msgid "Select file"
msgstr "Diuzit ar restr"
-#: ../../diskdrake.pm_.c:836
+#: ../../diskdrake.pm_.c:876
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1407,11 +1757,11 @@ msgstr ""
"N'eo ket heńvel ment an daolenn barzhań gwarezet\n"
"Kenderc'hel memestra ?"
-#: ../../diskdrake.pm_.c:844
+#: ../../diskdrake.pm_.c:884
msgid "Warning"
msgstr "Ho evezh"
-#: ../../diskdrake.pm_.c:845
+#: ../../diskdrake.pm_.c:885
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1419,77 +1769,112 @@ msgstr ""
"Lakait ur bladennig el lenner\n"
"Kollet e vo holl roadoů ar bladennig-se"
-#: ../../diskdrake.pm_.c:856
+#: ../../diskdrake.pm_.c:896
msgid "Trying to rescue partition table"
msgstr "O klask assevel an daolenn barzhań"
-#: ../../diskdrake.pm_.c:867
+#: ../../diskdrake.pm_.c:905
msgid "device"
msgstr "trobarzhell"
-#: ../../diskdrake.pm_.c:868
+#: ../../diskdrake.pm_.c:906
msgid "level"
msgstr "live"
-#: ../../diskdrake.pm_.c:869
+#: ../../diskdrake.pm_.c:907
msgid "chunk size"
msgstr "ment diaoz"
-#: ../../diskdrake.pm_.c:881
+#: ../../diskdrake.pm_.c:919
msgid "Choose an existing RAID to add to"
msgstr "Dibabit da be RAID ouzhpennań"
-#: ../../diskdrake.pm_.c:882
+#: ../../diskdrake.pm_.c:920 ../../diskdrake.pm_.c:946
msgid "new"
msgstr "nevez"
+#: ../../diskdrake.pm_.c:944
+msgid "Choose an existing LVM to add to"
+msgstr "Dibabit da be LVM ouzhpennań"
+
+#: ../../diskdrake.pm_.c:949
+msgid "LVM name?"
+msgstr ""
+
+#: ../../diskdrake.pm_.c:976
+msgid "Removable media automounting"
+msgstr "Emvarc'hań ar skoroů lem/laka"
+
+#: ../../diskdrake.pm_.c:977
+msgid "Rescue partition table"
+msgstr "Taolenn barzhań saveteerezh"
+
+#: ../../diskdrake.pm_.c:979
+msgid "Reload"
+msgstr "Adkargań"
+
#: ../../fs.pm_.c:88 ../../fs.pm_.c:95 ../../fs.pm_.c:101 ../../fs.pm_.c:107
#, c-format
msgid "%s formatting of %s failed"
msgstr "furmadiń er seurt %s eus %s a zo sac'het"
-#: ../../fs.pm_.c:133
+#: ../../fs.pm_.c:135
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "N'ouzon ket penaos furmadiń %s er seurt %s"
-#: ../../fs.pm_.c:218
+#: ../../fs.pm_.c:220
msgid "mount failed: "
msgstr "marc'hań sac'het :"
-#: ../../fs.pm_.c:230
+#: ../../fs.pm_.c:232
#, c-format
msgid "error unmounting %s: %s"
msgstr "fazi en ur zivarc'hań %s : %s"
-#: ../../fsedit.pm_.c:235
+#: ../../fsedit.pm_.c:21
+#, fuzzy
+msgid "simple"
+msgstr "Restr"
+
+#: ../../fsedit.pm_.c:30
+#, fuzzy
+msgid "server"
+msgstr "servijer X"
+
+#: ../../fsedit.pm_.c:261
msgid "Mount points must begin with a leading /"
msgstr "Poentoů marc'hań a rank kregiń gant /"
-#: ../../fsedit.pm_.c:238
+#: ../../fsedit.pm_.c:264
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Bez' ez eus ur parzhadur e boent marc'hań %s endeo\n"
-#: ../../fsedit.pm_.c:246
+#: ../../fsedit.pm_.c:272
#, c-format
msgid "Circular mounts %s\n"
msgstr "Marc'hań kelc'hiek %s\n"
-#: ../../fsedit.pm_.c:258
+#: ../../fsedit.pm_.c:284
+#, c-format
+msgid "You can't use a LVM Logical Volume for mount point %s"
+msgstr ""
+
+#: ../../fsedit.pm_.c:285
msgid "This directory should remain within the root filesystem"
msgstr ""
-#: ../../fsedit.pm_.c:259
+#: ../../fsedit.pm_.c:286
msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
msgstr ""
-#: ../../fsedit.pm_.c:335
+#: ../../fsedit.pm_.c:368
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Fazi en ur zigeriń %s evit skrivań : %s"
-#: ../../fsedit.pm_.c:417
+#: ../../fsedit.pm_.c:452
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"
@@ -1498,7 +1883,7 @@ msgstr ""
"krouiń reizhiadoů restroů nevez warni. Gwiriit abeg ar gudenn-mań en ho "
"ardivinkaj mar plij "
-#: ../../fsedit.pm_.c:431
+#: ../../fsedit.pm_.c:466
msgid "You don't have any partitions!"
msgstr "N'hoc'h eus parzhadur ebet !"
@@ -1548,15 +1933,15 @@ msgid ""
"levels to install or update your\n"
"Linux-Mandrake operating system:\n"
"\n"
-"\t* Recommanded: if you have never installed a GNU/Linux operating system "
+"\t* Recommended: if you have never installed a GNU/Linux operating system "
"choose this. Installation will be\n"
"\t be very easy and you will be asked only on few questions.\n"
"\n"
"\n"
"\t* Customized: if you are familiar enough with GNU/Linux, you may choose "
"the primary usage (workstation, server,\n"
-"\t development) of your sytem. You will need to answer to more questions "
-"than in \"Recommanded\" installation\n"
+"\t development) of your system. You will need to answer to more questions "
+"than in \"Recommended\" installation\n"
"\t class, so you need to know how GNU/Linux works to choose this "
"installation class.\n"
"\n"
@@ -1778,7 +2163,7 @@ msgid ""
"hard drive.\n"
"\n"
"\n"
-" * Auto allocate:: this option allows you to automatically create Ext2 and "
+" * Auto allocate: this option allows you to automatically create Ext2 and "
"swap partitions in free space of your\n"
" hard drive.\n"
"\n"
@@ -1825,10 +2210,18 @@ msgid ""
"\n"
" * Ctrl-d to delete a partition\n"
"\n"
-" * Ctrl-m to set the mount point"
+" * Ctrl-m to set the mount point\n"
+" \n"
+"\n"
+" \n"
+"If you are installing on a PPC Machine, you will want to create a small HFS "
+"'bootstrap' partition of at least 1MB for use\n"
+"by the yaboot bootloader. If you opt to make the partition a bit larger, say "
+"50MB, you may find it a useful place to store \n"
+"a spare kernel and ramdisk image for emergency boot situations."
msgstr ""
-#: ../../help.pm_.c:218
+#: ../../help.pm_.c:224
msgid ""
"Above are listed the existing Linux partitions detected on\n"
"your hard drive. You can keep choices make by the wizard, they are good for "
@@ -1872,7 +2265,7 @@ msgid ""
"\"secondary hard drive\", etc..."
msgstr ""
-#: ../../help.pm_.c:252
+#: ../../help.pm_.c:258
msgid ""
"Choose the hard drive you want to erase to install your\n"
"new Linux-Mandrake partition. Be careful, all data present on it will be "
@@ -1880,7 +2273,7 @@ msgid ""
"and will not be recoverable."
msgstr ""
-#: ../../help.pm_.c:257
+#: ../../help.pm_.c:263
msgid ""
"Click on \"OK\" if you want to delete all data and\n"
"partitions present on this hard drive. Be careful, after clicking on \"OK\", "
@@ -1894,7 +2287,7 @@ msgid ""
"partitions present on this hard drive."
msgstr ""
-#: ../../help.pm_.c:267
+#: ../../help.pm_.c:273
msgid ""
"More than one Microsoft Windows partition have been\n"
"detected on your hard drive. Please choose the one you want resize to "
@@ -1936,11 +2329,11 @@ msgid ""
"or partition is called \"C:\")."
msgstr ""
-#: ../../help.pm_.c:300
+#: ../../help.pm_.c:306
msgid "Please be patient. This operation can take several minutes."
msgstr ""
-#: ../../help.pm_.c:303
+#: ../../help.pm_.c:309
msgid ""
"Any partitions that have been newly defined must be\n"
"formatted for use (formatting meaning creating a filesystem).\n"
@@ -1974,7 +2367,7 @@ msgid ""
"Linux-Mandrake operating system."
msgstr ""
-#: ../../help.pm_.c:329
+#: ../../help.pm_.c:335
#, fuzzy
msgid ""
"You may now select the group of packages you wish to\n"
@@ -2003,7 +2396,7 @@ msgstr ""
"\"Diuz pakadoů unan hag unan\" ; en degouezh-se e vo ret deoc'h furchal\n"
"a-dreuz tremen 1000 pakad..."
-#: ../../help.pm_.c:341
+#: ../../help.pm_.c:347
msgid ""
"You can now choose individually all the packages you\n"
"wish to install.\n"
@@ -2024,7 +2417,7 @@ msgid ""
"unselect several other packages which depend on it."
msgstr ""
-#: ../../help.pm_.c:358
+#: ../../help.pm_.c:364
#, fuzzy
msgid ""
"If you have all the CDs in the list above, click Ok. If you have\n"
@@ -2036,7 +2429,7 @@ msgstr ""
"Ma n'hoc'h eus hini eus ar CDoů-se, gwaskit Nullań.\n"
"Ma fazi deoc'h lod eus ar CDoů, andiuzit anezho ha gwaskit Mat eo."
-#: ../../help.pm_.c:363
+#: ../../help.pm_.c:369
msgid ""
"Your new Linux-Mandrake operating system is currently being\n"
"installed. This operation should take a few minutes (it depends on size you\n"
@@ -2046,14 +2439,14 @@ msgid ""
"Please be patient."
msgstr ""
-#: ../../help.pm_.c:371
+#: ../../help.pm_.c:377
msgid ""
"You can now test your mouse. Use buttons and wheel to verify\n"
"if settings are good. If not, you can click on \"Cancel\" to choose another\n"
"driver."
msgstr ""
-#: ../../help.pm_.c:376
+#: ../../help.pm_.c:382
#, fuzzy
msgid ""
"Please select the correct port. For example, the COM1\n"
@@ -2062,7 +2455,7 @@ msgstr ""
"Diuzit ar porzh a zere mar plij. Da skouer, porzh COM1 dindan MS Windows\n"
"a vez anvet ttyS0 gant Linux."
-#: ../../help.pm_.c:380
+#: ../../help.pm_.c:386
msgid ""
"If you wish to connect your computer to the Internet or\n"
"to a local network please choose the correct option. Please turn on your "
@@ -2080,7 +2473,7 @@ msgid ""
"finished to configure your network connection, choose \"Done\"."
msgstr ""
-#: ../../help.pm_.c:393
+#: ../../help.pm_.c:399
msgid ""
"No modem has been detected. Please select the serial port on which it is "
"plugged.\n"
@@ -2090,7 +2483,7 @@ msgid ""
"Windows) is called \"ttyS0\" under Linux."
msgstr ""
-#: ../../help.pm_.c:400
+#: ../../help.pm_.c:406
msgid ""
"You may now enter dialup options. If you don't know\n"
"or are not sure what to enter, the correct informations can be obtained "
@@ -2101,17 +2494,17 @@ msgid ""
"Provider at connection time."
msgstr ""
-#: ../../help.pm_.c:407
+#: ../../help.pm_.c:413
msgid ""
"If your modem is an external modem, please turn on it now to let DrakX "
"detect it automatically."
msgstr ""
-#: ../../help.pm_.c:410
+#: ../../help.pm_.c:416
msgid "Please turn on your modem and choose the correct one."
msgstr ""
-#: ../../help.pm_.c:413
+#: ../../help.pm_.c:419
msgid ""
"If you are not sure if informations above are\n"
"correct or if you don't know or are not sure what to enter, the correct\n"
@@ -2122,7 +2515,7 @@ msgid ""
"from your Internet Service Provider at connection time."
msgstr ""
-#: ../../help.pm_.c:420
+#: ../../help.pm_.c:426
#, fuzzy
msgid ""
"You may now enter your host name if needed. If you\n"
@@ -2132,7 +2525,7 @@ msgstr ""
"Gallout a rit bremań skrivań dibarzhoů sifrennań. Ma n'oc'h ket sur petra\n"
"skrivań, an titouroů reizh ho po digant ho PMG."
-#: ../../help.pm_.c:425
+#: ../../help.pm_.c:431
#, fuzzy
msgid ""
"You may now configure your network device.\n"
@@ -2166,7 +2559,7 @@ msgstr ""
"IP\".\n"
"M'hoc'h eus douetańs, goulennit digant merour ho rouedad.\n"
-#: ../../help.pm_.c:437
+#: ../../help.pm_.c:443
#, fuzzy
msgid ""
"You may now enter your host name if needed. If you\n"
@@ -2176,13 +2569,13 @@ msgstr ""
"goulennit\n"
"digant merour ho rouedad."
-#: ../../help.pm_.c:441
+#: ../../help.pm_.c:447
msgid ""
"You may now enter your host name if needed. If you\n"
"don't know or are not sure what to enter, leave blank."
msgstr ""
-#: ../../help.pm_.c:445
+#: ../../help.pm_.c:451
msgid ""
"You may now enter dialup options. If you're not sure what to enter, the\n"
"correct information can be obtained from your ISP."
@@ -2190,7 +2583,7 @@ msgstr ""
"Gallout a rit bremań skrivań dibarzhoů sifrennań. Ma n'oc'h ket sur petra\n"
"skrivań, an titouroů reizh ho po digant ho PMG."
-#: ../../help.pm_.c:449
+#: ../../help.pm_.c:455
msgid ""
"If you will use proxies, please configure them now. If you don't know if\n"
"you should use proxies, ask your network administrator or your ISP."
@@ -2198,7 +2591,7 @@ msgstr ""
"Ma implijit proksioů, keflugnit anezho bremań mar plij. Ma ne ouzit ket hag\n"
"e rankit implijout proksioů, goulennit digant merour ho rouedad pe ho PMG."
-#: ../../help.pm_.c:453
+#: ../../help.pm_.c:459
#, fuzzy
msgid ""
"You can install cryptographic package if your internet connection has been\n"
@@ -2218,11 +2611,11 @@ msgstr ""
"Taolit evezh e rankit diuz ar melezour hag ar rinegouriezh hervez al\n"
"lezennoů o ren du-se."
-#: ../../help.pm_.c:462
+#: ../../help.pm_.c:468
msgid "You can now select your timezone according to where you live."
msgstr ""
-#: ../../help.pm_.c:465
+#: ../../help.pm_.c:471
#, fuzzy
msgid ""
"GNU/Linux manages time in GMT (Greenwich Manage\n"
@@ -2238,7 +2631,7 @@ msgstr ""
"Linux a vera an eur e GMT pe \"Greenwich Mean Time\" hag e amdreiń a ra\n"
"en eur lec'hel hervez an takad-eur hoc'h eus diuzet."
-#: ../../help.pm_.c:473
+#: ../../help.pm_.c:479
#, fuzzy
msgid ""
"You may now choose which services you want to start at boot time.\n"
@@ -2264,13 +2657,13 @@ msgstr ""
"ket\n"
"c'hoant."
-#: ../../help.pm_.c:486
+#: ../../help.pm_.c:492
msgid ""
"You can configure a local printer (connected to your computer) or remote\n"
"printer (accessible via a Unix, Netware or Microsoft Windows network)."
msgstr ""
-#: ../../help.pm_.c:490
+#: ../../help.pm_.c:496
msgid ""
"If you wish to be able to print, please choose one printing system between\n"
"CUPS and LPR.\n"
@@ -2289,7 +2682,7 @@ msgid ""
"If you don't have printer, click on \"None\"."
msgstr ""
-#: ../../help.pm_.c:505
+#: ../../help.pm_.c:511
msgid ""
"GNU/Linux can deal with many types of printer. Each of these types requires\n"
"a different setup.\n"
@@ -2308,7 +2701,7 @@ msgid ""
"(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
msgstr ""
-#: ../../help.pm_.c:521
+#: ../../help.pm_.c:527
msgid ""
"Please turn on your printer before continuing to let DrakX detect it.\n"
"\n"
@@ -2334,7 +2727,7 @@ msgid ""
" you want, for example \"2nd floor\").\n"
msgstr ""
-#: ../../help.pm_.c:542
+#: ../../help.pm_.c:548
msgid ""
"You need to enter some informations here.\n"
"\n"
@@ -2368,7 +2761,7 @@ msgid ""
"\"NetWare\".\n"
msgstr ""
-#: ../../help.pm_.c:567
+#: ../../help.pm_.c:573
msgid ""
"Your printer has not been detected. Please enter the name of the device on\n"
"which it is connected.\n"
@@ -2380,11 +2773,11 @@ msgid ""
"Windows."
msgstr ""
-#: ../../help.pm_.c:575
+#: ../../help.pm_.c:581
msgid "You must now select your printer in the above list."
msgstr ""
-#: ../../help.pm_.c:578
+#: ../../help.pm_.c:584
msgid ""
"Please select the right options according to your printer.\n"
"Please see its documentation if you don't know what choose here.\n"
@@ -2394,7 +2787,7 @@ msgid ""
"able to modify it if it doesn't work as you want."
msgstr ""
-#: ../../help.pm_.c:585
+#: ../../help.pm_.c:591
#, fuzzy
msgid ""
"You can now enter the root password for your Linux-Mandrake system.\n"
@@ -2433,7 +2826,7 @@ msgstr ""
"pe re luziet, memestra : dav eo deoc'h kaout sońj anezhań hep re a\n"
"strivoů."
-#: ../../help.pm_.c:603
+#: ../../help.pm_.c:609
msgid ""
"To enable a more secure system, you should select \"Use shadow file\" and\n"
"\"Use MD5 passwords\"."
@@ -2442,7 +2835,7 @@ msgstr ""
"kuzhet\"\n"
"hag \"Implijout tremegerioů MD5\"."
-#: ../../help.pm_.c:607
+#: ../../help.pm_.c:613
msgid ""
"If your network uses NIS, select \"Use NIS\". If you don't know, ask your\n"
"network administrator."
@@ -2451,7 +2844,7 @@ msgstr ""
"goulennit\n"
"digant merour ho rouedad."
-#: ../../help.pm_.c:611
+#: ../../help.pm_.c:617
msgid ""
"You may now create one or more \"regular\" user account(s), as\n"
"opposed to the \"privileged\" user account, root. You can create\n"
@@ -2495,14 +2888,14 @@ msgstr ""
"gont arveriad ho po krouet amań, hag ereań evel root evit kefridioů a\n"
"vererezh ha trezerc'hel hepken."
-#: ../../help.pm_.c:630
+#: ../../help.pm_.c:636
msgid ""
"Creating a boot disk is strongly recommended. If you can't\n"
"boot your computer, it's the only way to rescue your system without\n"
"reinstalling it."
msgstr ""
-#: ../../help.pm_.c:635
+#: ../../help.pm_.c:641
#, fuzzy
msgid ""
"You need to indicate where you wish\n"
@@ -2519,7 +2912,7 @@ msgstr ""
"Nemet ma ouifec'h resis ar pezh a rit, dibabit \"Rann gentań\n"
"ar bladenn (MBR)\"."
-#: ../../help.pm_.c:643
+#: ../../help.pm_.c:649
msgid ""
"Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
" (primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
@@ -2527,7 +2920,7 @@ msgstr ""
"Nemet ma ouifec'h a-zevri ez eo disheńvel, \"/dev/hda\" eo an dibab boas\n"
"(pladenn IDE mestr kentań) pe \"/dev/sda\" (pladenn SCSI kentań)."
-#: ../../help.pm_.c:647
+#: ../../help.pm_.c:653
#, fuzzy
msgid ""
"LILO (the LInux LOader) and Grub are bootloaders: they are able to boot\n"
@@ -2554,7 +2947,7 @@ msgstr ""
"Hogen\n"
"neuze e vo ret deoc'h kaout ur bladennig loc'hań evit loc'hań anezho."
-#: ../../help.pm_.c:659
+#: ../../help.pm_.c:665
#, fuzzy
msgid ""
"LILO and grub main options are:\n"
@@ -2575,7 +2968,22 @@ msgid ""
"\n"
" * normal: select normal 80x25 text mode.\n"
"\n"
-" * <number>: use the corresponding text mode."
+" * <number>: use the corresponding text mode.\n"
+"\n"
+"\n"
+" - Clean \"/tmp\" at each boot: if you want delete all files and "
+"directories\n"
+"stored in \"/tmp\" when you boot your system, select this option.\n"
+"\n"
+"\n"
+" - Precise RAM if needed: unfortunately, there is no standard method to ask "
+"the\n"
+"BIOS about the amount of RAM present in your computer. As consequence, Linux "
+"may\n"
+"fail to detect your amount of RAM correctly. If this is the case, you can\n"
+"specify the correct amount or RAM here. Please note that a difference of 2 "
+"or 4\n"
+"MB between detected memory and memory present in your system is normal."
msgstr ""
"Setu dibaboů pennań LILO ha grub :\n"
" - Trobarzhell loc'hań : a dermen anv an drobarzhell (da sk. parzhadur\n"
@@ -2597,7 +3005,130 @@ msgstr ""
" * boas : a ziuz ar mod skrid 80x25 boas.\n"
" * <niver> : a implij ar mod skrid a zegouezh."
-#: ../../help.pm_.c:680
+#: ../../help.pm_.c:697
+msgid ""
+"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able\n"
+"to boot either GNU/Linux, MacOS, or MacOSX, if present on your computer.\n"
+"Normally, these other operating systems are correctly detected and\n"
+"installed. If this is not the case, you can add an entry by hand in this\n"
+"screen. Be careful as to choose the correct parameters.\n"
+"\n"
+"\n"
+"Yaboot main options are:\n"
+"\n"
+"\n"
+" - Init Message: A simple text message that is displayed before the boot\n"
+"prompt.\n"
+"\n"
+"\n"
+" - Boot Device: Indicate where you want to place the information required "
+"to \n"
+"boot to GNU/Linux. Generally, you will have setup a bootstrap partition "
+"earlier \n"
+"to hold this information.\n"
+"\n"
+"\n"
+" - Open Firmware Delay: Unlike LILO, there are two delays available with \n"
+"yaboot. The first delay is measured in seconds and at this point you can \n"
+"choose between CD, OF boot, MacOS, or Linux.\n"
+"\n"
+"\n"
+" - Kernel Boot Timeout: This timeout is similar to the LILO boot delay. "
+"After \n"
+"selecting Linux, you will have this delay in 0.1 seconds before your "
+"default\n"
+"kernel description is selected.\n"
+"\n"
+"\n"
+" - Enable CD Boot?: Checking this option will allow you to choose 'C' for "
+"CD at\n"
+"the first boot prompt.\n"
+"\n"
+"\n"
+" - Enable OF Boot?: Checking this option will allow you to choose 'N' for "
+"Open\n"
+"Firmware at the first boot prompt.\n"
+"\n"
+"\n"
+" - Default OS: You can select which OS will boot by default when the Open "
+"Firmware \n"
+"Delay expires."
+msgstr ""
+
+#: ../../help.pm_.c:738
+msgid ""
+"You can add additional entries for yaboot, either for other operating "
+"systems,\n"
+"alternate kernels, or for an emergency boot image.\n"
+"\n"
+"\n"
+"For other OS's - the entry consists only of a label and the root partition.\n"
+"\n"
+"\n"
+"For Linux, there are a few possible options: \n"
+"\n"
+"\n"
+" - Label: This is simply the name will type at the yaboot prompt to select "
+"this \n"
+"boot option.\n"
+"\n"
+"\n"
+" - Image: This would be the name of the kernel to boot. Typically vmlinux "
+"or\n"
+"a variation of vmlinux with an extension.\n"
+"\n"
+"\n"
+" - Root: The root device or '/' for your Linux installation.\n"
+"\n"
+"\n"
+" \n"
+" - Append: On Apple hardware, the kernel append option is used quite often "
+"to\n"
+"assist in initializing video hardware, or to enable keyboard mouse button "
+"emulation\n"
+"for the often lacking 2nd and 3rd mouse buttons on a stock Apple mouse. The "
+"following \n"
+"are some examples:\n"
+"\n"
+"\n"
+"\t\t video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+"hda=autotune\n"
+"\n"
+"\t\t video=atyfb:vmode:12,cmode:24 adb_buttons=103,111 \n"
+"\n"
+"\n"
+" \n"
+" - Initrd: This option can be used either to load initial modules, before "
+"the boot \n"
+"device is available, or to load a ramdisk image for an emergency boot "
+"situation.\n"
+"\n"
+"\n"
+" - Initrd-size: The default ramdisk size is generally 4096 bytes. If you "
+"should need\n"
+"to allocate a large ramdisk, this option can be used.\n"
+"\n"
+"\n"
+" - Read-write: Normally the 'root' partition is initially brought up "
+"read-only, to allow\n"
+"a filesystem check before the system becomes 'live'. You can override this "
+"option here.\n"
+"\n"
+"\n"
+" - NoVideo: Should the Apple video hardware prove to be exceptionally "
+"problematic, you can\n"
+"select this option to boot in 'novideo' mode, with native framebuffer "
+"support.\n"
+"\n"
+"\n"
+" - Default: Selects this entry as being the default Linux selection, "
+"selectable by just\n"
+"pressing ENTER at the yaboot prompt. This entry will also be highlighted "
+"with a '*', if you\n"
+"press TAB to see the boot selections."
+msgstr ""
+
+#: ../../help.pm_.c:793
#, fuzzy
msgid ""
"SILO is a bootloader for SPARC: it is able to boot\n"
@@ -2624,7 +3155,7 @@ msgstr ""
"Hogen\n"
"neuze e vo ret deoc'h kaout ur bladennig loc'hań evit loc'hań anezho."
-#: ../../help.pm_.c:692
+#: ../../help.pm_.c:805
#, fuzzy
msgid ""
"SILO main options are:\n"
@@ -2659,7 +3190,7 @@ msgstr ""
" * boas : a ziuz ar mod skrid 80x25 boas.\n"
" * <niver> : a implij ar mod skrid a zegouezh."
-#: ../../help.pm_.c:705
+#: ../../help.pm_.c:818
#, fuzzy
msgid ""
"Now it's time to configure the X Window System, which is the\n"
@@ -2686,7 +3217,7 @@ msgstr ""
"sellet ha plijet oc'h gant an dibarzhoů. Ma n'oc'h ket, e c'hellit\n"
"mont war gil hag o c'hemmań, ken lies gwech ha ma karot."
-#: ../../help.pm_.c:718
+#: ../../help.pm_.c:831
msgid ""
"If something is wrong in X configuration, use these options to correctly\n"
"configure the X Window System."
@@ -2694,7 +3225,7 @@ msgstr ""
"M'eo siek un dra bennak en ho kefluniadur X, implijit an dibarzhoů-se\n"
"a-benn kefluniań reizh ar reizhiad X Window."
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:835
msgid ""
"If you prefer to use a graphical login, select \"Yes\". Otherwise, select\n"
"\"No\"."
@@ -2702,88 +3233,15 @@ msgstr ""
"Ma kavit gwelloc'h implijout un ereadur grafikel, diuzit \"Ya\". Mod all,\n"
"diuzit \"Ket\"."
-#: ../../help.pm_.c:726
-#, fuzzy
+#: ../../help.pm_.c:839
msgid ""
-"You can now select some miscellaneous options for your system.\n"
-"\n"
-"* Use hard drive optimizations: this option can improve hard disk "
-"performance but is only for advanced users. Some buggy\n"
-" chipsets can ruin your data, so beware. Note that the kernel has a builtin "
-"blacklist of drives and chipsets, but if\n"
-" you want to avoid bad surprises, leave this option unset.\n"
-"\n"
-"\n"
-"* Choose security level: you can choose a security level for your system. "
-"Please refer to the manual for complete\n"
+"You can choose a security level for your system. Please refer to the manual "
+"for complete\n"
" information. Basically, if you don't know what to choose, keep the default "
"option.\n"
-"\n"
-"\n"
-"* Precise RAM if needed: unfortunately, there is no standard method to ask "
-"the BIOS about the amount of RAM present in\n"
-" your computer. As consequence, Linux may fail to detect your amount of RAM "
-"correctly. If this is the case, you can\n"
-" specify the correct amount or RAM here. Please note that a difference of 2 "
-"or 4 MB between detected memory and memory\n"
-" present in your system is normal.\n"
-"\n"
-"\n"
-"* Removable media automounting: if you would prefer not to manually mount "
-"removable media (CD-Rom, floppy, Zip, etc.) by\n"
-" typing \"mount\" and \"umount\", select this option.\n"
-"\n"
-"\n"
-"* Clean \"/tmp\" at each boot: if you want delete all files and directories "
-"stored in \"/tmp\" when you boot your system,\n"
-" select this option.\n"
-"\n"
-"\n"
-"* Enable num lock at startup: if you want NumLock key enabled after booting, "
-"select this option. Please note that you\n"
-" should not enable this option on laptops and that NumLock may or may not "
-"work under X."
msgstr ""
-"Gallout a rit bremań diuz bibarzhoů a bep seurt evit ho reizhiad.\n"
-"\n"
-" - Implijit gwellaennoů ar bladenn galet : Gwellaat dehaezadur ar bladenn "
-"galet\n"
-" a c'hell an dibarzh-mań, evit implijerien barrek hepken : amredoů "
-"dreinek a\n"
-" c'hell freuziń ho roadoů, diwallit 'ta. Ur roll parzhoů siek a zeu gant "
-"ar\n"
-" graońiell, laoskit an dibarzh didermenet avat evit bezań kuit a "
-"souezhadenn.\n"
-"\n"
-" - Dibabit al live surentez : Gallout a rit dibab ul live surentez evit ho\n"
-" reizhiad. Sellit en dornlevr evit muioc'h a ditouroů mar plij. Dre vras "
-":\n"
-" ma ne ouzit ket, diuzit \"Etre\" ; ma vennit da vat kaout un ardivink "
-"sur\n"
-" dibabit \"Ankeniet\" met taolit evezh : EL LIVE-SE, N'EO KET AOTREET "
-"EREAŃ\n"
-" EVEL ROOT WAR AL LETRIN ! Ma vennit bezań root, e rankit ereań evel\n"
-" arverdiad hag implijout \"su\" da c'houde. Pelloc'h, na sońjit ket\n"
-" implijout ho ardivink estreget evel servijer. Grit ho sońj.\n"
-"\n"
-" - Spisait RAM diouzh ret : siwazh gant PCoů hiziv, n'eus ket a hentenn\n"
-" standard evit atersiń ar BIOS a-zivout ar c'hementad a RAM hegerz war "
-"ho\n"
-" urzhiataer. Da heul, Linux a c'hell na zinoiń reizh ho kementad a RAM.\n"
-" M'eo kont evel-se e c'hellit spisaat amań ar c'hementad a RAM a zere.\n"
-" Ho evezh : un diforzh a 2 pe 4Mo a zo reizh.\n"
-"\n"
-" - Emvarc'hań ar media lem-laka : Ma gavit gwelloc'h na varc'hań dre an "
-"dorn\n"
-" ar pladennoů lem-laka (CD-ROM, pladennig, Zip) dre urzhiań \"mount\" "
-"hag\n"
-" \"umount\", diuzit an dibarzh-mań.\n"
-"\n"
-" - Enaouiń KrouilhNiv pa loc'her : ma gavit mat KrouilhNiv enaouet pa "
-"loc'her\n"
-" diuzit an dibarzh-mań (Evezh : ne daio ket en-dro dre ret dindan X)."
-
-#: ../../help.pm_.c:755
+
+#: ../../help.pm_.c:844
msgid ""
"Your system is going to reboot.\n"
"\n"
@@ -2799,106 +3257,141 @@ msgstr ""
"ouzhpenn\n"
"mar plij."
-#: ../../install2.pm_.c:40
+#: ../../install2.pm_.c:39
msgid "Choose your language"
msgstr "Dibabit ho yezh"
-#: ../../install2.pm_.c:41
+#: ../../install2.pm_.c:40
msgid "Select installation class"
msgstr "Diuzit renkad ar staliadur"
-#: ../../install2.pm_.c:42
+#: ../../install2.pm_.c:41
msgid "Hard drive detection"
msgstr "Dinoiń ar bladenn galet"
-#: ../../install2.pm_.c:43
+#: ../../install2.pm_.c:42
msgid "Configure mouse"
msgstr "Kefluniań al logodenn"
-#: ../../install2.pm_.c:44
+#: ../../install2.pm_.c:43
msgid "Choose your keyboard"
msgstr "Dibabit ho stokellaoueg"
-#: ../../install2.pm_.c:45 ../../install_steps_interactive.pm_.c:497
-msgid "Miscellaneous"
-msgstr "A bep seurt"
+#: ../../install2.pm_.c:44
+#, fuzzy
+msgid "Security"
+msgstr "rodellek"
-#: ../../install2.pm_.c:46
+#: ../../install2.pm_.c:45
msgid "Setup filesystems"
msgstr "Kefluniań reizhiadoů restroů"
-#: ../../install2.pm_.c:47
+#: ../../install2.pm_.c:46
msgid "Format partitions"
msgstr "Furmadiń parzhadurioů"
-#: ../../install2.pm_.c:48
+#: ../../install2.pm_.c:47
msgid "Choose packages to install"
msgstr "Dibabit pakadoů da staliań"
-#: ../../install2.pm_.c:49
+#: ../../install2.pm_.c:48
msgid "Install system"
msgstr "Staliań ar reizhiad"
+#: ../../install2.pm_.c:49 ../../install_steps_interactive.pm_.c:894
+#: ../../install_steps_interactive.pm_.c:895
+msgid "Set root password"
+msgstr "Termeniń tremenger root"
+
#: ../../install2.pm_.c:50
+msgid "Add a user"
+msgstr "Ouzhpennań un arveriad"
+
+#: ../../install2.pm_.c:51
msgid "Configure networking"
msgstr "Kefluniań ur rouedad"
-#: ../../install2.pm_.c:52
-msgid "Configure timezone"
-msgstr "Kefluniań an takad-eur"
+#: ../../install2.pm_.c:53 ../../install_steps_interactive.pm_.c:818
+msgid "Summary"
+msgstr ""
-#: ../../install2.pm_.c:53
+#: ../../install2.pm_.c:54
msgid "Configure services"
msgstr "Kefluniań servijoů"
-#: ../../install2.pm_.c:54
-msgid "Configure printer"
-msgstr "Kefluniań ar voullerez"
-
-#: ../../install2.pm_.c:55 ../../install_steps_interactive.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:763
-msgid "Set root password"
-msgstr "Termeniń tremenger root"
-
#: ../../install2.pm_.c:56
-msgid "Add a user"
-msgstr "Ouzhpennań un arveriad"
-
-#: ../../install2.pm_.c:58
msgid "Create a bootdisk"
msgstr "Krouiń ur bladennig loc'hań"
-#: ../../install2.pm_.c:60
+#: ../../install2.pm_.c:58
msgid "Install bootloader"
msgstr "Staliań ar c'harger loc'hań"
-#: ../../install2.pm_.c:61
+#: ../../install2.pm_.c:59
msgid "Configure X"
msgstr "Kefluniań X"
-#: ../../install2.pm_.c:63
-msgid "Auto install floppy"
-msgstr "Pladennig staliań emgefreek"
-
-#: ../../install2.pm_.c:65
+#: ../../install2.pm_.c:60
msgid "Exit install"
msgstr "Dilezel ar staliadur"
-#: ../../install_any.pm_.c:578
+#: ../../install_any.pm_.c:373
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They don't have any known security\n"
+"issues, but some new could be found. In that case, you must make sure to "
+"upgrade\n"
+"as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+
+#: ../../install_any.pm_.c:404
+msgid "Can't use broadcast with no NIS domain"
+msgstr "N'hellań ket implijout ar skignań hep domani NIS"
+
+#: ../../install_any.pm_.c:647
+#, fuzzy, c-format
+msgid "Insert a FAT formatted floppy in drive %s"
+msgstr "Lakait ur bladennig el lenner %s"
+
+#: ../../install_any.pm_.c:651
+msgid "This floppy is not FAT formatted"
+msgstr ""
+
+#: ../../install_any.pm_.c:661
+msgid ""
+"To use this saved packages selection, boot installation with ``linux "
+"defcfg=floppy''"
+msgstr ""
+
+#: ../../install_any.pm_.c:683
msgid "Error reading file $f"
msgstr "Fazi en ur lenn ar restr $f"
-#: ../../install_gtk.pm_.c:426
+#: ../../install_gtk.pm_.c:84 ../../install_steps_gtk.pm_.c:310
+#: ../../interactive.pm_.c:95 ../../interactive.pm_.c:110
+#: ../../interactive.pm_.c:265 ../../interactive_newt.pm_.c:166
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:356
+#: ../../my_gtk.pm_.c:616 ../../my_gtk.pm_.c:639
+msgid "Ok"
+msgstr "Mat eo"
+
+#: ../../install_gtk.pm_.c:423
#, fuzzy
msgid "Please test the mouse"
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../install_gtk.pm_.c:427
+#: ../../install_gtk.pm_.c:424
#, fuzzy
msgid "To activate the mouse,"
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../install_gtk.pm_.c:428
+#: ../../install_gtk.pm_.c:425
msgid "MOVE YOUR WHEEL!"
msgstr ""
@@ -3059,12 +3552,8 @@ msgstr "Goude adventań ar parzhadur %s e vo kollet holl roadoů ar parzhadur-se"
#: ../../install_interactive.pm_.c:165
#, fuzzy
-msgid "Expert mode"
-msgstr "Mailh"
-
-#: ../../install_interactive.pm_.c:165
-msgid "Use diskdrake"
-msgstr ""
+msgid "Custom disk partitioning"
+msgstr "O furmadiń parzhadurioů"
#: ../../install_interactive.pm_.c:169
msgid "Use fdisk"
@@ -3079,34 +3568,34 @@ msgstr ""
"Gallout a rit bremań parzhań ho pladenn galet %s\n"
"Pa 'z eo graet, na zisońjit ket enrollań dre implijout `w'"
-#: ../../install_interactive.pm_.c:196
+#: ../../install_interactive.pm_.c:201
#, fuzzy
msgid "You don't have enough free space on your Windows partition"
msgstr "N'hoc'h eus parzhadur windows ebet !"
-#: ../../install_interactive.pm_.c:211
+#: ../../install_interactive.pm_.c:217
#, fuzzy
msgid "I can't find any room for installing"
msgstr "N'hellan ouzpennań parzhadur ebet ken"
-#: ../../install_interactive.pm_.c:214
+#: ../../install_interactive.pm_.c:221
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
-#: ../../install_interactive.pm_.c:219
+#: ../../install_interactive.pm_.c:226
#, fuzzy, c-format
msgid "Partitioning failed: %s"
msgstr "Seurt taolenn barzhań : %s\n"
-#: ../../install_interactive.pm_.c:234
+#: ../../install_interactive.pm_.c:232
msgid "Bringing up the network"
msgstr "O lańsań ar rouedad"
-#: ../../install_interactive.pm_.c:239
+#: ../../install_interactive.pm_.c:237
msgid "Bringing down the network"
msgstr "O tizenaouiń ar rouedad"
-#: ../../install_steps.pm_.c:74
+#: ../../install_steps.pm_.c:73
msgid ""
"An error occurred, but I don't know how to handle it nicely.\n"
"Continue at your own risk."
@@ -3114,7 +3603,7 @@ msgstr ""
"Degouezhet ez eus ur fazi, hogen n'ouzon ket e verań naet.\n"
"Kendalc'hit war ho mar."
-#: ../../install_steps.pm_.c:202
+#: ../../install_steps.pm_.c:203
#, c-format
msgid "Duplicate mount point %s"
msgstr "Poent marc'hań doubl %s"
@@ -3127,16 +3616,16 @@ msgid ""
"Mandrake/RPMS/*.rpm\"\n"
msgstr ""
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:451
#, c-format
msgid "Welcome to %s"
msgstr "Degemer e %s"
-#: ../../install_steps.pm_.c:670
+#: ../../install_steps.pm_.c:634
msgid "No floppy drive available"
msgstr "Lenner pladennig hegerz ebet"
-#: ../../install_steps_auto_install.pm_.c:43
+#: ../../install_steps_auto_install.pm_.c:51
#: ../../install_steps_stdio.pm_.c:23
#, c-format
msgid "Entering step `%s'\n"
@@ -3150,73 +3639,71 @@ msgstr "Dibabit ar ment a vennit staliań"
msgid "Total size: "
msgstr "Ment hollek :"
-#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:353
-#: ../../standalone/rpmdrake_.c:136
+#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:437
#, c-format
msgid "Version: %s\n"
msgstr "Stumm : %s\n"
-#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:354
-#: ../../standalone/rpmdrake_.c:137
+#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:438
#, c-format
msgid "Size: %d KB\n"
msgstr "Ment : %d Ko\n"
-#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:260
+#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:520
msgid "Choose the packages you want to install"
msgstr "Dibabit ar pakadoů a vennit staliań"
-#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:263
+#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:340
msgid "Info"
msgstr "Titouroů"
-#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:268
-#: ../../install_steps_interactive.pm_.c:216 ../../standalone/rpmdrake_.c:161
+#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_interactive.pm_.c:226
msgid "Install"
msgstr "Staliań"
-#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:466
-#: ../../install_steps_interactive.pm_.c:594
+#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:558
+#: ../../install_steps_interactive.pm_.c:675
msgid "Installing"
msgstr "O staliań"
-#: ../../install_steps_graphical.pm_.c:499 ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_graphical.pm_.c:499
msgid "Please wait, "
msgstr "Gortozit mar plij,"
-#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:474
+#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:570
msgid "Time remaining "
msgstr "Amzer a chom"
-#: ../../install_steps_graphical.pm_.c:502 ../../install_steps_gtk.pm_.c:475
+#: ../../install_steps_graphical.pm_.c:502
msgid "Total time "
msgstr "Amzer hollek"
-#: ../../install_steps_graphical.pm_.c:507 ../../install_steps_gtk.pm_.c:484
-#: ../../install_steps_interactive.pm_.c:594
+#: ../../install_steps_graphical.pm_.c:507
+#: ../../install_steps_interactive.pm_.c:675
msgid "Preparing installation"
msgstr "O prientiń ar staliadur"
-#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:500
+#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:618
#, c-format
msgid "Installing package %s"
msgstr "O staliań ar pakad %s"
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:569
-#: ../../install_steps_gtk.pm_.c:573
+#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:695
+#: ../../install_steps_gtk.pm_.c:699
msgid "Go on anyway?"
msgstr "Kenderc'hel evelato ?"
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:569
+#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:695
msgid "There was an error ordering packages:"
msgstr "Ur fazi a zo bet en ur rummań pakadoů :"
#: ../../install_steps_graphical.pm_.c:577
-#: ../../install_steps_interactive.pm_.c:1003
msgid "Use existing configuration for X11?"
msgstr "Implijout ar c'hefluniadur o ren evit X11 ?"
-#: ../../install_steps_gtk.pm_.c:136
+#: ../../install_steps_gtk.pm_.c:142
msgid ""
"Your system is low on resource. You may have some problem installing\n"
"Linux-Mandrake. If that occurs, you can try a text install instead. For "
@@ -3224,17 +3711,17 @@ msgid ""
"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
-#: ../../install_steps_gtk.pm_.c:150
+#: ../../install_steps_gtk.pm_.c:156
msgid "Please, choose one of the following classes of installation:"
msgstr "Dibabit unan eus ar renkadoů staliań a-heul mar plij :"
-#: ../../install_steps_gtk.pm_.c:215
+#: ../../install_steps_gtk.pm_.c:222
#, c-format
msgid ""
"The total size for the groups you have selected is approximately %d MB.\n"
msgstr "Ment hollek ar strolladoů hoc'h eus diuzet a zo war-dro %d Mo.\n"
-#: ../../install_steps_gtk.pm_.c:217
+#: ../../install_steps_gtk.pm_.c:224
msgid ""
"If you wish to install less than this size,\n"
"select the percentage of packages that you want to install.\n"
@@ -3248,7 +3735,7 @@ msgstr ""
"Un dregantad izel a stalio hepken ar pakadoů pouezusań;\n"
"un dregantad a 100%% a stalio an holl bakadoů diuzet."
-#: ../../install_steps_gtk.pm_.c:222
+#: ../../install_steps_gtk.pm_.c:229
msgid ""
"You have space on your disk for only %d%% of these packages.\n"
"\n"
@@ -3264,78 +3751,86 @@ msgstr ""
"Un dregantad izel a stalio hepken ar pakadoů pouezusań;\n"
"un dregantad a %d%% a stalio kement a bakadoů ma 'z eus tu."
-#: ../../install_steps_gtk.pm_.c:228
+#: ../../install_steps_gtk.pm_.c:235
msgid "You will be able to choose them more specifically in the next step."
msgstr "Tu vo deoc'h o dibab spisoc'h el lankad a zeu."
-#: ../../install_steps_gtk.pm_.c:230
+#: ../../install_steps_gtk.pm_.c:237
msgid "Percentage of packages to install"
msgstr "Dregantad a bakadoů da staliań"
-#: ../../install_steps_gtk.pm_.c:272
-msgid "Automatic dependencies"
-msgstr "Sujedigezh emgefreek"
+#: ../../install_steps_gtk.pm_.c:285 ../../install_steps_interactive.pm_.c:599
+msgid "Package Group Selection"
+msgstr "Diuzadenn strollad pakadoů"
-#: ../../install_steps_gtk.pm_.c:332 ../../standalone/rpmdrake_.c:101
+#: ../../install_steps_gtk.pm_.c:305 ../../install_steps_interactive.pm_.c:614
+msgid "Individual package selection"
+msgstr "Diuz pakadoů unan hag unan"
+
+#: ../../install_steps_gtk.pm_.c:349
+msgid "Show automatically selected packages"
+msgstr ""
+
+#: ../../install_steps_gtk.pm_.c:416
msgid "Expand Tree"
msgstr "Astenn ar wezenn"
-#: ../../install_steps_gtk.pm_.c:333 ../../standalone/rpmdrake_.c:102
+#: ../../install_steps_gtk.pm_.c:417
msgid "Collapse Tree"
msgstr "Plegań ar wezenn"
-#: ../../install_steps_gtk.pm_.c:334
+#: ../../install_steps_gtk.pm_.c:418
msgid "Toggle between flat and group sorted"
msgstr "Gwintań etre kompez ha rummet dre strollad"
-#: ../../install_steps_gtk.pm_.c:351
+#: ../../install_steps_gtk.pm_.c:435
msgid "Bad package"
msgstr "Pakad siek"
-#: ../../install_steps_gtk.pm_.c:352
+#: ../../install_steps_gtk.pm_.c:436
#, c-format
msgid "Name: %s\n"
msgstr "Anv: %s\n"
-#: ../../install_steps_gtk.pm_.c:355
+#: ../../install_steps_gtk.pm_.c:439
#, c-format
msgid "Importance: %s\n"
msgstr "Talvoudegezh : %s\n"
-#: ../../install_steps_gtk.pm_.c:363
+#: ../../install_steps_gtk.pm_.c:448 ../../install_steps_interactive.pm_.c:578
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Ment hollek : %d / %d Mo"
-#: ../../install_steps_gtk.pm_.c:382
+#: ../../install_steps_gtk.pm_.c:467
#, fuzzy
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr "N'hellit ket andiuz ar pakad-mań. Staliet eo endo"
-#: ../../install_steps_gtk.pm_.c:386
+#: ../../install_steps_gtk.pm_.c:471
#, fuzzy
msgid "The following packages are going to be installed"
msgstr "Ar pakadoů a-heul a zo war-nes bezań distaliet"
-#: ../../install_steps_gtk.pm_.c:387
+#: ../../install_steps_gtk.pm_.c:472
#, fuzzy
msgid "The following packages are going to be removed"
msgstr "Ar pakadoů a-heul a zo war-nes bezań staliet/lamet"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:482
msgid "You can't select/unselect this package"
msgstr "N'hellit ket diuz/andiuz ar pakad-mań"
-#: ../../install_steps_gtk.pm_.c:416
+#: ../../install_steps_gtk.pm_.c:501
msgid "This is a mandatory package, it can't be unselected"
msgstr "Hemań a zo ur pakad ret, n'hell ket bezań andiuzet"
-#: ../../install_steps_gtk.pm_.c:418
+#: ../../install_steps_gtk.pm_.c:503
msgid "You can't unselect this package. It is already installed"
msgstr "N'hellit ket andiuz ar pakad-mań. Staliet eo endo"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:507
msgid ""
"This package must be upgraded\n"
"Are you sure you want to deselect it?"
@@ -3343,27 +3838,25 @@ msgstr ""
"Bremanaet e tle bezań ar pabak-mań\n"
"Ha sur oc'h e mennit e ziuzań ?"
-#: ../../install_steps_gtk.pm_.c:425
+#: ../../install_steps_gtk.pm_.c:510
msgid "You can't unselect this package. It must be upgraded"
msgstr "N'hellit ket andiuz ar pakad-mań. Ret eo dezhań bezań bremanaet"
-#: ../../install_steps_gtk.pm_.c:469
+#: ../../install_steps_gtk.pm_.c:563
msgid "Estimating"
msgstr "O vrasjediń"
-#: ../../install_steps_gtk.pm_.c:481 ../../interactive.pm_.c:86
-#: ../../interactive.pm_.c:249 ../../interactive_newt.pm_.c:51
-#: ../../interactive_newt.pm_.c:99 ../../interactive_stdio.pm_.c:27
-#: ../../my_gtk.pm_.c:246 ../../my_gtk.pm_.c:486
-msgid "Cancel"
-msgstr "Nullań"
+#: ../../install_steps_gtk.pm_.c:582
+#, fuzzy
+msgid "Please wait, preparing installation"
+msgstr "O prientiń ar staliadur"
-#: ../../install_steps_gtk.pm_.c:495
+#: ../../install_steps_gtk.pm_.c:613
#, c-format
msgid "%d packages"
msgstr "%d pakad"
-#: ../../install_steps_gtk.pm_.c:531
+#: ../../install_steps_gtk.pm_.c:652
msgid ""
"\n"
"Warning\n"
@@ -3395,12 +3888,17 @@ msgid ""
"copyright laws applicable to software programs.\n"
msgstr ""
-#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+#: ../../install_steps_gtk.pm_.c:680 ../../install_steps_interactive.pm_.c:163
#, fuzzy
msgid "Accept"
msgstr "Aotren an arveriad"
-#: ../../install_steps_gtk.pm_.c:559
+#: ../../install_steps_gtk.pm_.c:680 ../../install_steps_interactive.pm_.c:163
+#, fuzzy
+msgid "Refuse"
+msgstr "Adventań"
+
+#: ../../install_steps_gtk.pm_.c:681
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -3415,28 +3913,32 @@ msgstr ""
"eo da c'houde.\n"
"Ma n'emań ket ganeoc'h gwaskit Nullań evit chom hep staliań ar Cd-Rom-se."
-#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
-#, fuzzy
-msgid "Refuse"
-msgstr "Adventań"
-
-#: ../../install_steps_gtk.pm_.c:573
+#: ../../install_steps_gtk.pm_.c:699
msgid "There was an error installing packages:"
msgstr "Ur fazi a zo bet en ur staliań ar pakadoů :"
-#: ../../install_steps_interactive.pm_.c:38
+#: ../../install_steps_interactive.pm_.c:37
msgid "An error occurred"
msgstr "Ur fazi a zo bet"
-#: ../../install_steps_interactive.pm_.c:54
+#: ../../install_steps_interactive.pm_.c:55
msgid "Please, choose a language to use."
msgstr "Diuzit ar yezh da implijout, mar plij."
-#: ../../install_steps_interactive.pm_.c:70
+#: ../../install_steps_interactive.pm_.c:56
+msgid "You can choose other languages that will be available after install"
+msgstr "Gallout a rit dibab yezhoů all hag a vo hegerz goude staliań"
+
+#: ../../install_steps_interactive.pm_.c:68
+#: ../../install_steps_interactive.pm_.c:613
+msgid "All"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:86
msgid "License agreement"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:71
+#: ../../install_steps_interactive.pm_.c:87
msgid ""
"Introduction\n"
"\n"
@@ -3557,134 +4059,106 @@ msgid ""
"For any question on this document, please contact MandrakeSoft S.A. \n"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:154
-#: ../../standalone/keyboarddrake_.c:21
+#: ../../install_steps_interactive.pm_.c:182
+#: ../../install_steps_interactive.pm_.c:822
+#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Stokellaoueg"
-#: ../../install_steps_interactive.pm_.c:155
-#: ../../standalone/keyboarddrake_.c:22
+#: ../../install_steps_interactive.pm_.c:183
+#: ../../standalone/keyboarddrake_.c:29
msgid "Please, choose your keyboard layout."
msgstr "Dibabit reizhadur ho stokellaoueg, mar plij."
-#: ../../install_steps_interactive.pm_.c:166
-msgid "You can choose other languages that will be available after install"
-msgstr "Gallout a rit dibab yezhoů all hag a vo hegerz goude staliań"
-
-#: ../../install_steps_interactive.pm_.c:173
-#: ../../install_steps_interactive.pm_.c:520
-msgid "All"
+#: ../../install_steps_interactive.pm_.c:184
+msgid "Here is the full list of keyboards available"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:181
-#: ../../install_steps_interactive.pm_.c:227
+#: ../../install_steps_interactive.pm_.c:201
msgid "Install Class"
msgstr "Renkad staliań"
-#: ../../install_steps_interactive.pm_.c:181
+#: ../../install_steps_interactive.pm_.c:201
msgid "Which installation class do you want?"
msgstr "Pe renkad staliań a fell deoc'h ?"
-#: ../../install_steps_interactive.pm_.c:183
+#: ../../install_steps_interactive.pm_.c:203
#, fuzzy
msgid "Install/Update"
msgstr "Staliań/Bremanaat"
-#: ../../install_steps_interactive.pm_.c:183
+#: ../../install_steps_interactive.pm_.c:203
#, fuzzy
msgid "Is this an install or an update?"
msgstr "Hag ur staliadur pe ur bremanadur eo ?"
-#: ../../install_steps_interactive.pm_.c:192
+#: ../../install_steps_interactive.pm_.c:212
msgid "Recommended"
msgstr "Erbedet"
-#: ../../install_steps_interactive.pm_.c:195
-#: ../../install_steps_interactive.pm_.c:211
-msgid "Customized"
-msgstr "Neuziet"
-
-#: ../../install_steps_interactive.pm_.c:196
-#: ../../install_steps_interactive.pm_.c:211
+#: ../../install_steps_interactive.pm_.c:215
+#: ../../install_steps_interactive.pm_.c:218
msgid "Expert"
msgstr "Mailh"
-#: ../../install_steps_interactive.pm_.c:206
-#, fuzzy
-msgid ""
-"Are you sure you are an expert? \n"
-"You will be allowed to make powerful but dangerous things here.\n"
-"\n"
-"You will be asked questions such as: ``Use shadow file for passwords?'',\n"
-"are you ready to answer that kind of questions?"
-msgstr ""
-"Ha sur oc'h bezań ur mailh ? \n"
-"Na rit ket goap, traoů galloudus hogen arvarus a vo aotreet deoc'h amań."
-
-#: ../../install_steps_interactive.pm_.c:216
+#: ../../install_steps_interactive.pm_.c:226
#, fuzzy
msgid "Update"
msgstr "Bremanaat"
-#: ../../install_steps_interactive.pm_.c:222
-#, fuzzy
-msgid "Workstation"
-msgstr "Titouroů"
-
-#: ../../install_steps_interactive.pm_.c:223
-msgid "Development"
-msgstr "Diorren"
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Server"
-msgstr "Servijer"
-
-#: ../../install_steps_interactive.pm_.c:228
-#, fuzzy
-msgid "What is your system used for?"
-msgstr "Pe seurt a vo implij ho reizhiad ?"
-
-#: ../../install_steps_interactive.pm_.c:244 ../../standalone/mousedrake_.c:24
+#: ../../install_steps_interactive.pm_.c:238 ../../standalone/mousedrake_.c:31
msgid "Please, choose the type of your mouse."
msgstr "Dibabit seurt ho logodenn, mar plij."
-#: ../../install_steps_interactive.pm_.c:251 ../../standalone/mousedrake_.c:40
+#: ../../install_steps_interactive.pm_.c:244 ../../standalone/mousedrake_.c:46
msgid "Mouse Port"
msgstr "Porzh al logodenn"
-#: ../../install_steps_interactive.pm_.c:252
+#: ../../install_steps_interactive.pm_.c:245 ../../standalone/mousedrake_.c:47
msgid "Please choose on which serial port your mouse is connected to."
msgstr "Dibabit ar porzh a-steud m'eo luget ho logodenn outań, mar plij."
-#: ../../install_steps_interactive.pm_.c:271
+#: ../../install_steps_interactive.pm_.c:253
+msgid "Buttons emulation"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:255
+msgid "Button 2 Emulation"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:256
+msgid "Button 3 Emulation"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:275
msgid "Configuring PCMCIA cards..."
msgstr "O kefluniań kartennoů PCMCIA..."
-#: ../../install_steps_interactive.pm_.c:271
+#: ../../install_steps_interactive.pm_.c:275
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:275
+#: ../../install_steps_interactive.pm_.c:280
msgid "Configuring IDE"
msgstr "Kefluniań IDE"
-#: ../../install_steps_interactive.pm_.c:275
+#: ../../install_steps_interactive.pm_.c:280
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:288
+#: ../../install_steps_interactive.pm_.c:295
msgid "no available partitions"
msgstr "parzhadur hegerz ebet"
-#: ../../install_steps_interactive.pm_.c:291
+#: ../../install_steps_interactive.pm_.c:298
msgid "Scanning partitions to find mount points"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:299
+#: ../../install_steps_interactive.pm_.c:306
msgid "Choose the mount points"
msgstr "Dibabit at poentoů marc'hań"
-#: ../../install_steps_interactive.pm_.c:316
+#: ../../install_steps_interactive.pm_.c:323
#, fuzzy, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -3697,7 +4171,7 @@ msgstr ""
"N'hellań ket lenn ho taolenn barzhań, re vrein eo evidon :(\n"
"Klask a rin kenderc'hel en ur ziverkań ar parzhadurioů siek"
-#: ../../install_steps_interactive.pm_.c:329
+#: ../../install_steps_interactive.pm_.c:336
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -3705,87 +4179,78 @@ msgstr ""
"Ne c'hellas ket DiskDrake lenn ent reizh an daolenn barzhań.\n"
"Kendalc'hit war ho mar !"
-#: ../../install_steps_interactive.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:361
msgid "Root Partition"
msgstr "Parzhadur gwrizienn"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:362
msgid "What is the root partition (/) of your system?"
msgstr "Pehini eo parzhadur gwrizienn (/) ho reizhiad ?"
-#: ../../install_steps_interactive.pm_.c:352
+#: ../../install_steps_interactive.pm_.c:376
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Ret eo deoc'h adloc'hań evit ma talvezo kemmoů an daolenn barzhań"
-#: ../../install_steps_interactive.pm_.c:376
+#: ../../install_steps_interactive.pm_.c:403
msgid "Choose the partitions you want to format"
msgstr "Dibabit ar parzhadur a vennit furmadiń"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:404
msgid "Check bad blocks?"
msgstr "Gwiriań ar bloc'hoů siek ?"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:427
msgid "Formatting partitions"
msgstr "O furmadiń parzhadurioů"
-#: ../../install_steps_interactive.pm_.c:401
+#: ../../install_steps_interactive.pm_.c:429
#, c-format
msgid "Creating and formatting file %s"
msgstr "O krouiń hag o furmadiń ar restr saveteiń %s"
-#: ../../install_steps_interactive.pm_.c:404
+#: ../../install_steps_interactive.pm_.c:432
msgid "Not enough swap to fulfill installation, please add some"
msgstr "Ket a-walc'h a zisloań evit peurstaliań, kreskit anezhań mar plij"
-#: ../../install_steps_interactive.pm_.c:410
+#: ../../install_steps_interactive.pm_.c:438
msgid "Looking for available packages"
msgstr "O klask ar pakadoů hegerz"
-#: ../../install_steps_interactive.pm_.c:416
+#: ../../install_steps_interactive.pm_.c:444
msgid "Finding packages to upgrade"
msgstr "O kavout pakadoů da vremanaat"
-#: ../../install_steps_interactive.pm_.c:433
+#: ../../install_steps_interactive.pm_.c:461
#, fuzzy, c-format
msgid ""
"Your system has not enough space left for installation or upgrade (%d > %d)"
msgstr "Ho reizhiad n'eus ket wa-walc'h a egor evit staliań pe vremanaat"
-#: ../../install_steps_interactive.pm_.c:449
+#: ../../install_steps_interactive.pm_.c:480
#, fuzzy, c-format
msgid "Complete (%dMB)"
msgstr "Boas"
-#: ../../install_steps_interactive.pm_.c:449
+#: ../../install_steps_interactive.pm_.c:480
#, fuzzy, c-format
msgid "Minimum (%dMB)"
msgstr "(%d Mo)"
-#: ../../install_steps_interactive.pm_.c:449
+#: ../../install_steps_interactive.pm_.c:480
#, fuzzy, c-format
msgid "Recommended (%dMB)"
msgstr "Erbedet"
-#: ../../install_steps_interactive.pm_.c:455
+#: ../../install_steps_interactive.pm_.c:486
#, fuzzy
msgid "Custom"
msgstr "Neuziet"
-#: ../../install_steps_interactive.pm_.c:462
-#, fuzzy
-msgid "Select the size you want to install"
-msgstr "Dibabit ar ment a vennit staliań"
-
-#: ../../install_steps_interactive.pm_.c:508
-msgid "Package Group Selection"
-msgstr "Diuzadenn strollad pakadoů"
-
-#: ../../install_steps_interactive.pm_.c:521
-msgid "Individual package selection"
-msgstr "Diuz pakadoů unan hag unan"
+#: ../../install_steps_interactive.pm_.c:585
+msgid "Selected size is larger than available space"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:570
+#: ../../install_steps_interactive.pm_.c:650
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -3795,12 +4260,12 @@ msgstr ""
"Ma n'hoc'h eus hini eus ar CDoů-se, gwaskit Nullań.\n"
"Ma fazi deoc'h lod eus ar CDoů, andiuzit anezho ha gwaskit Mat eo."
-#: ../../install_steps_interactive.pm_.c:575
+#: ../../install_steps_interactive.pm_.c:655
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Cd-Rom skridennet \"%s\""
-#: ../../install_steps_interactive.pm_.c:603
+#: ../../install_steps_interactive.pm_.c:684
msgid ""
"Installing package %s\n"
"%d%%"
@@ -3808,11 +4273,11 @@ msgstr ""
"O staliań ar pakad %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:612
+#: ../../install_steps_interactive.pm_.c:693
msgid "Post-install configuration"
msgstr "Kefluniadur goude staliań"
-#: ../../install_steps_interactive.pm_.c:637
+#: ../../install_steps_interactive.pm_.c:718
msgid ""
"You have now the possibility to download software aimed for encryption.\n"
"\n"
@@ -3884,147 +4349,98 @@ msgstr ""
"Altadena California 91001\n"
"SUA"
-#: ../../install_steps_interactive.pm_.c:669
+#: ../../install_steps_interactive.pm_.c:750
msgid "Choose a mirror from which to get the packages"
msgstr "Dibabit ur melezour da dapout ar pakadoů diwarnań"
-#: ../../install_steps_interactive.pm_.c:680
+#: ../../install_steps_interactive.pm_.c:761
msgid "Contacting the mirror to get the list of available packages"
msgstr "O taremprediń ar melezour evit kaout roll ar pakadoů hegerz"
-#: ../../install_steps_interactive.pm_.c:683
+#: ../../install_steps_interactive.pm_.c:764
msgid "Please choose the packages you want to install."
msgstr "Dibabit ar pakadoů a vennit staliań, mar plij."
-#: ../../install_steps_interactive.pm_.c:695
+#: ../../install_steps_interactive.pm_.c:776
#, fuzzy
msgid "Which is your timezone?"
msgstr "Pe seurt a vo implij ho reizhiad ?"
-#: ../../install_steps_interactive.pm_.c:697
+#: ../../install_steps_interactive.pm_.c:778
msgid "Is your hardware clock set to GMT?"
msgstr "Ha war GMT eo lakaet ho eurier periantel ?"
-#: ../../install_steps_interactive.pm_.c:735
+#: ../../install_steps_interactive.pm_.c:806 ../../printer.pm_.c:22
+#: ../../printerdrake.pm_.c:415
+#, fuzzy
+msgid "Remote CUPS server"
+msgstr "Steud a-bell"
+
+#: ../../install_steps_interactive.pm_.c:807
+#, fuzzy
+msgid "No printer"
+msgstr "Moullerez lec'hel"
+
+#: ../../install_steps_interactive.pm_.c:821
+#, fuzzy
+msgid "Mouse"
+msgstr "Logodenn USB"
+
+#: ../../install_steps_interactive.pm_.c:823
+msgid "Timezone"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:824 ../../printerdrake.pm_.c:344
+msgid "Printer"
+msgstr "Moullerez"
+
+#: ../../install_steps_interactive.pm_.c:826
+msgid "ISDN card"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:829
+msgid "Sound card"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:832
+msgid "TV card"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:862
#, fuzzy
msgid "Which printing system do you want to use?"
msgstr "Pe seurt parzhadur a vennit ?"
-#: ../../install_steps_interactive.pm_.c:762
+#: ../../install_steps_interactive.pm_.c:896
msgid "No password"
msgstr "Tremenger ebet"
-#: ../../install_steps_interactive.pm_.c:767
-msgid "Use shadow file"
-msgstr "Implijout ur restr kuzhet"
-
-#: ../../install_steps_interactive.pm_.c:767
-msgid "shadow"
-msgstr "kuzhet"
-
-#: ../../install_steps_interactive.pm_.c:768
-msgid "MD5"
-msgstr "MD5"
-
-#: ../../install_steps_interactive.pm_.c:768
-msgid "Use MD5 passwords"
-msgstr "Implijout tremegerioů MD5"
+#: ../../install_steps_interactive.pm_.c:901
+#, c-format
+msgid "This password is too simple (must be at least %d characters long)"
+msgstr "Re eeun eo an tremenger-se (%d arouezenn a zo ret d'an nebeutań)"
-#: ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:907
msgid "Use NIS"
msgstr "Implijout NIS"
-#: ../../install_steps_interactive.pm_.c:770
+#: ../../install_steps_interactive.pm_.c:907
msgid "yellow pages"
msgstr "pajennoů melen"
-#: ../../install_steps_interactive.pm_.c:776
-#, c-format
-msgid "This password is too simple (must be at least %d characters long)"
-msgstr "Re eeun eo an tremenger-se (%d arouezenn a zo ret d'an nebeutań)"
-
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:912
msgid "Authentification NIS"
msgstr "Dilesadur NIS"
-#: ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_interactive.pm_.c:913
msgid "NIS Domain"
msgstr "Domani NIS"
-#: ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_interactive.pm_.c:914
msgid "NIS Server"
msgstr "Servijer NIS"
-#: ../../install_steps_interactive.pm_.c:809
-#: ../../standalone/adduserdrake_.c:36
-msgid "Accept user"
-msgstr "Aotren an arveriad"
-
-#: ../../install_steps_interactive.pm_.c:809
-#: ../../standalone/adduserdrake_.c:36
-msgid "Add user"
-msgstr "Ouzhpennań un arveriad"
-
-#: ../../install_steps_interactive.pm_.c:810
-#: ../../standalone/adduserdrake_.c:37
-#, c-format
-msgid "(already added %s)"
-msgstr "(ouzhpennet %s endeo)"
-
-#: ../../install_steps_interactive.pm_.c:810
-#: ../../standalone/adduserdrake_.c:37
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Skrivit un arveriad\n"
-"%s"
-
-#: ../../install_steps_interactive.pm_.c:812
-#: ../../standalone/adduserdrake_.c:39
-msgid "Real name"
-msgstr "Anv gwirion"
-
-#: ../../install_steps_interactive.pm_.c:813 ../../printerdrake.pm_.c:93
-#: ../../printerdrake.pm_.c:127 ../../standalone/adduserdrake_.c:40
-msgid "User name"
-msgstr "Anv arveriad"
-
-#: ../../install_steps_interactive.pm_.c:818
-#: ../../standalone/adduserdrake_.c:45
-msgid "Shell"
-msgstr "Shell"
-
-#: ../../install_steps_interactive.pm_.c:820
-#: ../../standalone/adduserdrake_.c:47
-msgid "Icon"
-msgstr "Arlun"
-
-#: ../../install_steps_interactive.pm_.c:830
-#: ../../standalone/adduserdrake_.c:57
-msgid "This password is too simple"
-msgstr "Re eeun eo an tremeger"
-
-#: ../../install_steps_interactive.pm_.c:831
-#: ../../standalone/adduserdrake_.c:58
-msgid "Please give a user name"
-msgstr "Roit un anv arveriad mar plij"
-
-#: ../../install_steps_interactive.pm_.c:832
-#: ../../standalone/adduserdrake_.c:59
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr ""
-"An anv arveriad a zle bezań ennań lizherennoů munut, sifroů, `-' ha `_' "
-"hepken"
-
-#: ../../install_steps_interactive.pm_.c:833
-#: ../../standalone/adduserdrake_.c:60
-msgid "This user name is already added"
-msgstr "En implij eo an anv arveriad-se endeo"
-
-#: ../../install_steps_interactive.pm_.c:857
+#: ../../install_steps_interactive.pm_.c:948
#, fuzzy
msgid ""
"A custom bootdisk provides a way of booting into your Linux system without\n"
@@ -4054,19 +4470,19 @@ msgstr ""
"evit\n"
"ho reizhiad ?"
-#: ../../install_steps_interactive.pm_.c:873
+#: ../../install_steps_interactive.pm_.c:964
msgid "First floppy drive"
msgstr "Lenner pladennig kentań"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:965
msgid "Second floppy drive"
msgstr "Eil lenner pladennig"
-#: ../../install_steps_interactive.pm_.c:875
+#: ../../install_steps_interactive.pm_.c:966
msgid "Skip"
msgstr "Tremen e-biou"
-#: ../../install_steps_interactive.pm_.c:880
+#: ../../install_steps_interactive.pm_.c:971
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 "
@@ -4091,34 +4507,34 @@ msgstr ""
"evit\n"
"ho reizhiad ?"
-#: ../../install_steps_interactive.pm_.c:889
+#: ../../install_steps_interactive.pm_.c:980
msgid "Sorry, no floppy drive available"
msgstr "Ho tigarez, lenner pladennig hegerz ebet"
-#: ../../install_steps_interactive.pm_.c:892
+#: ../../install_steps_interactive.pm_.c:984
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Dibabit al lenner pladennig a vennit implijout evit ober ar bladenn loc'hań"
-#: ../../install_steps_interactive.pm_.c:898
+#: ../../install_steps_interactive.pm_.c:988
#, c-format
msgid "Insert a floppy in drive %s"
msgstr "Lakait ur bladennig el lenner %s"
-#: ../../install_steps_interactive.pm_.c:901
+#: ../../install_steps_interactive.pm_.c:991
msgid "Creating bootdisk"
msgstr "O krouiń ar bladenn loc'hań"
-#: ../../install_steps_interactive.pm_.c:908
+#: ../../install_steps_interactive.pm_.c:998
msgid "Preparing bootloader"
msgstr "O prientiń ar c'harger loc'hań"
-#: ../../install_steps_interactive.pm_.c:917
+#: ../../install_steps_interactive.pm_.c:1007
#, fuzzy
msgid "Do you want to use aboot?"
msgstr "Mennout a rit implijout SILO ?"
-#: ../../install_steps_interactive.pm_.c:920
+#: ../../install_steps_interactive.pm_.c:1010
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -4126,110 +4542,52 @@ msgstr ""
"Fazi en ur staliań aboot,\n"
"klask rediań ar staliadur zoken ma tistruj ar parzhadur kentań ?"
-#: ../../install_steps_interactive.pm_.c:929
+#: ../../install_steps_interactive.pm_.c:1019
#, fuzzy
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Staliadur LILO a zo sac'het. Degouezhet eo ar fazi a heul :"
-#: ../../install_steps_interactive.pm_.c:943 ../../standalone/draksec_.c:20
-msgid "Welcome To Crackers"
-msgstr "Bezit deuet mat, preizherien !"
-
-#: ../../install_steps_interactive.pm_.c:944 ../../standalone/draksec_.c:21
-msgid "Poor"
-msgstr "Paour"
+#: ../../install_steps_interactive.pm_.c:1027
+msgid ""
+"You may need to change your Open Firmware boot-device to\n"
+" enable the bootloader. If you don't see the bootloader prompt at\n"
+" reboot, hold down Command-Option-O-F at reboot and enter:\n"
+" setenv boot-device $of_boot,\\\\tbxi\n"
+" Then type: shut-down\n"
+"At your next boot you should see the bootloader prompt."
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:945 ../../standalone/draksec_.c:22
+#: ../../install_steps_interactive.pm_.c:1035 ../../standalone/draksec_.c:23
msgid "Low"
msgstr "Izel"
-#: ../../install_steps_interactive.pm_.c:946 ../../standalone/draksec_.c:23
+#: ../../install_steps_interactive.pm_.c:1036 ../../standalone/draksec_.c:24
msgid "Medium"
msgstr "Etre"
-#: ../../install_steps_interactive.pm_.c:947 ../../standalone/draksec_.c:24
+#: ../../install_steps_interactive.pm_.c:1037 ../../standalone/draksec_.c:25
msgid "High"
msgstr "Uhel"
-#: ../../install_steps_interactive.pm_.c:948 ../../standalone/draksec_.c:25
-msgid "Paranoid"
-msgstr "Ankeniet"
-
-#: ../../install_steps_interactive.pm_.c:962
-msgid "Miscellaneous questions"
-msgstr "Goulennoů a bep seurt"
-
-#: ../../install_steps_interactive.pm_.c:963
-msgid "(may cause data corruption)"
-msgstr "(a c'hell breinań roadoů)"
-
-#: ../../install_steps_interactive.pm_.c:963
-msgid "Use hard drive optimisations?"
-msgstr "Implijout gwelladur ar bladenn galet ?"
-
-#: ../../install_steps_interactive.pm_.c:964 ../../standalone/draksec_.c:46
+#: ../../install_steps_interactive.pm_.c:1041 ../../standalone/draksec_.c:49
msgid "Choose security level"
msgstr "Dibabit al live surentez"
-#: ../../install_steps_interactive.pm_.c:965
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Spisait ment ar memor vev diouzh ret (kavet %d Mo)"
-
-#: ../../install_steps_interactive.pm_.c:967
-msgid "Removable media automounting"
-msgstr "Emvarc'hań ar skoroů lem/laka"
-
-#: ../../install_steps_interactive.pm_.c:969
-msgid "Clean /tmp at each boot"
-msgstr "Skarań /tmp bep ma loc'her"
-
-#: ../../install_steps_interactive.pm_.c:972
-msgid "Enable multi profiles"
-msgstr "Aotren lies trolinenn"
-
-#: ../../install_steps_interactive.pm_.c:974
-msgid "Enable num lock at startup"
-msgstr "Enaouiń KrouilhNiv pa loc'her"
-
-#: ../../install_steps_interactive.pm_.c:977
-msgid "Give the ram size in MB"
-msgstr "Roit ment ar memor vev e Mo"
-
-#: ../../install_steps_interactive.pm_.c:979
-msgid "Can't use supermount in high security level"
-msgstr "N'hellan ket implijout supermount el live surentez uhel"
-
-#: ../../install_steps_interactive.pm_.c:981
-msgid ""
-"beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
-"If you want to be root, you have to login as a user and then use \"su\".\n"
-"More generally, do not expect to use your machine for anything but as a "
-"server.\n"
-"You have been warned."
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:986
-msgid ""
-"Be carefull, having numlock enabled causes a lot of keystrokes to\n"
-"give digits instead of normal letters (eg: pressing `p' gives `6')"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1074
msgid "Do you want to generate an auto install floppy for linux replication?"
msgstr ""
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1076
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Lakait ur bladennig gwerc'h el lenner %s"
-#: ../../install_steps_interactive.pm_.c:1049
-#: ../../install_steps_interactive.pm_.c:1079
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1122
msgid "Creating auto install floppy"
msgstr "O krouiń ur bladennig staliań emgefreek"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1150
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -4239,7 +4597,7 @@ msgstr ""
"\n"
"Mennout a rit kuitaat da vat bremań ?"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -4260,6 +4618,34 @@ msgstr ""
"Titouroů war gefluniań ho reizhiad a zo hegerz e rannbennad Goude\n"
"Staliań Sturier ofisiel an Arveriad Linux-Mandrake."
+#: ../../install_steps_interactive.pm_.c:1173
+#, fuzzy
+msgid "Generate auto install floppy"
+msgstr "O krouiń ur bladennig staliań emgefreek"
+
+#: ../../install_steps_interactive.pm_.c:1175
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+
+#: ../../install_steps_interactive.pm_.c:1180
+msgid "Automated"
+msgstr "Emgefreek"
+
+#: ../../install_steps_interactive.pm_.c:1180
+#, fuzzy
+msgid "Replay"
+msgstr "Adkargań"
+
+#: ../../install_steps_interactive.pm_.c:1183
+#, fuzzy
+msgid "Save packages selection"
+msgstr "Diuz pakadoů unan hag unan"
+
#: ../../install_steps_newt.pm_.c:22
#, c-format
msgid "Linux-Mandrake Installation %s"
@@ -4271,7 +4657,15 @@ msgid ""
msgstr ""
" <Tab>/<Alt-Tab> etre elfennoů | <Esaouenn> a ziuz | <F12> skramm a heul "
-#: ../../interactive.pm_.c:273
+#: ../../interactive.pm_.c:65
+msgid "kdesu missing"
+msgstr ""
+
+#: ../../interactive.pm_.c:263
+msgid "Advanced"
+msgstr ""
+
+#: ../../interactive.pm_.c:286
msgid "Please wait"
msgstr "Gortozit mar plij"
@@ -4300,265 +4694,279 @@ msgstr "Ho tibab ? (%s dre ziouer)"
msgid "Your choice? (default %s enter `none' for none) "
msgstr "Ho tibab ? (%s dre ziouer, skrivit `none' evit hini ebet)"
-#: ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:135
+#: ../../keyboard.pm_.c:124 ../../keyboard.pm_.c:154
msgid "Czech (QWERTZ)"
msgstr "Tchek (QWERTZ)"
-#: ../../keyboard.pm_.c:106 ../../keyboard.pm_.c:119 ../../keyboard.pm_.c:138
+#: ../../keyboard.pm_.c:125 ../../keyboard.pm_.c:138 ../../keyboard.pm_.c:157
msgid "German"
msgstr "Alaman"
-#: ../../keyboard.pm_.c:107
+#: ../../keyboard.pm_.c:126
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:108 ../../keyboard.pm_.c:144
+#: ../../keyboard.pm_.c:127 ../../keyboard.pm_.c:163
msgid "Spanish"
msgstr "Spagnol"
-#: ../../keyboard.pm_.c:109 ../../keyboard.pm_.c:145
+#: ../../keyboard.pm_.c:128 ../../keyboard.pm_.c:164
msgid "Finnish"
msgstr "Finnek"
-#: ../../keyboard.pm_.c:110 ../../keyboard.pm_.c:120 ../../keyboard.pm_.c:146
+#: ../../keyboard.pm_.c:129 ../../keyboard.pm_.c:139 ../../keyboard.pm_.c:165
msgid "French"
msgstr "Gall"
-#: ../../keyboard.pm_.c:111 ../../keyboard.pm_.c:166
+#: ../../keyboard.pm_.c:130 ../../keyboard.pm_.c:186
msgid "Norwegian"
msgstr "Norvegek"
-#: ../../keyboard.pm_.c:112
+#: ../../keyboard.pm_.c:131
msgid "Polish"
msgstr "Polonek"
-#: ../../keyboard.pm_.c:113 ../../keyboard.pm_.c:171
+#: ../../keyboard.pm_.c:132 ../../keyboard.pm_.c:191
msgid "Russian"
msgstr "Rusiek"
-#: ../../keyboard.pm_.c:114 ../../keyboard.pm_.c:182
+#: ../../keyboard.pm_.c:133 ../../keyboard.pm_.c:202
msgid "UK keyboard"
msgstr "Stokellaoueg RU"
-#: ../../keyboard.pm_.c:115 ../../keyboard.pm_.c:118 ../../keyboard.pm_.c:183
+#: ../../keyboard.pm_.c:134 ../../keyboard.pm_.c:137 ../../keyboard.pm_.c:203
msgid "US keyboard"
msgstr "Stokellaoueg SUA"
-#: ../../keyboard.pm_.c:122
+#: ../../keyboard.pm_.c:141
msgid "Armenian (old)"
msgstr "Armeniek (kozh)"
-#: ../../keyboard.pm_.c:123
+#: ../../keyboard.pm_.c:142
msgid "Armenian (typewriter)"
msgstr "Armeniek (skriverez)"
-#: ../../keyboard.pm_.c:124
+#: ../../keyboard.pm_.c:143
msgid "Armenian (phonetic)"
msgstr "Armeniek (soniadel)"
-#: ../../keyboard.pm_.c:127
+#: ../../keyboard.pm_.c:146
msgid "Azerbaidjani (latin)"
msgstr ""
-#: ../../keyboard.pm_.c:128
+#: ../../keyboard.pm_.c:147
msgid "Azerbaidjani (cyrillic)"
msgstr ""
-#: ../../keyboard.pm_.c:129
+#: ../../keyboard.pm_.c:148
msgid "Belgian"
msgstr "Belgian"
-#: ../../keyboard.pm_.c:130
+#: ../../keyboard.pm_.c:149
msgid "Bulgarian"
msgstr "Bulgarek"
-#: ../../keyboard.pm_.c:131
+#: ../../keyboard.pm_.c:150
msgid "Brazilian (ABNT-2)"
msgstr "Brasilek"
-#: ../../keyboard.pm_.c:132
+#: ../../keyboard.pm_.c:151
#, fuzzy
msgid "Belarusian"
msgstr "Bulgarek"
-#: ../../keyboard.pm_.c:133
+#: ../../keyboard.pm_.c:152
msgid "Swiss (German layout)"
msgstr "Suis (reizhadur alaman)"
-#: ../../keyboard.pm_.c:134
+#: ../../keyboard.pm_.c:153
msgid "Swiss (French layout)"
msgstr "Suis (reizhadur gall)"
-#: ../../keyboard.pm_.c:136
+#: ../../keyboard.pm_.c:155
msgid "Czech (QWERTY)"
msgstr "Tchek (QWERTY)"
-#: ../../keyboard.pm_.c:137
+#: ../../keyboard.pm_.c:156
msgid "Czech (Programmers)"
msgstr ""
-#: ../../keyboard.pm_.c:139
+#: ../../keyboard.pm_.c:158
msgid "German (no dead keys)"
msgstr "Alaman (stokell marv ebet)"
-#: ../../keyboard.pm_.c:140
+#: ../../keyboard.pm_.c:159
msgid "Danish"
msgstr "Danek"
-#: ../../keyboard.pm_.c:141
+#: ../../keyboard.pm_.c:160
#, fuzzy
msgid "Dvorak (US)"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:142
+#: ../../keyboard.pm_.c:161
#, fuzzy
msgid "Dvorak (Norwegian)"
msgstr "Norvegek"
-#: ../../keyboard.pm_.c:143
+#: ../../keyboard.pm_.c:162
msgid "Estonian"
msgstr "Estoniek"
-#: ../../keyboard.pm_.c:147
+#: ../../keyboard.pm_.c:166
msgid "Georgian (\"Russian\" layout)"
msgstr "Jorjiek (reizhadur \"Rusiek\")"
-#: ../../keyboard.pm_.c:148
+#: ../../keyboard.pm_.c:167
msgid "Georgian (\"Latin\" layout)"
msgstr "Jorjiek (reizhadur \"Latin\")"
-#: ../../keyboard.pm_.c:149
+#: ../../keyboard.pm_.c:168
msgid "Greek"
msgstr "Gresian"
-#: ../../keyboard.pm_.c:150
+#: ../../keyboard.pm_.c:169
msgid "Hungarian"
msgstr "Hungarian"
-#: ../../keyboard.pm_.c:151
+#: ../../keyboard.pm_.c:170
msgid "Croatian"
msgstr "Kroatek"
-#: ../../keyboard.pm_.c:152
+#: ../../keyboard.pm_.c:171
msgid "Israeli"
msgstr "Israelian"
-#: ../../keyboard.pm_.c:153
+#: ../../keyboard.pm_.c:172
msgid "Israeli (Phonetic)"
msgstr "Israelian (soniadel)"
-#: ../../keyboard.pm_.c:154
+#: ../../keyboard.pm_.c:173
#, fuzzy
msgid "Iranian"
msgstr "Ukrainiek"
-#: ../../keyboard.pm_.c:155
+#: ../../keyboard.pm_.c:174
msgid "Icelandic"
msgstr "Islandek"
-#: ../../keyboard.pm_.c:156
+#: ../../keyboard.pm_.c:175
msgid "Italian"
msgstr "Italian"
-#: ../../keyboard.pm_.c:157
+#: ../../keyboard.pm_.c:176
msgid "Japanese 106 keys"
msgstr ""
-#: ../../keyboard.pm_.c:158
+#: ../../keyboard.pm_.c:177
+#, fuzzy
+msgid "Korean keyboard"
+msgstr "Stokellaoueg RU"
+
+#: ../../keyboard.pm_.c:178
msgid "Latin American"
msgstr "Amerikan Latin"
-#: ../../keyboard.pm_.c:160
+#: ../../keyboard.pm_.c:179
+msgid "Macedonian"
+msgstr ""
+
+#: ../../keyboard.pm_.c:180
msgid "Dutch"
msgstr "Hollandek"
-#: ../../keyboard.pm_.c:161
+#: ../../keyboard.pm_.c:181
#, fuzzy
msgid "Lithuanian AZERTY (old)"
msgstr "Lituaniek AZERTY"
-#: ../../keyboard.pm_.c:163
+#: ../../keyboard.pm_.c:183
#, fuzzy
msgid "Lithuanian AZERTY (new)"
msgstr "Lituaniek AZERTY"
-#: ../../keyboard.pm_.c:164
+#: ../../keyboard.pm_.c:184
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituaniek QUERTY \"linenn sifroů\""
-#: ../../keyboard.pm_.c:165
+#: ../../keyboard.pm_.c:185
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituaniek QUERTY \"soniadel\""
-#: ../../keyboard.pm_.c:167
+#: ../../keyboard.pm_.c:187
msgid "Polish (qwerty layout)"
msgstr "Polonek (reizhadur qwerty)"
-#: ../../keyboard.pm_.c:168
+#: ../../keyboard.pm_.c:188
msgid "Polish (qwertz layout)"
msgstr "Polonek (reizhadur qwerty)"
-#: ../../keyboard.pm_.c:169
+#: ../../keyboard.pm_.c:189
msgid "Portuguese"
msgstr "Portugalek"
-#: ../../keyboard.pm_.c:170
+#: ../../keyboard.pm_.c:190
msgid "Canadian (Quebec)"
msgstr "Kanadian (Kebek)"
-#: ../../keyboard.pm_.c:172
+#: ../../keyboard.pm_.c:192
msgid "Russian (Yawerty)"
msgstr "Rusiek (Yawerty)"
-#: ../../keyboard.pm_.c:173
+#: ../../keyboard.pm_.c:193
msgid "Swedish"
msgstr "Svedek"
-#: ../../keyboard.pm_.c:174
+#: ../../keyboard.pm_.c:194
msgid "Slovenian"
msgstr "Slovek"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:195
msgid "Slovakian (QWERTZ)"
msgstr "Slovakek (QWERTZ)"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:196
msgid "Slovakian (QWERTY)"
msgstr "Slovakek (QWERTY)"
-#: ../../keyboard.pm_.c:177
+#: ../../keyboard.pm_.c:197
msgid "Slovakian (Programmers)"
msgstr ""
-#: ../../keyboard.pm_.c:178
+#: ../../keyboard.pm_.c:198
msgid "Thai keyboard"
msgstr "Stokellaoueg Thai"
-#: ../../keyboard.pm_.c:179
+#: ../../keyboard.pm_.c:199
msgid "Turkish (traditional \"F\" model)"
msgstr "Turkek (hengounel doare \"F\")"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:200
msgid "Turkish (modern \"Q\" model)"
msgstr "Turkek (arnevez doare \"Q\")"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:201
msgid "Ukrainian"
msgstr "Ukrainiek"
-#: ../../keyboard.pm_.c:184
+#: ../../keyboard.pm_.c:204
msgid "US keyboard (international)"
msgstr "Stokellaoueg SUA (etrevroadel)"
-#: ../../keyboard.pm_.c:185
+#: ../../keyboard.pm_.c:205
#, fuzzy
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Lituaniek QUERTY \"linenn sifroů\""
-#: ../../keyboard.pm_.c:186
-msgid "Yugoslavian (latin layout)"
+#: ../../keyboard.pm_.c:206
+#, fuzzy
+msgid "Yugoslavian (latin/cyrillic)"
msgstr "Yougoslaviek (reizhadur latin)"
+#: ../../lvm.pm_.c:70
+msgid "Remove the logical volumes first\n"
+msgstr ""
+
#: ../../mouse.pm_.c:25
msgid "Sun - Mouse"
msgstr "Logodenn Sun"
@@ -4581,11 +4989,11 @@ msgstr "Logodenn rummel"
msgid "GlidePoint"
msgstr "ALPS GlidePoint"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:62
msgid "Kensington Thinking Mouse"
msgstr "Logodenn Kensington Thinking"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:58
msgid "Genius NetMouse"
msgstr "Genius NetMouse"
@@ -4593,254 +5001,262 @@ msgstr "Genius NetMouse"
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:43
+#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:67
+msgid "1 button"
+msgstr ""
+
+#: ../../mouse.pm_.c:44
msgid "Generic"
msgstr "Rummel"
-#: ../../mouse.pm_.c:44
+#: ../../mouse.pm_.c:45
#, fuzzy
msgid "Wheel"
msgstr "live"
-#: ../../mouse.pm_.c:47
+#: ../../mouse.pm_.c:48
msgid "serial"
msgstr "a-steud"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:50
msgid "Generic 2 Button Mouse"
msgstr "Logodenn rummel 2 nozelenn"
-#: ../../mouse.pm_.c:50
+#: ../../mouse.pm_.c:51
msgid "Generic 3 Button Mouse"
msgstr "Logodenn rummel 3 nozelenn"
-#: ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:52
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:53
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:54
msgid "Mouse Systems"
msgstr "Mouse Systems"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:56
msgid "Logitech CC Series"
msgstr "Logitech doare CC (a-steud)"
-#: ../../mouse.pm_.c:56
+#: ../../mouse.pm_.c:57
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:59
#, fuzzy
msgid "MM Series"
msgstr "Doare MM"
-#: ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:60
#, fuzzy
msgid "MM HitTablet"
msgstr "MM HitTablet (a-steud)"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:61
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Logodenn Logitech (a-steud, seurt C7 kozh)"
-#: ../../mouse.pm_.c:64
+#: ../../mouse.pm_.c:65
#, fuzzy
msgid "busmouse"
msgstr "Logodenn ebet"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
msgid "2 buttons"
msgstr ""
-#: ../../mouse.pm_.c:67
+#: ../../mouse.pm_.c:69
msgid "3 buttons"
msgstr ""
-#: ../../mouse.pm_.c:70
+#: ../../mouse.pm_.c:72
#, fuzzy
msgid "none"
msgstr "Graet"
-#: ../../mouse.pm_.c:72
+#: ../../mouse.pm_.c:74
msgid "No mouse"
msgstr "Logodenn ebet"
-#: ../../my_gtk.pm_.c:243
+#: ../../my_gtk.pm_.c:356
+#, fuzzy
+msgid "Finish"
+msgstr "Finnek"
+
+#: ../../my_gtk.pm_.c:356
msgid "Next ->"
msgstr ""
-#: ../../my_gtk.pm_.c:486
+#: ../../my_gtk.pm_.c:357
+msgid "<- Previous"
+msgstr ""
+
+#: ../../my_gtk.pm_.c:616
msgid "Is this correct?"
msgstr "Ha reizh eo ?"
-#: ../../netconnect.pm_.c:93 ../../netconnect_new.pm_.c:151
+#: ../../netconnect.pm_.c:141
#, fuzzy
msgid "Internet configuration"
msgstr "Kefluniań ar proksioů"
-#: ../../netconnect.pm_.c:94 ../../netconnect_new.pm_.c:152
+#: ../../netconnect.pm_.c:142
#, fuzzy
msgid "Do you want to try to connect to the Internet now?"
msgstr "Mennout a rit amprouiń ar c'hefluniadur ?"
-#: ../../netconnect.pm_.c:101 ../../netconnect_new.pm_.c:159
+#: ../../netconnect.pm_.c:146
#, fuzzy
msgid "Testing your connection..."
msgstr "Kefluniań ur rouedad"
-#: ../../netconnect.pm_.c:106 ../../netconnect_new.pm_.c:164
+#: ../../netconnect.pm_.c:152 ../../standalone/draknet_.c:196
#, fuzzy
msgid "The system is now connected to Internet."
msgstr "Da beseurt pladenn e mennit dilec'hiań ?"
-#: ../../netconnect.pm_.c:107 ../../netconnect_new.pm_.c:165
+#: ../../netconnect.pm_.c:153
+msgid "For Security reason, it will be disconnected now."
+msgstr ""
+
+#: ../../netconnect.pm_.c:154 ../../standalone/draknet_.c:196
#, fuzzy
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
msgstr "Anv ar gevreadenn"
-#: ../../netconnect.pm_.c:141 ../../netconnect.pm_.c:213
-#: ../../netconnect.pm_.c:232 ../../netconnect.pm_.c:244
-#: ../../netconnect.pm_.c:256 ../../netconnect_new.pm_.c:226
-#: ../../netconnect_new.pm_.c:300 ../../netconnect_new.pm_.c:319
-#: ../../netconnect_new.pm_.c:331 ../../netconnect_new.pm_.c:343
+#: ../../netconnect.pm_.c:159 ../../netconnect.pm_.c:901
+#: ../../netconnect.pm_.c:930 ../../netconnect.pm_.c:1008
+msgid "Network Configuration"
+msgstr "Kefluniadur ar rouedad"
+
+#: ../../netconnect.pm_.c:220 ../../netconnect.pm_.c:264
+#: ../../netconnect.pm_.c:274 ../../netconnect.pm_.c:281
+#: ../../netconnect.pm_.c:291
#, fuzzy
msgid "ISDN Configuration"
msgstr "Kefluniadur"
-#: ../../netconnect.pm_.c:141 ../../netconnect_new.pm_.c:226
+#: ../../netconnect.pm_.c:220
msgid ""
"Select your provider.\n"
" If it's not in the list, choose Unlisted"
msgstr ""
-#: ../../netconnect.pm_.c:158 ../../netconnect_new.pm_.c:245
+#: ../../netconnect.pm_.c:234
#, fuzzy
msgid "Connection Configuration"
msgstr "Kefluniań ar proksioů"
-#: ../../netconnect.pm_.c:159 ../../netconnect_new.pm_.c:246
+#: ../../netconnect.pm_.c:235
msgid "Please fill or check the field below"
msgstr ""
-#: ../../netconnect.pm_.c:161 ../../netconnect_new.pm_.c:248
+#: ../../netconnect.pm_.c:237 ../../standalone/draknet_.c:550
msgid "Card IRQ"
msgstr ""
-#: ../../netconnect.pm_.c:162 ../../netconnect_new.pm_.c:249
+#: ../../netconnect.pm_.c:238 ../../standalone/draknet_.c:551
msgid "Card mem (DMA)"
msgstr ""
-#: ../../netconnect.pm_.c:163 ../../netconnect_new.pm_.c:250
+#: ../../netconnect.pm_.c:239 ../../standalone/draknet_.c:552
msgid "Card IO"
msgstr ""
-#: ../../netconnect.pm_.c:164 ../../netconnect_new.pm_.c:251
+#: ../../netconnect.pm_.c:240 ../../standalone/draknet_.c:553
msgid "Card IO_0"
msgstr ""
-#: ../../netconnect.pm_.c:165 ../../netconnect_new.pm_.c:252
+#: ../../netconnect.pm_.c:241 ../../standalone/draknet_.c:554
msgid "Card IO_1"
msgstr ""
-#: ../../netconnect.pm_.c:166 ../../netconnect_new.pm_.c:253
+#: ../../netconnect.pm_.c:242 ../../standalone/draknet_.c:555
msgid "Your personal phone number"
msgstr ""
-#: ../../netconnect.pm_.c:168 ../../netconnect_new.pm_.c:255
+#: ../../netconnect.pm_.c:243 ../../standalone/draknet_.c:556
msgid "Provider name (ex provider.net)"
msgstr ""
-#: ../../netconnect.pm_.c:169 ../../netconnect_new.pm_.c:256
+#: ../../netconnect.pm_.c:244 ../../standalone/draknet_.c:557
#, fuzzy
msgid "Provider phone number"
msgstr "Niverenn bellgomz"
-#: ../../netconnect.pm_.c:170 ../../netconnect_new.pm_.c:257
+#: ../../netconnect.pm_.c:245
msgid "Provider dns 1"
msgstr ""
-#: ../../netconnect.pm_.c:171 ../../netconnect_new.pm_.c:258
+#: ../../netconnect.pm_.c:246
msgid "Provider dns 2"
msgstr ""
-#: ../../netconnect.pm_.c:172 ../../netconnect_new.pm_.c:259
+#: ../../netconnect.pm_.c:247 ../../standalone/draknet_.c:562
#, fuzzy
msgid "Dialing mode"
msgstr "Anv domani"
-#: ../../netconnect.pm_.c:174 ../../netconnect_new.pm_.c:261
+#: ../../netconnect.pm_.c:248 ../../standalone/draknet_.c:560
#, fuzzy
msgid "Account Login (user name)"
msgstr "Poent marc'hań"
-#: ../../netconnect.pm_.c:175 ../../netconnect_new.pm_.c:262
+#: ../../netconnect.pm_.c:249 ../../standalone/draknet_.c:561
#, fuzzy
msgid "Account Password"
msgstr "Tremenger"
-#: ../../netconnect.pm_.c:176 ../../netconnect_new.pm_.c:263
-#, fuzzy
-msgid "Confirm Password"
-msgstr "Tremenger"
-
-#: ../../netconnect.pm_.c:208 ../../netconnect_new.pm_.c:295
+#: ../../netconnect.pm_.c:259
msgid "Europe"
msgstr ""
-#: ../../netconnect.pm_.c:208 ../../netconnect_new.pm_.c:295
+#: ../../netconnect.pm_.c:259
msgid "Europe (EDSS1)"
msgstr ""
-#: ../../netconnect.pm_.c:210 ../../netconnect_new.pm_.c:297
+#: ../../netconnect.pm_.c:261
#, fuzzy
msgid "Rest of the world"
msgstr "Amprouiń ar c'hefluniadur"
-#: ../../netconnect.pm_.c:210 ../../netconnect_new.pm_.c:297
-msgid "Rest of the world - no D-Channel (leased lines)"
+#: ../../netconnect.pm_.c:261
+msgid ""
+"Rest of the world \n"
+" no D-Channel (leased lines)"
msgstr ""
-#: ../../netconnect.pm_.c:214 ../../netconnect_new.pm_.c:301
+#: ../../netconnect.pm_.c:265
#, fuzzy
msgid "Which protocol do you want to use ?"
msgstr "Pe seurt parzhadur a vennit ?"
-#: ../../netconnect.pm_.c:224 ../../netconnect_new.pm_.c:311
+#: ../../netconnect.pm_.c:275
#, fuzzy
-msgid "ISA / PCMCIA"
-msgstr "PCMCIA"
-
-#: ../../netconnect.pm_.c:226 ../../netconnect_new.pm_.c:313
-#, fuzzy
-msgid "PCI"
-msgstr "PCMCIA"
+msgid "What kind of card do you have?"
+msgstr "Peseurt moullerez hoc'h eus ?"
-#: ../../netconnect.pm_.c:228 ../../netconnect_new.pm_.c:315
+#: ../../netconnect.pm_.c:276
msgid "I don't know"
msgstr ""
-#: ../../netconnect.pm_.c:233 ../../netconnect_new.pm_.c:320
+#: ../../netconnect.pm_.c:276
#, fuzzy
-msgid "What kind of card do you have?"
-msgstr "Peseurt moullerez hoc'h eus ?"
+msgid "ISA / PCMCIA"
+msgstr "PCMCIA"
-#: ../../netconnect.pm_.c:239 ../../netconnect_new.pm_.c:326
+#: ../../netconnect.pm_.c:276
#, fuzzy
-msgid "Continue"
-msgstr "Kenderc'hel evelato ?"
-
-#: ../../netconnect.pm_.c:241 ../../netconnect_new.pm_.c:328
-msgid "Abort"
-msgstr ""
+msgid "PCI"
+msgstr "PCMCIA"
-#: ../../netconnect.pm_.c:245 ../../netconnect_new.pm_.c:332
+#: ../../netconnect.pm_.c:282
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -4848,338 +5264,354 @@ msgid ""
"If you have a PCMCIA card, you have to know the irq and io of your card.\n"
msgstr ""
-#: ../../netconnect.pm_.c:257 ../../netconnect_new.pm_.c:344
+#: ../../netconnect.pm_.c:286
+msgid "Abort"
+msgstr ""
+
+#: ../../netconnect.pm_.c:286
+#, fuzzy
+msgid "Continue"
+msgstr "Kenderc'hel evelato ?"
+
+#: ../../netconnect.pm_.c:292
#, fuzzy
msgid "Which is your ISDN card ?"
msgstr "Pehini eo ho takad-eur ?"
-#: ../../netconnect.pm_.c:282
-msgid "I have found an ISDN Card:\n"
-msgstr ""
-
-#: ../../netconnect.pm_.c:288 ../../netconnect_new.pm_.c:367
+#: ../../netconnect.pm_.c:312
msgid ""
"I have detected an ISDN PCI Card, but I don't know the type. Please select "
"one PCI card on the next screen."
msgstr ""
-#: ../../netconnect.pm_.c:300 ../../netconnect_new.pm_.c:379
+#: ../../netconnect.pm_.c:321
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
-#: ../../netconnect.pm_.c:336 ../../netconnect_new.pm_.c:412
+#: ../../netconnect.pm_.c:369
msgid ""
"No ethernet network adapter has been detected on your system.\n"
"I cannot set up this connection type."
msgstr ""
-#: ../../netconnect.pm_.c:340 ../../netconnect_new.pm_.c:417
-#: ../../standalone/drakgw_.c:222
+#: ../../netconnect.pm_.c:373 ../../standalone/drakgw_.c:232
#, fuzzy
msgid "Choose the network interface"
msgstr "Dibabit ar ment nevez"
-#: ../../netconnect.pm_.c:341 ../../netconnect_new.pm_.c:418
+#: ../../netconnect.pm_.c:374
#, fuzzy
msgid ""
"Please choose which network adapter you want to use to connect to Internet"
msgstr "Dibabit ar porzh a-steud m'eo luget ho logodenn outań, mar plij."
-#: ../../netconnect.pm_.c:356 ../../netconnect.pm_.c:635
-#: ../../netconnect.pm_.c:766 ../../netconnect_new.pm_.c:425
-#: ../../netconnect_new.pm_.c:777 ../../netconnect_new.pm_.c:908
-#: ../../standalone/drakgw_.c:217
+#: ../../netconnect.pm_.c:383 ../../netconnect.pm_.c:697
+#: ../../netconnect.pm_.c:842 ../../standalone/drakgw_.c:223
msgid "Network interface"
msgstr ""
-#: ../../netconnect.pm_.c:357 ../../netconnect_new.pm_.c:426
+#: ../../netconnect.pm_.c:384
msgid ""
"\n"
"Do you agree?"
msgstr ""
-#: ../../netconnect.pm_.c:357 ../../netconnect_new.pm_.c:426
+#: ../../netconnect.pm_.c:384
#, fuzzy
msgid "I'm about to restart the network device:\n"
msgstr "Mennout a rit amprouiń ar c'hefluniadur ?"
-#: ../../netconnect.pm_.c:473 ../../netconnect_new.pm_.c:512
+#: ../../netconnect.pm_.c:482
#, fuzzy
msgid "ADSL configuration"
msgstr "Kefluniadur"
-#: ../../netconnect.pm_.c:474 ../../netconnect_new.pm_.c:513
+#: ../../netconnect.pm_.c:483
#, fuzzy
msgid "Do you want to start your connection at boot?"
msgstr "Mennout a rit implijout aboot ?"
-#: ../../netconnect.pm_.c:541 ../../netconnect_new.pm_.c:672
-msgid "Try to find a modem?"
-msgstr "Klask kavout ur modem ?"
-
-#: ../../netconnect.pm_.c:551 ../../netconnect_new.pm_.c:677
+#: ../../netconnect.pm_.c:618
msgid "Please choose which serial port your modem is connected to."
msgstr "Dibabit ouzh pe borzh a-steud eo luget ho modem, mar plij."
-#: ../../netconnect.pm_.c:556 ../../netconnect_new.pm_.c:682
+#: ../../netconnect.pm_.c:623
msgid "Dialup options"
msgstr "Dibarzhoů sifrennań"
-#: ../../netconnect.pm_.c:557 ../../netconnect_new.pm_.c:683
+#: ../../netconnect.pm_.c:624 ../../standalone/draknet_.c:564
msgid "Connection name"
msgstr "Anv ar gevreadenn"
-#: ../../netconnect.pm_.c:558 ../../netconnect_new.pm_.c:684
+#: ../../netconnect.pm_.c:625 ../../standalone/draknet_.c:565
#, fuzzy
msgid "Phone number"
msgstr "Niverenn bellgomz"
-#: ../../netconnect.pm_.c:559 ../../netconnect_new.pm_.c:685
+#: ../../netconnect.pm_.c:626 ../../standalone/draknet_.c:566
msgid "Login ID"
msgstr "Anv ereań"
-#: ../../netconnect.pm_.c:561 ../../netconnect_new.pm_.c:687
+#: ../../netconnect.pm_.c:628 ../../standalone/draknet_.c:568
msgid "Authentication"
msgstr "Dilesadur"
-#: ../../netconnect.pm_.c:561 ../../netconnect_new.pm_.c:687
+#: ../../netconnect.pm_.c:628 ../../standalone/draknet_.c:568
msgid "PAP"
msgstr "PAP"
-#: ../../netconnect.pm_.c:561 ../../netconnect_new.pm_.c:687
+#: ../../netconnect.pm_.c:628 ../../standalone/draknet_.c:568
msgid "Script-based"
msgstr "Diazezet war ur skrid"
-#: ../../netconnect.pm_.c:561 ../../netconnect_new.pm_.c:687
+#: ../../netconnect.pm_.c:628 ../../standalone/draknet_.c:568
msgid "Terminal-based"
msgstr "Diazezet war un dermenell"
-#: ../../netconnect.pm_.c:562 ../../netconnect_new.pm_.c:688
+#: ../../netconnect.pm_.c:629 ../../standalone/draknet_.c:569
#, fuzzy
msgid "Domain name"
msgstr "Anv ar gevreadenn"
-#: ../../netconnect.pm_.c:564 ../../netconnect_new.pm_.c:690
-msgid "First DNS Server"
+#: ../../netconnect.pm_.c:630 ../../standalone/draknet_.c:570
+#, fuzzy
+msgid "First DNS Server (optional)"
msgstr "Servijer DNS kentań"
-#: ../../netconnect.pm_.c:565 ../../netconnect_new.pm_.c:691
-msgid "Second DNS Server"
+#: ../../netconnect.pm_.c:631 ../../standalone/draknet_.c:571
+#, fuzzy
+msgid "Second DNS Server (optional)"
msgstr "Eil servijer DNS"
-#: ../../netconnect.pm_.c:594 ../../netconnect_new.pm_.c:736
-#, fuzzy
+#: ../../netconnect.pm_.c:698
+msgid ""
+"I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"
+msgstr ""
+
+#: ../../netconnect.pm_.c:742
msgid ""
"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr "Anv ar gevreadenn"
+"You can disconnect or reconfigure your connection."
+msgstr ""
-#: ../../netconnect.pm_.c:594 ../../netconnect.pm_.c:598
-#: ../../netconnect_new.pm_.c:736 ../../netconnect_new.pm_.c:740
+#: ../../netconnect.pm_.c:742 ../../netconnect.pm_.c:745
#, fuzzy
msgid ""
"\n"
"You can reconfigure your connection."
msgstr "Kefluniań ur rouedad"
-#: ../../netconnect.pm_.c:594 ../../netconnect_new.pm_.c:736
+#: ../../netconnect.pm_.c:742
#, fuzzy
-msgid "You are not currently connected to Internet."
+msgid "You are currently connected to internet."
msgstr "Da beseurt pladenn e mennit dilec'hiań ?"
-#: ../../netconnect.pm_.c:598 ../../netconnect_new.pm_.c:740
+#: ../../netconnect.pm_.c:745
+#, fuzzy
msgid ""
"\n"
-"You can disconnect or reconfigure your connection."
-msgstr ""
+"You can connect to Internet or reconfigure your connection."
+msgstr "Anv ar gevreadenn"
-#: ../../netconnect.pm_.c:598 ../../netconnect_new.pm_.c:740
+#: ../../netconnect.pm_.c:745
#, fuzzy
-msgid "You are currently connected to internet."
+msgid "You are not currently connected to Internet."
msgstr "Da beseurt pladenn e mennit dilec'hiań ?"
-#: ../../netconnect.pm_.c:602 ../../netconnect_new.pm_.c:744
+#: ../../netconnect.pm_.c:749 ../../standalone/net_monitor_.c:81
#, fuzzy
msgid "Connect to Internet"
msgstr "Anv ar gevreadenn"
-#: ../../netconnect.pm_.c:604 ../../netconnect_new.pm_.c:746
+#: ../../netconnect.pm_.c:751
#, fuzzy
msgid "Disconnect from Internet"
msgstr "Anv ar gevreadenn"
-#: ../../netconnect.pm_.c:606 ../../netconnect_new.pm_.c:748
+#: ../../netconnect.pm_.c:753
#, fuzzy
msgid "Configure network connection (LAN or Internet)"
msgstr "Kefluniań ur rouedad"
-#: ../../netconnect.pm_.c:609 ../../netconnect_new.pm_.c:751
+#: ../../netconnect.pm_.c:756
#, fuzzy
msgid "Internet connection & configuration"
msgstr "Lugerezh ar voullerez"
-#: ../../netconnect.pm_.c:636 ../../netconnect.pm_.c:767
-#: ../../netconnect_new.pm_.c:778 ../../netconnect_new.pm_.c:909
-msgid ""
-"I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"
-msgstr ""
-
-#: ../../netconnect.pm_.c:653 ../../netconnect_new.pm_.c:795
-#, fuzzy
-msgid "Configure a normal modem connection"
-msgstr "Kefluniań ur rouedad"
-
-#: ../../netconnect.pm_.c:673 ../../netconnect_new.pm_.c:815
+#: ../../netconnect.pm_.c:808 ../../netconnect.pm_.c:957
+#: ../../netconnect.pm_.c:967 ../../netconnect.pm_.c:982
#, fuzzy
-msgid "Configure an ISDN connection"
-msgstr "Kefluniań ur rouedad"
-
-#: ../../netconnect.pm_.c:678 ../../netconnect_new.pm_.c:820
-msgid "Internal ISDN card"
-msgstr ""
+msgid "Network Configuration Wizard"
+msgstr "Kefluniadur ar rouedad"
-#: ../../netconnect.pm_.c:680 ../../netconnect_new.pm_.c:822
+#: ../../netconnect.pm_.c:809
#, fuzzy
msgid "External ISDN modem"
msgstr "Mailh"
-#: ../../netconnect.pm_.c:683 ../../netconnect.pm_.c:717
-#: ../../netconnect.pm_.c:729 ../../netconnect.pm_.c:753
-#: ../../netconnect.pm_.c:798 ../../netconnect_new.pm_.c:825
-#: ../../netconnect_new.pm_.c:859 ../../netconnect_new.pm_.c:871
-#: ../../netconnect_new.pm_.c:895 ../../netconnect_new.pm_.c:940
-#, fuzzy
-msgid "Connect to the Internet"
-msgstr "Anv ar gevreadenn"
+#: ../../netconnect.pm_.c:809
+msgid "Internal ISDN card"
+msgstr ""
-#: ../../netconnect.pm_.c:684 ../../netconnect_new.pm_.c:826
+#: ../../netconnect.pm_.c:809
#, fuzzy
msgid "What kind is your ISDN connection?"
msgstr "Ouzh pe borzh a-steud eo luget ho logodenn ?"
-#: ../../netconnect.pm_.c:703 ../../netconnect_new.pm_.c:845
+#: ../../netconnect.pm_.c:830 ../../netconnect.pm_.c:879
#, fuzzy
-msgid "Configure a DSL (or ADSL) connection"
-msgstr "Kefluniań ur rouedad"
+msgid "Connect to the Internet"
+msgstr "Anv ar gevreadenn"
-#: ../../netconnect.pm_.c:712 ../../netconnect_new.pm_.c:854
-#, fuzzy
-msgid "France"
-msgstr "Nullań"
+#: ../../netconnect.pm_.c:831
+msgid ""
+"The most common way to connect with adsl is pppoe.\n"
+"Some connections use pptp, a few ones use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
+msgstr ""
-#: ../../netconnect.pm_.c:714 ../../netconnect_new.pm_.c:856
-msgid "Other countries"
+#: ../../netconnect.pm_.c:833
+msgid "use dhcp"
msgstr ""
-#: ../../netconnect.pm_.c:718 ../../netconnect_new.pm_.c:860
-msgid "In which country are you located ?"
+#: ../../netconnect.pm_.c:833
+msgid "use pppoe"
msgstr ""
-#: ../../netconnect.pm_.c:724 ../../netconnect_new.pm_.c:866
-msgid "Alcatel modem"
+#: ../../netconnect.pm_.c:833
+msgid "use pptp"
msgstr ""
-#: ../../netconnect.pm_.c:726 ../../netconnect_new.pm_.c:868
+#: ../../netconnect.pm_.c:843
+#, fuzzy, c-format
+msgid "I'm about to restart the network device %s. Do you agree?"
+msgstr "Mennout a rit amprouiń ar c'hefluniadur ?"
+
+#: ../../netconnect.pm_.c:880
#, fuzzy
-msgid "ECI modem"
-msgstr "Mailh"
+msgid ""
+"Which dhcp client do you want to use?\n"
+"Default is dhcpcd"
+msgstr "Pe seurt parzhadur a vennit ?"
-#: ../../netconnect.pm_.c:730 ../../netconnect_new.pm_.c:872
-msgid "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
-msgstr ""
+#: ../../netconnect.pm_.c:897
+#, fuzzy
+msgid "Network configuration"
+msgstr "Kefluniadur ar rouedad"
-#: ../../netconnect.pm_.c:748 ../../netconnect_new.pm_.c:890
-msgid "use pppoe"
-msgstr ""
+#: ../../netconnect.pm_.c:898
+#, fuzzy
+msgid "Do you want to restart the network"
+msgstr "Mennout a rit amprouiń ar c'hefluniadur ?"
-#: ../../netconnect.pm_.c:750 ../../netconnect_new.pm_.c:892
-msgid "don't use pppoe"
+#: ../../netconnect.pm_.c:901
+#, fuzzy, c-format
+msgid ""
+"A problem occured while restarting the network: \n"
+"\n"
+"%s"
+msgstr "Mennout a rit amprouiń ar c'hefluniadur ?"
+
+#: ../../netconnect.pm_.c:931
+msgid ""
+"Because you are doing a network installation, your network is already "
+"configured.\n"
+"Click on Ok to keep your configuration, or cancel to reconfigure your "
+"Internet & Network connection.\n"
msgstr ""
-#: ../../netconnect.pm_.c:754 ../../netconnect_new.pm_.c:896
+#: ../../netconnect.pm_.c:958
msgid ""
-"The most common way to connect with adsl is dhcp + pppoe.\n"
-"However, some connections only use dhcp.\n"
-"If you don't know, choose 'use pppoe'"
+"Welcome to The Network Configuration Wizard\n"
+"\n"
+"We are about to configure your internet/network connection.\n"
+"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
-#: ../../netconnect.pm_.c:777 ../../netconnect_new.pm_.c:919
+#: ../../netconnect.pm_.c:960
#, fuzzy
-msgid "Configure a cable connection"
-msgstr "Kefluniań ur rouedad"
+msgid "Choose the profile to configure"
+msgstr "Dibabit ar ment nevez"
-#: ../../netconnect.pm_.c:799 ../../netconnect_new.pm_.c:941
-#, fuzzy
-msgid ""
-"Which dhcp client do you want to use?\n"
-"Default is dhcpd"
-msgstr "Pe seurt parzhadur a vennit ?"
+#: ../../netconnect.pm_.c:961
+msgid "Use auto detection"
+msgstr ""
-#: ../../netconnect.pm_.c:812 ../../netconnect_new.pm_.c:954
-#, fuzzy
-msgid "Disable Internet Connection"
-msgstr "Kefluniań ur rouedad"
+#: ../../netconnect.pm_.c:967 ../../printerdrake.pm_.c:19
+msgid "Detecting devices..."
+msgstr "O tinoiń trobarzhelloů..."
-#: ../../netconnect.pm_.c:823 ../../netconnect_new.pm_.c:965
+#: ../../netconnect.pm_.c:974
#, fuzzy
-msgid "Configure local network"
+msgid "Normal modem connection"
msgstr "Kefluniań ur rouedad"
-#: ../../netconnect.pm_.c:827 ../../netconnect_new.pm_.c:969
-#, fuzzy
-msgid "Network configuration"
-msgstr "Kefluniadur ar rouedad"
+#: ../../netconnect.pm_.c:974
+#, fuzzy, c-format
+msgid "detected on port %s"
+msgstr "Poent marc'hań doubl %s"
-#: ../../netconnect.pm_.c:828 ../../netconnect_new.pm_.c:970
+#: ../../netconnect.pm_.c:975
#, fuzzy
-msgid "Do you want to restart the network"
-msgstr "Mennout a rit amprouiń ar c'hefluniadur ?"
+msgid "ISDN connection"
+msgstr "Lugerezh ar voullerez"
+
+#: ../../netconnect.pm_.c:975
+#, c-format
+msgid "detected %s"
+msgstr ""
-#: ../../netconnect.pm_.c:836 ../../netconnect_new.pm_.c:978
+#: ../../netconnect.pm_.c:976
#, fuzzy
-msgid "Disable networking"
+msgid "DSL (or ADSL) connection"
msgstr "Kefluniań ur rouedad"
-#: ../../netconnect.pm_.c:846 ../../netconnect_new.pm_.c:988
+#: ../../netconnect.pm_.c:976
+#, c-format
+msgid "detected on interface %s"
+msgstr ""
+
+#: ../../netconnect.pm_.c:977
#, fuzzy
-msgid "Configure the Internet connection / Configure local Network"
-msgstr "Anv ar gevreadenn"
+msgid "Cable connection"
+msgstr "Lugerezh ar voullerez"
-#: ../../netconnect.pm_.c:847 ../../netconnect_new.pm_.c:989
+#: ../../netconnect.pm_.c:978
#, fuzzy
-msgid ""
-"Local networking has already been configured.\n"
-"Do you want to:"
-msgstr "Kefluniet eo bet ar rouedad lec'hel endeo. Ha mennout a rit :"
+msgid "LAN connection"
+msgstr "Lugerezh ar voullerez"
-#: ../../netconnect.pm_.c:848 ../../netconnect_new.pm_.c:990
+#: ../../netconnect.pm_.c:978
+msgid "ethernet card(s) detected"
+msgstr ""
+
+#: ../../netconnect.pm_.c:983
#, fuzzy
msgid "How do you want to connect to the Internet?"
msgstr "Da beseurt pladenn e mennit dilec'hiań ?"
-#: ../../netconnect.pm_.c:870 ../../netconnect_new.pm_.c:1012
-msgid "Network Configuration"
-msgstr "Kefluniadur ar rouedad"
-
-#: ../../netconnect.pm_.c:871 ../../netconnect_new.pm_.c:1013
+#: ../../netconnect.pm_.c:1000
msgid ""
-"Now that your Internet connection is configured,\n"
-"your computer can be configured to share its Internet connection.\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN).\n"
+"Congratulation, The network and internet configuration is finished.\n"
"\n"
-"Would you like to setup the Internet Connection Sharing?\n"
+"The configuration will now be applied to your system."
+msgstr ""
+
+#: ../../netconnect.pm_.c:1003
+msgid ""
+"After that is done, we recommend you to restart your X\n"
+"environnement to avoid hostname changing problem."
msgstr ""
#: ../../network.pm_.c:253
msgid "no network card found"
msgstr "kartenn rouedad kavet ebet"
-#: ../../network.pm_.c:273 ../../network.pm_.c:340
+#: ../../network.pm_.c:277 ../../network.pm_.c:387
msgid "Configuring network"
msgstr "Kefluniań ar rouedad"
-#: ../../network.pm_.c:274
+#: ../../network.pm_.c:278
#, fuzzy
msgid ""
"Please enter your host name if you know it.\n"
@@ -5192,20 +5624,20 @@ msgstr ""
"evel ``mabenveg.mastal.makomp.com''.\n"
"Gallout a rit ivez reiń chomlec'h IP an dreuzell m'hoc'h eus unan"
-#: ../../network.pm_.c:278 ../../network.pm_.c:345
+#: ../../network.pm_.c:282 ../../network.pm_.c:392
#, fuzzy
msgid "Host name"
msgstr "Anv an ostiz :"
-#: ../../network.pm_.c:297
+#: ../../network.pm_.c:319
msgid ""
"WARNING: This device has been previously configured to connect to the "
"Internet.\n"
-"Simply press OK to keep this device configured.\n"
+"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
msgstr ""
-#: ../../network.pm_.c:302
+#: ../../network.pm_.c:324
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -5215,35 +5647,40 @@ msgstr ""
"Pep mellad a zlefe bezań skrivet evel ur chomlec'h IP e stumm\n"
"sifroů dekvel pikoů etrezo (da skouer 1.2.3.4)."
-#: ../../network.pm_.c:311 ../../network.pm_.c:312
+#: ../../network.pm_.c:333 ../../network.pm_.c:334
#, c-format
msgid "Configuring network device %s"
msgstr "O kefluniań an drobarzhell rouedad %s"
-#: ../../network.pm_.c:314
-msgid "Automatic IP"
-msgstr "IP emgefreek"
+#: ../../network.pm_.c:334
+msgid " (driver $module)"
+msgstr ""
-#: ../../network.pm_.c:314
+#: ../../network.pm_.c:336 ../../standalone/draknet_.c:231
+#: ../../standalone/draknet_.c:425
#, fuzzy
msgid "IP address"
msgstr "Chomlec'h IP :"
-#: ../../network.pm_.c:314
+#: ../../network.pm_.c:337 ../../standalone/draknet_.c:426
#, fuzzy
msgid "Netmask"
msgstr "Maskl rouedad :"
-#: ../../network.pm_.c:315
+#: ../../network.pm_.c:338
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network.pm_.c:321 ../../printerdrake.pm_.c:98
-#: ../../printerdrake.pm_.c:420
+#: ../../network.pm_.c:338
+msgid "Automatic IP"
+msgstr "IP emgefreek"
+
+#: ../../network.pm_.c:359 ../../printerdrake.pm_.c:102
+#: ../../printerdrake.pm_.c:425
msgid "IP address should be in format 1.2.3.4"
msgstr "Er furmad 1.2.3.4 e tlefe bezań ar chomlec'h IP"
-#: ../../network.pm_.c:341
+#: ../../network.pm_.c:388
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -5255,47 +5692,44 @@ msgstr ""
"evel ``mabenveg.mastal.makomp.com''.\n"
"Gallout a rit ivez reiń chomlec'h IP an dreuzell m'hoc'h eus unan"
-#: ../../network.pm_.c:346
-#, fuzzy
+#: ../../network.pm_.c:393
msgid "DNS server"
-msgstr "Servijer DNS :"
+msgstr "Servijer DNS"
-#: ../../network.pm_.c:347
-#, fuzzy
+#: ../../network.pm_.c:394 ../../standalone/draknet_.c:563
msgid "Gateway"
-msgstr "Treuzell :"
+msgstr "Treuzell"
-#: ../../network.pm_.c:348
-#, fuzzy
+#: ../../network.pm_.c:396
msgid "Gateway device"
-msgstr "Trobarzhell an dreuzell :"
+msgstr "Trobarzhell an dreuzell"
-#: ../../network.pm_.c:358
+#: ../../network.pm_.c:407
#, fuzzy
msgid "Proxies configuration"
msgstr "Kefluniadur goude staliań"
-#: ../../network.pm_.c:359
+#: ../../network.pm_.c:408
msgid "HTTP proxy"
msgstr "Proksi HTTP"
-#: ../../network.pm_.c:360
+#: ../../network.pm_.c:409
msgid "FTP proxy"
msgstr "Proksi FTP"
-#: ../../network.pm_.c:366
+#: ../../network.pm_.c:412
msgid "Proxy should be http://..."
msgstr "http://... a zlefe bezań ar proksi"
-#: ../../network.pm_.c:367
+#: ../../network.pm_.c:413
msgid "Proxy should be ftp://..."
msgstr "ftp://... a zlefe bezań ar proksi"
-#: ../../partition_table.pm_.c:540
+#: ../../partition_table.pm_.c:560
msgid "Extended partition not supported on this platform"
msgstr ""
-#: ../../partition_table.pm_.c:558
+#: ../../partition_table.pm_.c:578
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -5305,122 +5739,99 @@ msgstr ""
"Fińval ar parzhadurioů kentań derez evit ma vo an toull stok ouzh ar "
"parzhadurioů astennet eo an diskoulm"
-#: ../../partition_table.pm_.c:651
+#: ../../partition_table.pm_.c:672
#, c-format
msgid "Error reading file %s"
msgstr "Fazi en ur lenn ar restr %s"
-#: ../../partition_table.pm_.c:658
+#: ../../partition_table.pm_.c:679
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Assevel adalek ar restr %s sac'het %s"
-#: ../../partition_table.pm_.c:660
+#: ../../partition_table.pm_.c:681
msgid "Bad backup file"
msgstr "Restr gwareziń siek"
-#: ../../partition_table.pm_.c:681
+#: ../../partition_table.pm_.c:703
#, c-format
msgid "Error writing to file %s"
msgstr "Fazi en ur skrivań er restr %s"
-#: ../../pkgs.pm_.c:20
-msgid "mandatory"
-msgstr "ret-grońs"
+#: ../../partition_table_raw.pm_.c:161
+msgid ""
+"Something bad is happening on your 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 trash"
+msgstr ""
-#: ../../pkgs.pm_.c:21
+#: ../../pkgs.pm_.c:24
msgid "must have"
msgstr "a rankfec'h kaout"
-#: ../../pkgs.pm_.c:22
+#: ../../pkgs.pm_.c:25
msgid "important"
msgstr "a-bouez"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "very nice"
msgstr "brav-tre"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "nice"
msgstr "brav"
-#: ../../pkgs.pm_.c:26 ../../pkgs.pm_.c:27
-msgid "interesting"
-msgstr "dedennus"
-
-#: ../../pkgs.pm_.c:28 ../../pkgs.pm_.c:29 ../../pkgs.pm_.c:30
-#: ../../pkgs.pm_.c:31
+#: ../../pkgs.pm_.c:28
msgid "maybe"
msgstr "marteze"
-#: ../../pkgs.pm_.c:34
-msgid "i18n (important)"
-msgstr "i18n (a-bouez)"
-
-#: ../../pkgs.pm_.c:35
-msgid "i18n (very nice)"
-msgstr "i18n (brav-tre)"
-
-#: ../../pkgs.pm_.c:36
-msgid "i18n (nice)"
-msgstr "i18n (brav)"
-
-#: ../../printer.pm_.c:19
+#: ../../printer.pm_.c:20
msgid "Local printer"
msgstr "Moullerez lec'hel"
-#: ../../printer.pm_.c:20
+#: ../../printer.pm_.c:21
#, fuzzy
msgid "Remote printer"
msgstr "Dibarzhoů ar voullerez lpd a-bell"
-#: ../../printer.pm_.c:21 ../../printerdrake.pm_.c:410
-#, fuzzy
-msgid "Remote CUPS server"
-msgstr "Steud a-bell"
-
-#: ../../printer.pm_.c:22
+#: ../../printer.pm_.c:23
#, fuzzy
msgid "Remote lpd server"
msgstr "lpd a-bell"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:24
#, fuzzy
msgid "Network printer (socket)"
msgstr "Dibarzhoů ar voullerez NetWare"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:25
msgid "SMB/Windows 95/98/NT"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:26
msgid "NetWare"
msgstr "NetWare"
-#: ../../printer.pm_.c:26 ../../printerdrake.pm_.c:154
-#: ../../printerdrake.pm_.c:156
+#: ../../printer.pm_.c:27 ../../printerdrake.pm_.c:158
+#: ../../printerdrake.pm_.c:160
#, fuzzy
msgid "Printer Device URI"
msgstr "Trobarzhell ar voullerez"
#: ../../printerdrake.pm_.c:19
-msgid "Detecting devices..."
-msgstr "O tinoiń trobarzhelloů..."
-
-#: ../../printerdrake.pm_.c:19
msgid "Test ports"
msgstr "Amprouiń ar porzhioů"
-#: ../../printerdrake.pm_.c:35
+#: ../../printerdrake.pm_.c:40
#, c-format
msgid "A printer, model \"%s\", has been detected on "
msgstr "Ur voullerez, doare \"%s\", zo bet dinoet war "
-#: ../../printerdrake.pm_.c:48
+#: ../../printerdrake.pm_.c:52
msgid "Local Printer Device"
msgstr "Trobarzhell voullerez lec'hel"
-#: ../../printerdrake.pm_.c:49
+#: ../../printerdrake.pm_.c:53
msgid ""
"What device is your printer connected to \n"
"(note that /dev/lp0 is equivalent to LPT1:)?\n"
@@ -5428,15 +5839,15 @@ msgstr ""
"Ouzh pe drobarzhell eo luget ho moullerez \n"
"(taolit evezh /dev/lp0 a zo kevatal da LPT1:) ?\n"
-#: ../../printerdrake.pm_.c:51
+#: ../../printerdrake.pm_.c:55
msgid "Printer Device"
msgstr "Trobarzhell ar voullerez"
-#: ../../printerdrake.pm_.c:70
+#: ../../printerdrake.pm_.c:74
msgid "Remote lpd Printer Options"
msgstr "Dibarzhoů ar voullerez lpd a-bell"
-#: ../../printerdrake.pm_.c:71
+#: ../../printerdrake.pm_.c:75
msgid ""
"To use a remote lpd print queue, you need to supply\n"
"the hostname of the printer server and the queue name\n"
@@ -5446,19 +5857,19 @@ msgstr ""
"pourvezań anv ostiz ar servijer moullań hag anv as steud\n"
"war ar servijer-se ma zlefe bezań kaset an dleadoů moullań."
-#: ../../printerdrake.pm_.c:74
+#: ../../printerdrake.pm_.c:78
msgid "Remote hostname"
msgstr "Anv an ostiz a-bell"
-#: ../../printerdrake.pm_.c:75
+#: ../../printerdrake.pm_.c:79
msgid "Remote queue"
msgstr "Steud a-bell"
-#: ../../printerdrake.pm_.c:84
+#: ../../printerdrake.pm_.c:88
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Dibarzhoů moullań SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:85
+#: ../../printerdrake.pm_.c:89
msgid ""
"To print to a SMB printer, you need to provide the\n"
"SMB host name (Note! It may be different from its\n"
@@ -5472,27 +5883,27 @@ msgstr ""
"kement hag anv rannet ar voullerez a glaskit tizhout ha ne vern pe\n"
"ditour a anv arveriad, tremenger ha strollad labour en implij."
-#: ../../printerdrake.pm_.c:90
+#: ../../printerdrake.pm_.c:94
msgid "SMB server host"
msgstr "Anv ar servijer SMB"
-#: ../../printerdrake.pm_.c:91
+#: ../../printerdrake.pm_.c:95
msgid "SMB server IP"
msgstr "IP ar servijer SMB"
-#: ../../printerdrake.pm_.c:92
+#: ../../printerdrake.pm_.c:96
msgid "Share name"
msgstr "Anv rannet"
-#: ../../printerdrake.pm_.c:95
+#: ../../printerdrake.pm_.c:99
msgid "Workgroup"
msgstr "Strollad labour"
-#: ../../printerdrake.pm_.c:120
+#: ../../printerdrake.pm_.c:124
msgid "NetWare Printer Options"
msgstr "Dibarzhoů ar voullerez NetWare"
-#: ../../printerdrake.pm_.c:121
+#: ../../printerdrake.pm_.c:125
msgid ""
"To print to a NetWare printer, you need to provide the\n"
"NetWare print server name (Note! it may be different from its\n"
@@ -5504,52 +5915,52 @@ msgstr ""
"anv ostiz TCP/IP !) kement hag anv ar steud moullań evit ar voullerez\n"
"a glaskit tizhout ha ne vern pe anv arveriad ha tremenger en implij."
-#: ../../printerdrake.pm_.c:125
+#: ../../printerdrake.pm_.c:129
msgid "Printer Server"
msgstr "Servijer moullań"
-#: ../../printerdrake.pm_.c:126
+#: ../../printerdrake.pm_.c:130
msgid "Print Queue Name"
msgstr "Anv ar steud moullań"
-#: ../../printerdrake.pm_.c:138
+#: ../../printerdrake.pm_.c:142
#, fuzzy
msgid "Socket Printer Options"
msgstr "Dibarzhoů ar voullerez NetWare"
-#: ../../printerdrake.pm_.c:139
+#: ../../printerdrake.pm_.c:143
msgid ""
"To print to a socket printer, you need to provide the\n"
"hostname of the printer and optionally the port number."
msgstr ""
-#: ../../printerdrake.pm_.c:141
+#: ../../printerdrake.pm_.c:145
#, fuzzy
msgid "Printer Hostname"
msgstr "Dibarzhoů ar voullerez"
-#: ../../printerdrake.pm_.c:142 ../../printerdrake.pm_.c:417
+#: ../../printerdrake.pm_.c:146 ../../printerdrake.pm_.c:422
#, fuzzy
msgid "Port"
msgstr "Paour"
-#: ../../printerdrake.pm_.c:155
+#: ../../printerdrake.pm_.c:159
msgid "You can specify directly the URI to access the printer with CUPS."
msgstr ""
-#: ../../printerdrake.pm_.c:188 ../../printerdrake.pm_.c:240
+#: ../../printerdrake.pm_.c:192 ../../printerdrake.pm_.c:244
msgid "What type of printer do you have?"
msgstr "Peseurt moullerez hoc'h eus ?"
-#: ../../printerdrake.pm_.c:200 ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:204 ../../printerdrake.pm_.c:305
msgid "Do you want to test printing?"
msgstr "Ha mennout a rit amprouiń moullań skrid ?"
-#: ../../printerdrake.pm_.c:203 ../../printerdrake.pm_.c:318
+#: ../../printerdrake.pm_.c:207 ../../printerdrake.pm_.c:316
msgid "Printing test page(s)..."
msgstr "O voullań pajenn(oů) skrid..."
-#: ../../printerdrake.pm_.c:210 ../../printerdrake.pm_.c:326
+#: ../../printerdrake.pm_.c:214 ../../printerdrake.pm_.c:324
#, c-format
msgid ""
"Test page(s) have been sent to the printer daemon.\n"
@@ -5566,7 +5977,7 @@ msgstr ""
"\n"
"Ha mont a ra en-dro reizh ?"
-#: ../../printerdrake.pm_.c:214 ../../printerdrake.pm_.c:330
+#: ../../printerdrake.pm_.c:218 ../../printerdrake.pm_.c:328
msgid ""
"Test page(s) have been sent to the printer daemon.\n"
"This may take a little time before printer start.\n"
@@ -5576,83 +5987,79 @@ msgstr ""
"Ur pennadig e c'hell padout a-raok ma loc'hfe a voullerez.\n"
"Ha mont a ra en-dro reizh ?"
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:234
msgid "Yes, print ASCII test page"
msgstr "Ya, moullit ur bajenn arnod ASCII"
-#: ../../printerdrake.pm_.c:231
+#: ../../printerdrake.pm_.c:235
msgid "Yes, print PostScript test page"
msgstr "Ya, moullit ur bajenn arnod PostScript"
-#: ../../printerdrake.pm_.c:232
+#: ../../printerdrake.pm_.c:236
msgid "Yes, print both test pages"
msgstr "Ya, moullit an div bajenn arnod"
-#: ../../printerdrake.pm_.c:239
+#: ../../printerdrake.pm_.c:243
msgid "Configure Printer"
msgstr "Kefluniań ar voullerez"
-#: ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:273
msgid "Printer options"
msgstr "Dibarzhoů ar voullerez"
-#: ../../printerdrake.pm_.c:273
+#: ../../printerdrake.pm_.c:274
msgid "Paper Size"
msgstr "Ment ar paper"
-#: ../../printerdrake.pm_.c:274
+#: ../../printerdrake.pm_.c:275
msgid "Eject page after job?"
msgstr "Stlepel ar bajenn goude moullań ?"
-#: ../../printerdrake.pm_.c:279
+#: ../../printerdrake.pm_.c:280
msgid "Uniprint driver options"
msgstr "Dibarzhoů ar sturier Uniprint"
-#: ../../printerdrake.pm_.c:280
+#: ../../printerdrake.pm_.c:281
msgid "Color depth options"
msgstr "Dibarzhoů donder liv"
-#: ../../printerdrake.pm_.c:282
+#: ../../printerdrake.pm_.c:283
msgid "Print text as PostScript?"
msgstr "Moullań skrid evel PostScript ?"
-#: ../../printerdrake.pm_.c:283
-msgid "Reverse page order"
-msgstr "Eilpennań urzh ar pajennoů"
-
#: ../../printerdrake.pm_.c:285
msgid "Fix stair-stepping text?"
msgstr "Kempenn an efed-diri ?"
-#: ../../printerdrake.pm_.c:288
+#: ../../printerdrake.pm_.c:287
msgid "Number of pages per output pages"
msgstr "Niver a bajennoů dre bajenn ziskas"
-#: ../../printerdrake.pm_.c:289
+#: ../../printerdrake.pm_.c:288
msgid "Right/Left margins in points (1/72 of inch)"
msgstr "Marzoů Dehoů/Kleiz e poentoů (1/72 ur meudad)"
-#: ../../printerdrake.pm_.c:290
+#: ../../printerdrake.pm_.c:289
msgid "Top/Bottom margins in points (1/72 of inch)"
msgstr "Marzoů Krec'h/Traoń e poentoů (1/72 ur meudad)"
-#: ../../printerdrake.pm_.c:293
+#: ../../printerdrake.pm_.c:291
msgid "Extra GhostScript options"
msgstr "Dibarzhoů GhostScript ouzhpenn"
-#: ../../printerdrake.pm_.c:296
+#: ../../printerdrake.pm_.c:293
msgid "Extra Text options"
msgstr "Dibarzhoů skrid ouzhpenn"
-#: ../../printerdrake.pm_.c:346
-msgid "Printer"
-msgstr "Moullerez"
+#: ../../printerdrake.pm_.c:295
+msgid "Reverse page order"
+msgstr "Eilpennań urzh ar pajennoů"
-#: ../../printerdrake.pm_.c:347
+#: ../../printerdrake.pm_.c:345
msgid "Would you like to configure a printer?"
msgstr "Mennout a rit kefluniań ur voullerez ?"
-#: ../../printerdrake.pm_.c:350
+#: ../../printerdrake.pm_.c:351
msgid ""
"Here are the following print queues.\n"
"You can add some more or change the existing ones."
@@ -5660,37 +6067,37 @@ msgstr ""
"Setu da heul ar steudadoů moullań.\n"
"Gallout a rit ouzhpennań lod pe gemmań a re a zo."
-#: ../../printerdrake.pm_.c:365
+#: ../../printerdrake.pm_.c:370
#, fuzzy
msgid "CUPS starting"
msgstr "O vrasjediń"
-#: ../../printerdrake.pm_.c:365
+#: ../../printerdrake.pm_.c:370
msgid "Reading CUPS drivers database..."
msgstr ""
-#: ../../printerdrake.pm_.c:379 ../../printerdrake.pm_.c:444
-#: ../../printerdrake.pm_.c:457 ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:384 ../../printerdrake.pm_.c:450
+#: ../../printerdrake.pm_.c:471 ../../printerdrake.pm_.c:479
msgid "Select Printer Connection"
msgstr "Diuzit lugerezh ar voullerez"
-#: ../../printerdrake.pm_.c:380 ../../printerdrake.pm_.c:458
+#: ../../printerdrake.pm_.c:385 ../../printerdrake.pm_.c:472
msgid "How is the printer connected?"
msgstr "Penaos eo luget ar voullerez ?"
-#: ../../printerdrake.pm_.c:387
+#: ../../printerdrake.pm_.c:392
#, fuzzy
msgid "Select Remote Printer Connection"
msgstr "Diuzit lugerezh ar voullerez"
-#: ../../printerdrake.pm_.c:388
+#: ../../printerdrake.pm_.c:393
msgid ""
"With a remote CUPS server, you do not have to configure\n"
"any printer here; printers will be automatically detected.\n"
"In case of doubt, select \"Remote CUPS server\"."
msgstr ""
-#: ../../printerdrake.pm_.c:411
+#: ../../printerdrake.pm_.c:416
msgid ""
"With a remote CUPS server, you do not have to configure\n"
"any printer here; printers will be automatically detected\n"
@@ -5699,20 +6106,25 @@ msgid ""
"and optionally the port number."
msgstr ""
-#: ../../printerdrake.pm_.c:416
+#: ../../printerdrake.pm_.c:421
#, fuzzy
msgid "CUPS server IP"
msgstr "IP ar servijer SMB"
-#: ../../printerdrake.pm_.c:424
+#: ../../printerdrake.pm_.c:429
msgid "Port number should be numeric"
msgstr ""
-#: ../../printerdrake.pm_.c:445 ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:451 ../../printerdrake.pm_.c:480
msgid "Remove queue"
msgstr "Lemel ar steudad"
-#: ../../printerdrake.pm_.c:446
+#: ../../printerdrake.pm_.c:454
+msgid ""
+"Name of printer should contains only letters, numbers and the underscore"
+msgstr ""
+
+#: ../../printerdrake.pm_.c:461
#, fuzzy
msgid ""
"Every printer need a name (for example lp).\n"
@@ -5725,22 +6137,22 @@ msgstr ""
"ha renkell a zo da implijout evit ar steud-mań ha penaos eo luget ar "
"voullerrez ?"
-#: ../../printerdrake.pm_.c:450
+#: ../../printerdrake.pm_.c:465
#, fuzzy
msgid "Name of printer"
msgstr "Moullerez lec'hel"
-#: ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:466
#, fuzzy
msgid "Description"
msgstr "Spisait dibarzhoů"
-#: ../../printerdrake.pm_.c:452
+#: ../../printerdrake.pm_.c:467
#, fuzzy
msgid "Location"
msgstr "Titouroů"
-#: ../../printerdrake.pm_.c:465
+#: ../../printerdrake.pm_.c:482
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"
@@ -5752,45 +6164,49 @@ msgstr ""
"ha renkell a zo da implijout evit ar steud-mań ha penaos eo luget ar "
"voullerrez ?"
-#: ../../printerdrake.pm_.c:468
+#: ../../printerdrake.pm_.c:489
msgid "Name of queue"
msgstr "Anv ar steud"
-#: ../../printerdrake.pm_.c:469
+#: ../../printerdrake.pm_.c:490
msgid "Spool directory"
msgstr "Renkell ar spool"
-#: ../../printerdrake.pm_.c:470
+#: ../../printerdrake.pm_.c:491
msgid "Printer Connection"
msgstr "Lugerezh ar voullerez"
-#: ../../raid.pm_.c:32
+#: ../../raid.pm_.c:33
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "N'hellan ket ouzhpennań ur parzhadur da RAID md%d _furmadet_"
-#: ../../raid.pm_.c:102
+#: ../../raid.pm_.c:103
msgid "Can't write file $file"
msgstr "N'hellan ket skrivań e $file"
-#: ../../raid.pm_.c:127
+#: ../../raid.pm_.c:128
msgid "mkraid failed"
msgstr "mkraid sac'het"
-#: ../../raid.pm_.c:127
+#: ../../raid.pm_.c:128
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid sac'het (raidtools a vank emichańs ?)"
-#: ../../raid.pm_.c:143
+#: ../../raid.pm_.c:144
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Ket a-walc'h a parzhadurioů evit RAID live %d\n"
-#: ../../services.pm_.c:15
+#: ../../services.pm_.c:16
+msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
+msgstr ""
+
+#: ../../services.pm_.c:17
msgid "Anacron a periodic command scheduler."
msgstr "Anacron, ur steuńvaer urzhiadoů mareadek."
-#: ../../services.pm_.c:16
+#: ../../services.pm_.c:18
msgid ""
"apmd is used for monitoring batery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
@@ -5799,7 +6215,7 @@ msgstr ""
"syslog.\n"
"Gallout a ra ivez servijout da lazhań an ardivink pa vez izel an daspugner."
-#: ../../services.pm_.c:18
+#: ../../services.pm_.c:20
msgid ""
"Runs commands scheduled by the at command at the time specified when\n"
"at was run, and runs batch commands when the load average is low enough."
@@ -5807,7 +6223,7 @@ msgstr ""
"Seveniń an urzhiadoů steuńvaet gant an urzhiad at d'ar pred laket pa 'z eo\n"
"bet sevenet at, ha seveniń urzhiadoů dre lod pa 'z eo izel a-walc'h ar garg."
-#: ../../services.pm_.c:20
+#: ../../services.pm_.c:22
msgid ""
"cron is a standard UNIX program that runs user-specified programs\n"
"at periodic scheduled times. vixie cron adds a number of features to the "
@@ -5819,7 +6235,7 @@ msgstr ""
"arc'hweloů\n"
"d'ar cron UNIX diazez, en o zouez surentez ha dibarzhoů kefluniań gwelloc'h."
-#: ../../services.pm_.c:23
+#: ../../services.pm_.c:25
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
@@ -5830,7 +6246,13 @@ msgstr ""
"Midnight Commander. Reiń a ra tu da seveniń obererezhoů troc'hań-ha-pegań,\n"
"ha skor evit meuziadoů kemperzhel war al letrin."
-#: ../../services.pm_.c:26
+#: ../../services.pm_.c:28
+msgid ""
+"HardDrake runs a hardware probe, and optionally configures\n"
+"new/changed hardware."
+msgstr ""
+
+#: ../../services.pm_.c:30
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files\n"
"and CGI."
@@ -5838,7 +6260,7 @@ msgstr ""
"Ur servijer evit ar Gwiad Bedel eo Apache. Implijet e vez evit servijań\n"
"restroů HTML ha CGI."
-#: ../../services.pm_.c:28
+#: ../../services.pm_.c:32
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
@@ -5853,7 +6275,13 @@ msgstr ""
"eo, en o zouez telnet, ftp, rsh, and rlogin. Dizoberiań inetd a zizoberia\n"
"an holl servijoů m'eo eń atebek warno."
-#: ../../services.pm_.c:32
+#: ../../services.pm_.c:36
+msgid ""
+"Launch packet filtering for Linux kernel 2.2 series, to set\n"
+"up a firewall to protect your machine from network attacks."
+msgstr ""
+
+#: ../../services.pm_.c:38
msgid ""
"This package loads the selected keyboard map as set in\n"
"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
@@ -5863,7 +6291,23 @@ msgstr ""
"/etc/sysconfig/keyboard. Dre ar maveg kbdconfig e c'hell bezań diuzet\n"
"kement-se. Gwell deoc'h leuskel se gweredekaet war darn vuiań an ardivinkoů."
-#: ../../services.pm_.c:35
+#: ../../services.pm_.c:41
+msgid ""
+"Automatic regeneration of kernel header in /boot for\n"
+"/usr/include/linux/{autoconf,version}.h"
+msgstr ""
+
+#: ../../services.pm_.c:43
+msgid "Automatic detection and configuration of hardware at boot."
+msgstr ""
+
+#: ../../services.pm_.c:44
+msgid ""
+"Linuxconf will sometimes arrange to perform various tasks\n"
+"at boot-time to maintain the system configuration."
+msgstr ""
+
+#: ../../services.pm_.c:46
msgid ""
"lpd is the print daemon required for lpr to work properly. It is\n"
"basically a server that arbitrates print jobs to printer(s)."
@@ -5871,7 +6315,13 @@ msgstr ""
"An diaoul moullań ret evit ma dafez en-ro reizh lpr eo lpd. Dre vras\n"
"ez eo ur servijer a vera dleadoů moullań evir ar voullerez(ed)."
-#: ../../services.pm_.c:37
+#: ../../services.pm_.c:48
+msgid ""
+"Linux Virtual Server, used to build a high-performance and highly\n"
+"available server."
+msgstr ""
+
+#: ../../services.pm_.c:50
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
"host names to IP addresses."
@@ -5879,7 +6329,7 @@ msgstr ""
"named (BIND) a zo ur Servijer Anvioů Domani (DNS) a zo implijet evit\n"
"amdreiń anvioů ostiz e chomlec'hioů IP."
-#: ../../services.pm_.c:39
+#: ../../services.pm_.c:52
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
@@ -5887,7 +6337,7 @@ msgstr ""
"Evit marc'hań ha divarc'hań poentoů marc'hań an holl Reizhiadoů Restroů\n"
"Rouedad (NFS), SMB (Lan Manager/Windows) ha NCP (NetWare)."
-#: ../../services.pm_.c:41
+#: ../../services.pm_.c:54
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
@@ -5895,7 +6345,7 @@ msgstr ""
"Oberia/Dizoberia an holl etrefasoů rouedad kefluniet da lańsań\n"
"da vare al loc'hań."
-#: ../../services.pm_.c:43
+#: ../../services.pm_.c:56
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
"This service provides NFS server functionality, which is configured via the\n"
@@ -5905,7 +6355,7 @@ msgstr ""
"Ar servij-mań a bourvez arc'hweloů ur servijer NFS, a vez kefluniaet dre ar\n"
"restr /etc/exports."
-#: ../../services.pm_.c:46
+#: ../../services.pm_.c:59
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP\n"
"networks. This service provides NFS file locking functionality."
@@ -5913,7 +6363,17 @@ msgstr ""
"NFS a zo ur c'homenad brudet evit rannań restroů dre rouedadoů\n"
"TCP/IP. Ar servij-mań a bourvez un arc'hwel morailhań restroů NFS."
-#: ../../services.pm_.c:48
+#: ../../services.pm_.c:61
+msgid ""
+"Automatically switch on numlock key locker under console\n"
+"and XFree at boot."
+msgstr ""
+
+#: ../../services.pm_.c:63
+msgid "Support the OKI 4w and compatible winprinters."
+msgstr ""
+
+#: ../../services.pm_.c:64
msgid ""
"PCMCIA support is usually to support things like ethernet and\n"
"modems in laptops. It won't get started unless configured so it is safe to "
@@ -5925,7 +6385,7 @@ msgstr ""
"diarvar\n"
"e staliań war ardivinkoů n'o deus ket ezhomm anezhań."
-#: ../../services.pm_.c:51
+#: ../../services.pm_.c:67
msgid ""
"The portmapper manages RPC connections, which are used by\n"
"protocols such as NFS and NIS. The portmap server must be running on "
@@ -5937,7 +6397,7 @@ msgstr ""
"en-dro\n"
"war ardivinkoů anezho servijerien komenadoů a implij ar reizhiad RPC."
-#: ../../services.pm_.c:54
+#: ../../services.pm_.c:70
msgid ""
"Postfix is a Mail Transport Agent, which is the program that\n"
"moves mail from one machine to another."
@@ -5945,7 +6405,7 @@ msgstr ""
"Ur Gwazour Treuzdougen Postel eo Postfix, a zo ar goulev a\n"
"zilech posteloů etre un ardivink hag un all."
-#: ../../services.pm_.c:56
+#: ../../services.pm_.c:72
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
@@ -5953,7 +6413,13 @@ msgstr ""
"Enroll hag assav poul dizurzh ar reizhiad evit genel niveroů\n"
"dargouezhek gant gwelloc'h perzhded."
-#: ../../services.pm_.c:58
+#: ../../services.pm_.c:74
+msgid ""
+"Assign raw devices to block devices (such as hard drive\n"
+"partitions), for the use of applications such as Oracle"
+msgstr ""
+
+#: ../../services.pm_.c:76
msgid ""
"The routed daemon allows for automatic IP router table updated via\n"
"the RIP protocol. While RIP is widely used on small networks, more complex\n"
@@ -5964,7 +6430,7 @@ msgstr ""
"bihan,\n"
"ezhomm a zo komenadoů henchań kemplezhoc'h evit rouedadoů rouestlet."
-#: ../../services.pm_.c:61
+#: ../../services.pm_.c:79
msgid ""
"The rstat protocol allows users on a network to retrieve\n"
"performance metrics for any machine on that network."
@@ -5972,7 +6438,7 @@ msgstr ""
"Ar c'homenad rstat a ro tu da implijerien ur rouedad da zastum\n"
"muzulioů barregezh diwar ne vern pe ardivink er rouedad-se."
-#: ../../services.pm_.c:63
+#: ../../services.pm_.c:81
msgid ""
"The rusers protocol allows users on a network to identify who is\n"
"logged in on other responding machines."
@@ -5980,7 +6446,7 @@ msgstr ""
"Ar c'homenad rusers a ro tu da implijerien ur rouedad da anavezout piv\n"
"a zo kevreet ouzh ardivinkoů all a respont."
-#: ../../services.pm_.c:65
+#: ../../services.pm_.c:83
msgid ""
"The rwho protocol lets remote users get a list of all of the users\n"
"logged into a machine running the rwho daemon (similiar to finger)."
@@ -5990,7 +6456,11 @@ msgstr ""
"kevreet ouzh un ardivink ma da en-dro warnań an diaoul rwhod (heńvel ouzh "
"finger)."
-#: ../../services.pm_.c:67
+#: ../../services.pm_.c:85
+msgid "Launch the sound system on your machine"
+msgstr ""
+
+#: ../../services.pm_.c:86
msgid ""
"Syslog is the facility by which many daemons use to log messages\n"
"to various system log files. It is a good idea to always run syslog."
@@ -5999,20 +6469,46 @@ msgstr ""
"c'hemennadoů\n"
"e kerzhlevrioů liesseurt ar reizhiad. Ur mennozh mat eo seveniń ingal syslog."
-#: ../../services.pm_.c:69
-msgid "This startup script try to load your modules for your usb mouse."
-msgstr "An urzhiaoueg loc'hań a glask kargań molladoů evit ho logodenn usb."
+#: ../../services.pm_.c:88
+msgid "Load the drivers for your usb devices."
+msgstr ""
-#: ../../services.pm_.c:70
-msgid "Starts and stops the X Font Server at boot time and shutdown."
+#: ../../services.pm_.c:89
+#, fuzzy
+msgid "Starts the X Font Server (this is mandatory for XFree to run)."
msgstr ""
"Enaou ha dizenaou ar servijer Fontoů X da vare al loc'hań hag al lazhań."
-#: ../../services.pm_.c:99
+#: ../../services.pm_.c:118
msgid "Choose which services should be automatically started at boot time"
msgstr "Dibabit pe servijoů a zlefe bezań lańset ent emgefreek pa loc'her"
-#: ../../standalone/diskdrake_.c:61
+#: ../../services.pm_.c:137
+#, fuzzy
+msgid "running"
+msgstr "Ho evezh"
+
+#: ../../services.pm_.c:137
+#, fuzzy
+msgid "stopped"
+msgstr "Ouzhpennań"
+
+#: ../../services.pm_.c:151
+msgid "Services and deamons"
+msgstr ""
+
+#: ../../services.pm_.c:156
+msgid ""
+"No additionnal information\n"
+"about this service, sorry."
+msgstr ""
+
+#: ../../services.pm_.c:163
+#, fuzzy
+msgid "On boot"
+msgstr "Gwrizienn"
+
+#: ../../standalone/diskdrake_.c:67
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
@@ -6020,31 +6516,16 @@ msgstr ""
"N'hellań ket lenn ho taolenn barzhań, re vrein eo evidon :(\n"
"Klask a rin kenderc'hel en ur ziverkań ar parzhadurioů siek"
-#: ../../standalone/drakboot_.c:25
-msgid "Configure LILO/GRUB"
-msgstr "Kefluniań LILO/GRUB"
-
-#: ../../standalone/drakboot_.c:26
-msgid "Create a boot floppy"
-msgstr "Krouiń ur bladennig loc'hań"
-
-#: ../../standalone/drakboot_.c:28
-msgid "Format floppy"
-msgstr "Furmadiń ar bladennig"
-
-#: ../../standalone/drakboot_.c:40
-msgid "Choice"
-msgstr "Dibab"
-
-#: ../../standalone/drakboot_.c:59
-msgid "Installation of LILO failed. The following error occured:"
-msgstr "Staliadur LILO a zo sac'het. Degouezhet eo ar fazi a heul :"
+#: ../../standalone/drakgw_.c:37 ../../standalone/drakgw_.c:180
+#, fuzzy
+msgid "Internet Connection Sharing"
+msgstr "Lugerezh ar voullerez"
-#: ../../standalone/drakgw_.c:103
+#: ../../standalone/drakgw_.c:118
msgid "Internet Connection Sharing currently enabled"
msgstr ""
-#: ../../standalone/drakgw_.c:104
+#: ../../standalone/drakgw_.c:119
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -6052,26 +6533,35 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:108
+#: ../../standalone/drakgw_.c:123
#, fuzzy
msgid "disable"
msgstr "Taolenn"
-#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:118
-#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:137
+#: ../../standalone/drakgw_.c:123 ../../standalone/drakgw_.c:148
msgid "dismiss"
msgstr ""
-#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:126
+#: ../../standalone/drakgw_.c:123 ../../standalone/drakgw_.c:148
#, fuzzy
msgid "reconfigure"
msgstr "Kefluniań X"
-#: ../../standalone/drakgw_.c:122
+#: ../../standalone/drakgw_.c:126
+#, fuzzy
+msgid "Disabling servers..."
+msgstr "O tinoiń trobarzhelloů..."
+
+#: ../../standalone/drakgw_.c:134
+#, fuzzy
+msgid "Internet connection sharing is now disabled."
+msgstr "Lugerezh ar voullerez"
+
+#: ../../standalone/drakgw_.c:143
msgid "Internet Connection Sharing currently disabled"
msgstr ""
-#: ../../standalone/drakgw_.c:123
+#: ../../standalone/drakgw_.c:144
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -6079,106 +6569,387 @@ msgid ""
"What would you like to do?"
msgstr ""
-#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:127
+#: ../../standalone/drakgw_.c:148
#, fuzzy
msgid "enable"
msgstr "Taolenn"
-#: ../../standalone/drakgw_.c:141
-msgid "Config file content could not be interpreted."
+#: ../../standalone/drakgw_.c:155
+msgid "Enabling servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:151
+#: ../../standalone/drakgw_.c:160
#, fuzzy
-msgid "Internet Connection Sharing"
+msgid "Internet connection sharing is now enabled."
msgstr "Lugerezh ar voullerez"
-#: ../../standalone/drakgw_.c:152
+#: ../../standalone/drakgw_.c:168
+msgid "Config file content could not be interpreted."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:168
+msgid "Unrecognized config file"
+msgstr ""
+
+#: ../../standalone/drakgw_.c:181
msgid ""
-"Your computer can be configured to share its Internet connection.\n"
+"You are about to configure your computer to share its Internet connection.\n"
+"With that feature, other computers on your local network will be able to use "
+"this computer's Internet connection.\n"
"\n"
"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN).\n"
-"\n"
-"Would you like to setup the Internet Connection Sharing?"
+"(LAN)."
msgstr ""
-#: ../../standalone/drakgw_.c:177
-#, fuzzy
-msgid "using module"
-msgstr "Anv domani"
+#: ../../standalone/drakgw_.c:207
+#, c-format
+msgid "Interface %s (using module %s)"
+msgstr ""
-#: ../../standalone/drakgw_.c:210
+#: ../../standalone/drakgw_.c:208
+#, fuzzy, c-format
+msgid "Interface %s"
+msgstr "dedennus"
+
+#: ../../standalone/drakgw_.c:216
msgid "No network adapter on your system!"
msgstr ""
-#: ../../standalone/drakgw_.c:211
+#: ../../standalone/drakgw_.c:217
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
msgstr ""
-#: ../../standalone/drakgw_.c:218
+#: ../../standalone/drakgw_.c:224
+#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
"\n"
-"$interface\n"
+"%s\n"
"\n"
-"Would you like to setup your Local Area Network with that adapter?"
+"I am about to setup your Local Area Network with that adapter."
msgstr ""
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:233
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
msgstr ""
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:242
msgid ""
-"Warning, the network adapter is already configured.\n"
-"Would you like to reconfigure?"
+"Warning, the network adapter is already configured. I will reconfigure it."
msgstr ""
-#: ../../standalone/drakgw_.c:258
+#: ../../standalone/drakgw_.c:253
msgid "Potential LAN address conflict found in current config of $_!\n"
msgstr ""
-#: ../../standalone/drakgw_.c:268
+#: ../../standalone/drakgw_.c:261 ../../standalone/drakgw_.c:267
#, fuzzy
msgid "Firewalling configuration detected!"
msgstr "o lenn ar c'hefluniadur"
-#: ../../standalone/drakgw_.c:269
+#: ../../standalone/drakgw_.c:262 ../../standalone/drakgw_.c:268
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation. Proceed?"
-msgstr ""
-
-#: ../../standalone/drakgw_.c:282
-msgid "Configuring scripts, installing software, starting servers..."
+"need some manual fix after installation."
msgstr ""
-#: ../../standalone/drakgw_.c:282
+#: ../../standalone/drakgw_.c:276
#, fuzzy
msgid "Configuring..."
msgstr "Kefluniań IDE"
-#: ../../standalone/drakgw_.c:313
-msgid "Problems installing package $bin2rpm{$_}"
+#: ../../standalone/drakgw_.c:277
+msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
-#: ../../standalone/drakgw_.c:504
+#: ../../standalone/drakgw_.c:307
+#, fuzzy
+msgid "Problems installing package $_"
+msgstr "O staliań ar pakad %s"
+
+#: ../../standalone/drakgw_.c:590
msgid "Congratulations!"
msgstr "Gourc'hemennoů!"
-#: ../../standalone/drakgw_.c:505
+#: ../../standalone/drakgw_.c:591
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
"Area Network, using automatic network configuration (DHCP)."
msgstr ""
-#: ../../standalone/draksec_.c:28
+#: ../../standalone/drakgw_.c:608
+msgid "The setup has already been done, but it's currently disabled."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:609
+msgid "The setup has already been done, and it's currently enabled."
+msgstr ""
+
+#: ../../standalone/drakgw_.c:610
+#, fuzzy
+msgid "No Internet Connection Sharing has ever been configured."
+msgstr "Lugerezh ar voullerez"
+
+#: ../../standalone/drakgw_.c:615
+#, fuzzy
+msgid "Internet connection sharing configuration"
+msgstr "Lugerezh ar voullerez"
+
+#: ../../standalone/drakgw_.c:622
+#, fuzzy, c-format
+msgid ""
+"Welcome to the Internet Connection Sharing utility!\n"
+"\n"
+"%s\n"
+"\n"
+"Click on Configure to launch the setup wizard."
+msgstr "Lugerezh ar voullerez"
+
+#: ../../standalone/draknet_.c:59
+#, fuzzy, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Kefluniadur ar rouedad"
+
+#: ../../standalone/draknet_.c:66 ../../standalone/draknet_.c:537
+#, fuzzy
+msgid "Profile: "
+msgstr "marc'hań sac'het :"
+
+#: ../../standalone/draknet_.c:74
+msgid "Del profile..."
+msgstr ""
+
+#: ../../standalone/draknet_.c:80
+msgid "Profile to delete:"
+msgstr ""
+
+#: ../../standalone/draknet_.c:108
+msgid "New profile..."
+msgstr ""
+
+#: ../../standalone/draknet_.c:114
+msgid "Name of the profile to create:"
+msgstr ""
+
+#: ../../standalone/draknet_.c:140
+#, fuzzy
+msgid "Hostname: "
+msgstr "Anv an ostiz :"
+
+#: ../../standalone/draknet_.c:147
+#, fuzzy
+msgid "Internet access"
+msgstr "dedennus"
+
+#: ../../standalone/draknet_.c:160
+#, fuzzy
+msgid "Type:"
+msgstr "Seurt : "
+
+#: ../../standalone/draknet_.c:163 ../../standalone/draknet_.c:354
+msgid "Gateway:"
+msgstr "Treuzell :"
+
+#: ../../standalone/draknet_.c:163 ../../standalone/draknet_.c:354
+#, fuzzy
+msgid "Interface:"
+msgstr "dedennus"
+
+#: ../../standalone/draknet_.c:168
+msgid "Status:"
+msgstr ""
+
+#: ../../standalone/draknet_.c:170 ../../standalone/draknet_.c:357
+#: ../../standalone/net_monitor_.c:122 ../../standalone/net_monitor_.c:224
+#, fuzzy
+msgid "Connected"
+msgstr "Anv ar gevreadenn"
+
+#: ../../standalone/draknet_.c:170 ../../standalone/draknet_.c:357
+#: ../../standalone/net_monitor_.c:83 ../../standalone/net_monitor_.c:122
+#: ../../standalone/net_monitor_.c:224
+#, fuzzy
+msgid "Not connected"
+msgstr "Lugerezh ar voullerez"
+
+#: ../../standalone/draknet_.c:173 ../../standalone/draknet_.c:358
+msgid "Connect..."
+msgstr ""
+
+#: ../../standalone/draknet_.c:173 ../../standalone/draknet_.c:358
+msgid "Disconnect..."
+msgstr ""
+
+#: ../../standalone/draknet_.c:191
+#, fuzzy
+msgid "Starting your connection..."
+msgstr "Kefluniań ur rouedad"
+
+#: ../../standalone/draknet_.c:199
+#, fuzzy
+msgid "Closing your connection..."
+msgstr "Kefluniań ur rouedad"
+
+#: ../../standalone/draknet_.c:204
+msgid ""
+"The connection is not closed.\n"
+"Try to do it manually by running\n"
+"/etc/sysconfig/network-scripts/net_cnx_down\n"
+"in root."
+msgstr ""
+
+#: ../../standalone/draknet_.c:207
+#, fuzzy
+msgid "The system is now disconnected."
+msgstr "Da beseurt pladenn e mennit dilec'hiań ?"
+
+#: ../../standalone/draknet_.c:219
+#, fuzzy
+msgid "Configure Internet Access..."
+msgstr "Kefluniań servijoů"
+
+#: ../../standalone/draknet_.c:226 ../../standalone/draknet_.c:409
+#, fuzzy
+msgid "LAN configuration"
+msgstr "Kefluniadur"
+
+#: ../../standalone/draknet_.c:231
+#, fuzzy
+msgid "Adapter"
+msgstr "Bremanaat"
+
+#: ../../standalone/draknet_.c:231
+#, fuzzy
+msgid "Driver"
+msgstr "Servijer"
+
+#: ../../standalone/draknet_.c:231
+#, fuzzy
+msgid "Interface"
+msgstr "dedennus"
+
+#: ../../standalone/draknet_.c:231
+msgid "Protocol"
+msgstr ""
+
+#: ../../standalone/draknet_.c:250
+#, fuzzy
+msgid "Configure Local Area Network..."
+msgstr "Kefluniań ur rouedad"
+
+#: ../../standalone/draknet_.c:283
+#, fuzzy
+msgid "Normal Mode"
+msgstr "Boas"
+
+#: ../../standalone/draknet_.c:288
+msgid "Apply"
+msgstr ""
+
+#: ../../standalone/draknet_.c:307
+#, fuzzy
+msgid "Please Wait... Applying the configuration"
+msgstr "Amprouiń ar c'hefluniadur"
+
+#: ../../standalone/draknet_.c:389
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/draknet_.c:413
+#, fuzzy
+msgid "LAN Configuration"
+msgstr "Kefluniadur"
+
+#: ../../standalone/draknet_.c:421
+#, c-format
+msgid "Adapter %s: %s"
+msgstr ""
+
+#: ../../standalone/draknet_.c:427
+msgid "Boot Protocol"
+msgstr ""
+
+#: ../../standalone/draknet_.c:428
+msgid "Started on boot"
+msgstr ""
+
+#: ../../standalone/draknet_.c:429
+msgid "DHCP client"
+msgstr ""
+
+#: ../../standalone/draknet_.c:464 ../../standalone/draknet_.c:468
+#, fuzzy
+msgid "Disable"
+msgstr "Taolenn"
+
+#: ../../standalone/draknet_.c:464 ../../standalone/draknet_.c:468
+#, fuzzy
+msgid "Enable"
+msgstr "Taolenn"
+
+#: ../../standalone/draknet_.c:502
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/draknet_.c:526
+#, fuzzy
+msgid "Internet connection configuration"
+msgstr "Lugerezh ar voullerez"
+
+#: ../../standalone/draknet_.c:530
+#, fuzzy
+msgid "Internet Connection Configuration"
+msgstr "Lugerezh ar voullerez"
+
+#: ../../standalone/draknet_.c:539
+#, fuzzy
+msgid "Connection type: "
+msgstr "Anv ar gevreadenn"
+
+#: ../../standalone/draknet_.c:545
+msgid "Parameters"
+msgstr ""
+
+#: ../../standalone/draknet_.c:558
+#, fuzzy
+msgid "Provider dns 1 (optional)"
+msgstr "Dibarzhoů ar voullerez"
+
+#: ../../standalone/draknet_.c:559
+#, fuzzy
+msgid "Provider dns 2 (optional)"
+msgstr "Dibarzhoů ar voullerez"
+
+#: ../../standalone/draknet_.c:572
+msgid "Ethernet Card"
+msgstr ""
+
+#: ../../standalone/draknet_.c:573
+msgid "DHCP Client"
+msgstr ""
+
+#: ../../standalone/draksec_.c:21
+msgid "Welcome To Crackers"
+msgstr "Bezit deuet mat, preizherien !"
+
+#: ../../standalone/draksec_.c:22
+msgid "Poor"
+msgstr "Paour"
+
+#: ../../standalone/draksec_.c:26
+msgid "Paranoid"
+msgstr "Ankeniet"
+
+#: ../../standalone/draksec_.c:29
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -6188,7 +6959,7 @@ msgstr ""
"aesoc'h da implijout, hogen kizidig-tre : arabat e implj evit un ardivink\n"
"kevreet ouzh lod all pe ouzh ar genrouedad. N'eus ket a haeziń dre dremenger."
-#: ../../standalone/draksec_.c:31
+#: ../../standalone/draksec_.c:32
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -6196,7 +6967,7 @@ msgstr ""
"Gweredekaet eo bremań an tremenger, hogen dierbedet eo c'hoazh an implij en "
"ur rouedad"
-#: ../../standalone/draksec_.c:32
+#: ../../standalone/draksec_.c:33
msgid ""
"Few improvements for this security level, the main one is that there are\n"
"more security warnings and checks."
@@ -6204,7 +6975,7 @@ msgstr ""
"Nebeut a wellaenoů evit al live surentez-mań, an hini pouezusań eo bezań\n"
"muioc'h a evezhiadennoů hag a wiriadennoů surentez."
-#: ../../standalone/draksec_.c:34
+#: ../../standalone/draksec_.c:35
msgid ""
"This is the standard security recommended for a computer that will be used\n"
"to connect to the Internet as a client. There are now security checks. "
@@ -6214,7 +6985,7 @@ msgstr ""
"evit kevreań evel arval ouzh ar Genrouedad. Bremań ez eus gwiriadennoů "
"surentez."
-#: ../../standalone/draksec_.c:36
+#: ../../standalone/draksec_.c:37
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -6227,7 +6998,7 @@ msgstr ""
"servijer\n"
"o tigemer kevreadennoů a-berzh arvaloů niverus."
-#: ../../standalone/draksec_.c:39
+#: ../../standalone/draksec_.c:40
msgid ""
"We take level 4 features, but now the system is entirely closed.\n"
"Security features are at their maximum."
@@ -6235,19 +7006,24 @@ msgstr ""
"Kemer a reomp arc'hweloů al live 4, hogen bremań eo peurserret ar reizhiad.\n"
"Arc'hweloů surentez a zo en o muiań"
-#: ../../standalone/draksec_.c:49
+#: ../../standalone/draksec_.c:52
msgid "Setting security level"
msgstr "O termeniń al live surentez"
-#: ../../standalone/drakxconf_.c:21
+#: ../../standalone/drakxconf_.c:44
+#, fuzzy
+msgid "Control Center"
+msgstr "Anv ar gevreadenn"
+
+#: ../../standalone/drakxconf_.c:45
msgid "Choose the tool you want to use"
msgstr "Dibabit ar benveg a vennit staliań"
-#: ../../standalone/keyboarddrake_.c:14
-msgid "usage: keyboarddrake [--expert]\n"
+#: ../../standalone/keyboarddrake_.c:16
+msgid "usage: keyboarddrake [--expert] [keyboard]\n"
msgstr ""
-#: ../../standalone/keyboarddrake_.c:27
+#: ../../standalone/keyboarddrake_.c:36
msgid "Do you want the BackSpace to return Delete in console?"
msgstr ""
@@ -6272,474 +7048,862 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr ""
-#: ../../standalone/mousedrake_.c:32
+#: ../../standalone/mousedrake_.c:39
msgid "no serial_usb found\n"
msgstr "serial_usb kavet ebet\n"
-#: ../../standalone/mousedrake_.c:37
+#: ../../standalone/mousedrake_.c:43
msgid "Emulate third button?"
msgstr "Kendarvan an trede nozelenn ?"
-#: ../../standalone/mousedrake_.c:41
-msgid "Which serial port is your mouse connected to?"
-msgstr "Ouzh pe borzh a-steud eo luget ho logodenn ?"
-
-#: ../../standalone/rpmdrake_.c:25
-msgid "reading configuration"
-msgstr "o lenn ar c'hefluniadur"
-
-#: ../../standalone/rpmdrake_.c:45 ../../standalone/rpmdrake_.c:50
-#: ../../standalone/rpmdrake_.c:253
-msgid "File"
-msgstr "Restr"
-
-#: ../../standalone/rpmdrake_.c:48 ../../standalone/rpmdrake_.c:229
-#: ../../standalone/rpmdrake_.c:253 ../../standalone/rpmdrake_.c:269
-msgid "Search"
-msgstr "Klask"
-
-#: ../../standalone/rpmdrake_.c:49 ../../standalone/rpmdrake_.c:56
-msgid "Package"
-msgstr "Pakad"
-
-#: ../../standalone/rpmdrake_.c:51
-msgid "Text"
-msgstr "Skrid"
-
-#: ../../standalone/rpmdrake_.c:53
-msgid "Tree"
-msgstr "Gwezenn"
-
-#: ../../standalone/rpmdrake_.c:54
-msgid "Sort by"
-msgstr "Rummań dre"
-
-#: ../../standalone/rpmdrake_.c:55
-msgid "Category"
-msgstr "Rummad"
-
-#: ../../standalone/rpmdrake_.c:58
-msgid "See"
-msgstr "Sellet"
-
-#: ../../standalone/rpmdrake_.c:59 ../../standalone/rpmdrake_.c:163
-msgid "Installed packages"
-msgstr "Pakadoů staliet"
-
-#: ../../standalone/rpmdrake_.c:60
-msgid "Available packages"
-msgstr "Pakadoů hegerz"
-
-#: ../../standalone/rpmdrake_.c:62
-msgid "Show only leaves"
-msgstr "Diskouez an delioů hepken"
-
-#: ../../standalone/rpmdrake_.c:67
-msgid "Expand all"
-msgstr "Astenn pep tra"
-
-#: ../../standalone/rpmdrake_.c:68
-msgid "Collapse all"
-msgstr "Plegań pep tra"
-
-#: ../../standalone/rpmdrake_.c:70
-msgid "Configuration"
-msgstr "Kefluniadur"
+#: ../../standalone/net_monitor_.c:40 ../../standalone/net_monitor_.c:52
+#, fuzzy
+msgid "Network Monitoring"
+msgstr "Kefluniadur ar rouedad"
-#: ../../standalone/rpmdrake_.c:71
-msgid "Add location of packages"
-msgstr "Ouzhpennań lec'hiadur ar pakadoů"
+#: ../../standalone/net_monitor_.c:56
+msgid "Statistics"
+msgstr ""
-#: ../../standalone/rpmdrake_.c:75
-msgid "Update location"
-msgstr "Bremanaat al lec'hiadur"
+#: ../../standalone/net_monitor_.c:59
+msgid "Sending Speed: "
+msgstr ""
-#: ../../standalone/rpmdrake_.c:79 ../../standalone/rpmdrake_.c:328
-msgid "Remove"
-msgstr "Dilemel"
+#: ../../standalone/net_monitor_.c:61
+msgid "Receiving Speed: "
+msgstr ""
-#: ../../standalone/rpmdrake_.c:100
-msgid "Configuration: Add Location"
-msgstr "Kefluniadur : Ouzhpennań al lec'hiadur"
+#: ../../standalone/net_monitor_.c:66
+#, fuzzy
+msgid "Close"
+msgstr "Logodenn USB"
-#: ../../standalone/rpmdrake_.c:103
-msgid "Find Package"
-msgstr "Kavout ur pakad"
+#: ../../standalone/net_monitor_.c:100 ../../standalone/net_monitor_.c:104
+#, fuzzy
+msgid "Connecting to Internet "
+msgstr "Anv ar gevreadenn"
-#: ../../standalone/rpmdrake_.c:104
-msgid "Find Package containing file"
-msgstr "Kavout ur pakad ennań ur restr"
+#: ../../standalone/net_monitor_.c:100 ../../standalone/net_monitor_.c:104
+#, fuzzy
+msgid "Disconnecting from Internet "
+msgstr "Anv ar gevreadenn"
-#: ../../standalone/rpmdrake_.c:105
-msgid "Toggle between Installed and Available"
-msgstr "Gwintań etre Staliet hag Hegerz"
+#: ../../standalone/net_monitor_.c:114
+#, fuzzy
+msgid "Disconnection from Internet failed."
+msgstr "Anv ar gevreadenn"
-#: ../../standalone/rpmdrake_.c:139
-msgid "Files:\n"
-msgstr "Restroů :\n"
+#: ../../standalone/net_monitor_.c:115
+#, fuzzy
+msgid "Disconnection from Internet complete."
+msgstr "Anv ar gevreadenn"
-#: ../../standalone/rpmdrake_.c:161 ../../standalone/rpmdrake_.c:209
-msgid "Uninstall"
-msgstr "Distaliań"
+#: ../../standalone/net_monitor_.c:117
+#, fuzzy
+msgid "Connection complete."
+msgstr "Anv ar gevreadenn"
-#: ../../standalone/rpmdrake_.c:163
-msgid "Choose package to install"
-msgstr "Dibabit pakadoů da staliań"
+#: ../../standalone/net_monitor_.c:118
+msgid ""
+"Connection failed.\n"
+"Verify your configuration in the Mandrake Control Center."
+msgstr ""
-#: ../../standalone/rpmdrake_.c:190
-msgid "Checking dependencies"
-msgstr "O wiriań sujedigezhioů"
+#: ../../standalone/net_monitor_.c:188
+msgid "sent: "
+msgstr ""
-#: ../../standalone/rpmdrake_.c:190 ../../standalone/rpmdrake_.c:409
-msgid "Wait"
-msgstr "Gortoz"
+#: ../../standalone/net_monitor_.c:191
+msgid "received: "
+msgstr ""
-#: ../../standalone/rpmdrake_.c:209
-msgid "The following packages are going to be uninstalled"
-msgstr "Ar pakadoů a-heul a zo war-nes bezań distaliet"
+#: ../../standalone/net_monitor_.c:222
+#, fuzzy
+msgid "Connect"
+msgstr "Anv ar gevreadenn"
-#: ../../standalone/rpmdrake_.c:210
-msgid "Uninstalling the RPMs"
-msgstr "O tistaliań ar RPMoů"
+#: ../../standalone/net_monitor_.c:222
+#, fuzzy
+msgid "Disconnect"
+msgstr "Lugerezh ar voullerez"
-#: ../../standalone/rpmdrake_.c:229 ../../standalone/rpmdrake_.c:269
-msgid "Regexp"
-msgstr "Regexp"
+#: ../../standalone/tinyfirewall_.c:29
+#, fuzzy
+msgid "Firewalling Configuration"
+msgstr "o lenn ar c'hefluniadur"
-#: ../../standalone/rpmdrake_.c:229
-msgid "Which package are looking for"
-msgstr "Pe bakad a glask"
+#: ../../standalone/tinyfirewall_.c:42
+#, fuzzy
+msgid "Firewalling configuration"
+msgstr "o lenn ar c'hefluniadur"
-#: ../../standalone/rpmdrake_.c:238 ../../standalone/rpmdrake_.c:262
-#: ../../standalone/rpmdrake_.c:278
-#, c-format
-msgid "%s not found"
-msgstr "%s ket kavet"
+#: ../../standalone/tinyfirewall_.c:77
+msgid ""
+"Firewalling\n"
+"\n"
+"You already have set up a firewall.\n"
+"Click on Configure to change or remove the firewall"
+msgstr ""
-#: ../../standalone/rpmdrake_.c:238 ../../standalone/rpmdrake_.c:262
-#: ../../standalone/rpmdrake_.c:278
-msgid "No match"
-msgstr "Klotadur ebet"
+#: ../../standalone/tinyfirewall_.c:81
+msgid ""
+"Firewalling\n"
+"\n"
+"Click on Configure to set up a standard firewall"
+msgstr ""
-#: ../../standalone/rpmdrake_.c:238 ../../standalone/rpmdrake_.c:262
-#: ../../standalone/rpmdrake_.c:278
-msgid "No more match"
-msgstr "Klotadur ouzphenn ebet"
+#: ../../tinyfirewall.pm_.c:10
+msgid ""
+"tinyfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Linux Mandrake machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
-#: ../../standalone/rpmdrake_.c:246
+#: ../../tinyfirewall.pm_.c:15
msgid ""
-"rpmdrake is currently in ``low memory'' mode.\n"
-"I'm going to relaunch rpmdrake to allow searching files"
+"We'll now ask you questions about which services you'd like to allow\n"
+"the Internet to connect to. Please think carefully about these\n"
+"questions, as your computer's security is important.\n"
+"\n"
+"Please, if you're not currently using one of these services, firewall\n"
+"it off. You can change this configuration anytime you like by\n"
+"re-running this application!"
msgstr ""
-"Emań rpmdrake er mod ``memor izel'' evit poent.\n"
-"Adlańsań a rin rpmdrake tuchantik evit aotren da glask restroů"
-#: ../../standalone/rpmdrake_.c:253
-msgid "Which file are you looking for?"
-msgstr "Pe restr emaoc'h o klask ?"
+#: ../../tinyfirewall.pm_.c:22
+msgid ""
+"Are you running a web server on this machine that you need the whole\n"
+"Internet to see? If you are running a webserver that only needs to be\n"
+"accessed by this machine, you can safely answer NO here.\n"
+"\n"
+msgstr ""
-#: ../../standalone/rpmdrake_.c:269
-msgid "What are looking for?"
-msgstr "Petra emaoc'h o klask ?"
+#: ../../tinyfirewall.pm_.c:27
+msgid ""
+"Are you running a name server on this machine? If you didn't set one\n"
+"up to give away IP and zone information to the whole Internet, please\n"
+"answer no.\n"
+"\n"
+msgstr ""
-#: ../../standalone/rpmdrake_.c:289
-msgid "Give a name (eg: `extra', `commercial')"
-msgstr "Roit din un anv (da sk. `ouzhpenn', `kenwerzhel')"
+#: ../../tinyfirewall.pm_.c:32
+msgid ""
+"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
+"is a telnet-replacement that you might use to login. If you're using\n"
+"telnet now, you should definitely switch to ssh. telnet is not\n"
+"encrypted -- so some attackers can steal your password if you use\n"
+"it. ssh is encrypted and doesn't allow for this eavesdropping."
+msgstr ""
-#: ../../standalone/rpmdrake_.c:291
-msgid "Directory"
-msgstr "Renkell"
+#: ../../tinyfirewall.pm_.c:37
+msgid ""
+"Do you want to allow incoming telnet connections?\n"
+"This is horribly unsafe, as we explained in the previous screen. We\n"
+"strongly recommend answering No here and using ssh in place of\n"
+"telnet.\n"
+msgstr ""
-#: ../../standalone/rpmdrake_.c:294
-msgid "No cdrom available (nothing in /mnt/cdrom)"
-msgstr "Cdrom hegerz ebet (netra e /mnt/cdrom)"
+#: ../../tinyfirewall.pm_.c:42
+msgid ""
+"Are you running an FTP server here that you need accessible to the\n"
+"Internet? If you are, we strongly recommend that you only use it for\n"
+"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
+"attackers, since FTP also uses no encryption for transferring passwords.\n"
+msgstr ""
-#: ../../standalone/rpmdrake_.c:298
-msgid "URL of the directory containing the RPMs"
-msgstr "URL ar renkell enni ar RPMoů"
+#: ../../tinyfirewall.pm_.c:47
+msgid ""
+"Are you running a mail server here? If you're sending you \n"
+"messages through pine, mutt or any other text-based mail client,\n"
+"you probably are. Otherwise, you should firewall this off.\n"
+"\n"
+msgstr ""
-#: ../../standalone/rpmdrake_.c:299
+#: ../../tinyfirewall.pm_.c:52
msgid ""
-"For FTP and HTTP, you need to give the location for hdlist\n"
-"It must be relative to the URL above"
+"Are you running a POP or IMAP server here? This would\n"
+"be used to host non-web-based mail accounts for people via \n"
+"this machine.\n"
+"\n"
msgstr ""
-"Evit FTP hag HTTP eo ret deoc'h reiń lec'hiadur an hdlist\n"
-"Da geńver an URL a-us e rank bezań"
-#: ../../standalone/rpmdrake_.c:302
-msgid "Please submit the following information"
-msgstr "Leugnit ar stlenn a-heul mar plij"
+#: ../../tinyfirewall.pm_.c:57
+msgid ""
+"You appear to be running a 2.2 kernel. If your network IP\n"
+"is automatically set by a computer in your home or office \n"
+"(dynamically assigned), we need to allow for this. Is\n"
+"this the case?\n"
+msgstr ""
-#: ../../standalone/rpmdrake_.c:304
-#, c-format
-msgid "%s is already in use"
-msgstr "War implij eo %s endeo"
+#: ../../tinyfirewall.pm_.c:62
+msgid ""
+"Is your computer getting time syncronized to another computer?\n"
+"Mostly, this is used by medium-large Unix/Linux organizations\n"
+"to synchronize time for logging and such. If you're not part\n"
+"of a larger office and haven't heard of this, you probably \n"
+"aren't."
+msgstr ""
-#: ../../standalone/rpmdrake_.c:315 ../../standalone/rpmdrake_.c:321
-#: ../../standalone/rpmdrake_.c:329
-msgid "Updating the RPMs base"
-msgstr "O vremanaat an diaz RPMoů"
+#: ../../tinyfirewall.pm_.c:67
+msgid ""
+"Configuration complete. May we write these changes to disk?\n"
+"\n"
+"\n"
+"\n"
+msgstr ""
-#: ../../standalone/rpmdrake_.c:328
+#: ../../tinyfirewall.pm_.c:83
#, c-format
-msgid "Going to remove entry %s"
-msgstr "War-nes dilemel an enmont %s"
-
-#: ../../standalone/rpmdrake_.c:360
-msgid "Finding leaves"
-msgstr "O klask delioů"
-
-#: ../../standalone/rpmdrake_.c:360
-msgid "Finding leaves takes some time"
-msgstr "Klask delioů a bad ur frapadig"
-
-# ../../share/compssUsers
-msgid "Graphics Manipulation"
+msgid "Can't open %s: %s\n"
msgstr ""
-# ../../share/compssUsers
-msgid "KDE, QT, Gnome, GTK+"
-msgstr ""
+#: ../../tinyfirewall.pm_.c:85
+#, fuzzy, c-format
+msgid "Can't open %s for writing: %s\n"
+msgstr "Fazi en ur zigeriń %s evit skrivań : %s"
-# ../../share/compssUsers
-msgid "Personnal Finance"
+#: ../../share/compssUsers:999
+msgid "Clients for different protocols including ssh"
msgstr ""
-# ../../share/compssUsers
-msgid "Python, Perl, libraries, tools"
-msgstr ""
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Development"
+msgstr "Diorren/C"
-# ../../share/compssUsers
-msgid "Scientific applications"
-msgstr ""
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Workstation"
+msgstr "Titouroů"
-# ../../share/compssUsers
-msgid "Databases"
+#: ../../share/compssUsers:999
+msgid "Firewall/Router"
msgstr ""
-#, fuzzy
-msgid "Internet"
-msgstr "dedennus"
+#: ../../share/compssUsers:999
+msgid "Personal Information Management"
+msgstr ""
+#: ../../share/compssUsers:999
#, fuzzy
msgid "Multimedia - Graphics"
msgstr "Liesvedia"
-# ../../share/compssUsers
-msgid "editors, shells, file tools, terminals"
-msgstr ""
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Internet"
+msgstr "dedennus"
+#: ../../share/compssUsers:999
#, fuzzy
-msgid "Development applications"
-msgstr "Diorren"
+msgid "Network Computer (client)"
+msgstr "Dibarzhoů ar voullerez NetWare"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Audio-related tools: mp3 or midi players, mixers, etc"
msgstr ""
-msgid "Multimedia"
-msgstr "Liesvedia"
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Internet station"
+msgstr "Kefluniań ar proksioů"
+#: ../../share/compssUsers:999
msgid "Office"
msgstr "Burev"
-# ../../share/compssUsers
-msgid "Sciences"
-msgstr ""
-
-# ../../share/compssUsers
-msgid ""
-"Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and file "
-"transfer tools"
-msgstr ""
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Multimedia station"
+msgstr "Liesvedia"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid ""
"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
"browse the Web"
msgstr ""
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "C and C++ development libraries, programs and include files"
msgstr ""
-# ../../share/compssUsers
-msgid "Communication facilities"
+#: ../../share/compssUsers:999
+msgid "Domain Name and Network Information Server"
msgstr ""
-msgid "KDE"
-msgstr "KDE"
-
-# ../../share/compssUsers
-msgid "Personnal Information Management"
-msgstr ""
-
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Programs to manage your finance, such as gnucash"
msgstr ""
-#, fuzzy
-msgid "Gnome"
-msgstr "Graet"
+#: ../../share/compssUsers:999
+msgid "PostgreSQL or MySQL database server"
+msgstr ""
-#, fuzzy
-msgid "Internet Tools"
-msgstr "Kefluniań ar proksioů"
+#: ../../share/compssUsers:999
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr ""
+#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Teuliadur"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr ""
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Utilities"
msgstr ""
+#: ../../share/compssUsers:999
+msgid "DNS/NIS "
+msgstr ""
+
+#: ../../share/compssUsers:999
+msgid "Graphical Environment"
+msgstr ""
+
+#: ../../share/compssUsers:999
#, fuzzy
msgid "Multimedia - Sound"
msgstr "Liesvedia"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Amusement programs: arcade, boards, strategy, etc"
msgstr ""
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Video players and editors"
msgstr ""
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Console Tools"
msgstr ""
-#, fuzzy
-msgid "Development other"
-msgstr "Diorren"
-
-# ../../share/compssUsers
-msgid "Databases clients and servers (mysql and postgresql)"
+#: ../../share/compssUsers:999
+msgid "Sound and video playing/editing programs"
msgstr ""
-# ../../share/compssUsers
-msgid "Sound and video playing/editing programs"
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Scientific Workstation"
+msgstr "Titouroů"
+
+#: ../../share/compssUsers:999
+msgid "Editors, shells, file tools, terminals"
msgstr ""
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
msgstr ""
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid ""
"A graphical environment with user-friendly set of applications and desktop "
"tools"
msgstr ""
-# ../../share/compssUsers
-msgid "Games"
+#: ../../share/compssUsers:999
+msgid "Postfix mail server, Inn news server"
msgstr ""
-#, fuzzy
-msgid "Development C/C++"
-msgstr "Diorren"
+#: ../../share/compssUsers:999
+msgid "Games"
+msgstr ""
+#: ../../share/compssUsers:999
#, fuzzy
msgid "Multimedia - Video"
msgstr "Liesvedia"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Network Computer server"
+msgstr "Dibarzhoů ar voullerez NetWare"
+
+#: ../../share/compssUsers:999
msgid "Graphics programs such as The Gimp"
msgstr ""
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Office Workstation"
+msgstr "Titouroů"
+
+#: ../../share/compssUsers:999
msgid ""
"The K Desktop Environment, the basic graphical environment with a collection "
"of accompanying tools"
msgstr ""
-# ../../share/compssUsers
-msgid "Tools to create and burn CD's"
+#: ../../share/compssUsers:999
+msgid "More Graphical Desktops (Gnome, IceWM)"
msgstr ""
-# ../../share/compssUsers
-msgid "More Graphical Desktops (Gnome, IceWM)"
+#: ../../share/compssUsers:999
+msgid "Tools to create and burn CD's"
msgstr ""
+#: ../../share/compssUsers:999
#, fuzzy
msgid "Multimedia - CD Burning"
msgstr "Liesvedia"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Archiving, emulators, monitoring"
msgstr ""
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
+msgid "Database"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid ""
"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
"gnumeric), pdf viewers, etc"
msgstr ""
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
+msgid "Web/FTP"
+msgstr ""
+
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Server"
+msgstr "servijer X"
+
+#: ../../share/compssUsers:999
+msgid "Personal Finance"
+msgstr ""
+
+#: ../../share/compssUsers:999
+msgid "Configuration"
+msgstr "Kefluniadur"
+
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "KDE Workstation"
+msgstr "Titouroů"
+
+#: ../../share/compssUsers:999
msgid "Other Graphical Desktops"
msgstr ""
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
+msgid "Apache, Pro-ftpd"
+msgstr ""
+
+#: ../../share/compssUsers:999
+msgid "Mail/Groupware/News"
+msgstr ""
+
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Gnome Workstation"
+msgstr "Titouroů"
+
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Internet gateway"
+msgstr "dedennus"
+
+#: ../../share/compssUsers:999
msgid "Tools for your Palm Pilot or your Visor"
msgstr ""
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Game station"
+msgstr "Teuliadur"
+
+#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr ""
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Tools to ease the configuration of your computer"
+msgstr "Mennout a rit amprouiń ar c'hefluniadur ?"
+
+#: ../../share/compssUsers:999
msgid "Set of tools for mail, news, web, file transfer, and chat"
msgstr ""
-#~ msgid "Czech"
-#~ msgstr "Tchek"
-
-#~ msgid "Slovakian"
-#~ msgstr "Slovakek"
-
#, fuzzy
-#~ msgid "Reconfigure local network"
-#~ msgstr "Adgefluniań ar rouedad bremań"
+#~ msgid "Lilo/Grub configuration"
+#~ msgstr "Kefluniadur"
#, fuzzy
-#~ msgid "Connect to Internet with a normal modem"
-#~ msgstr "Anv ar gevreadenn"
+#~ msgid "Selected size %d%s"
+#~ msgstr "Diuzit ar restr"
#, fuzzy
-#~ msgid "Connect to Internet using ISDN"
-#~ msgstr "Anv ar gevreadenn"
+#~ msgid "Opening your connection..."
+#~ msgstr "Kefluniań ur rouedad"
#, fuzzy
-#~ msgid "Connect to Internet using DSL (or ADSL)"
-#~ msgstr "Anv ar gevreadenn"
+#~ msgid "Configure..."
+#~ msgstr "Kefluniań IDE"
#, fuzzy
-#~ msgid "Connect to Internet using Cable"
-#~ msgstr "Anv ar gevreadenn"
+#~ msgid "Standard tools"
+#~ msgstr "Diorren"
#, fuzzy
-#~ msgid "Germany"
-#~ msgstr "Alaman"
+#~ msgid "Configuration de Lilo/Grub"
+#~ msgstr "Kefluniadur : Ouzhpennań al lec'hiadur"
+
+#~ msgid "This startup script try to load your modules for your usb mouse."
+#~ msgstr "An urzhiaoueg loc'hań a glask kargań molladoů evit ho logodenn usb."
#, fuzzy
-#~ msgid "Germany (1TR6)"
-#~ msgstr "Alaman"
+#~ msgid "Boot style configuration"
+#~ msgstr "Kefluniadur goude staliań"
+
+#~ msgid "Automatic dependencies"
+#~ msgstr "Sujedigezh emgefreek"
+
+#~ msgid "Configure LILO/GRUB"
+#~ msgstr "Kefluniań LILO/GRUB"
+
+#~ msgid "Create a boot floppy"
+#~ msgstr "Krouiń ur bladennig loc'hań"
+
+#~ msgid "Format floppy"
+#~ msgstr "Furmadiń ar bladennig"
+
+#~ msgid "Choice"
+#~ msgstr "Dibab"
#, fuzzy
-#~ msgid "What do you wish to do?"
-#~ msgstr "Petra a vennit ober ? "
+#~ msgid "gMonitor"
+#~ msgstr "Skramm"
#, fuzzy
-#~ msgid "Install/Rescue"
-#~ msgstr "Staliań"
+#~ msgid ""
+#~ "You can now select some miscellaneous options for your system.\n"
+#~ "\n"
+#~ "* Use hard drive optimizations: this option can improve hard disk "
+#~ "performance but is only for advanced users. Some buggy\n"
+#~ " chipsets can ruin your data, so beware. Note that the kernel has a builtin "
+#~ "blacklist of drives and chipsets, but if\n"
+#~ " you want to avoid bad surprises, leave this option unset.\n"
+#~ "\n"
+#~ "\n"
+#~ "* Choose security level: you can choose a security level for your system. "
+#~ "Please refer to the manual for complete\n"
+#~ " information. Basically, if you don't know what to choose, keep the default "
+#~ "option.\n"
+#~ "\n"
+#~ "\n"
+#~ "* Precise RAM if needed: unfortunately, there is no standard method to ask "
+#~ "the BIOS about the amount of RAM present in\n"
+#~ " your computer. As consequence, Linux may fail to detect your amount of RAM "
+#~ "correctly. If this is the case, you can\n"
+#~ " specify the correct amount or RAM here. Please note that a difference of 2 "
+#~ "or 4 MB between detected memory and memory\n"
+#~ " present in your system is normal.\n"
+#~ "\n"
+#~ "\n"
+#~ "* Removable media automounting: if you would prefer not to manually mount "
+#~ "removable media (CD-Rom, floppy, Zip, etc.) by\n"
+#~ " typing \"mount\" and \"umount\", select this option.\n"
+#~ "\n"
+#~ "\n"
+#~ "* Clean \"/tmp\" at each boot: if you want delete all files and directories "
+#~ "stored in \"/tmp\" when you boot your system,\n"
+#~ " select this option.\n"
+#~ "\n"
+#~ "\n"
+#~ "* Enable num lock at startup: if you want NumLock key enabled after booting, "
+#~ "select this option. Please note that you\n"
+#~ " should not enable this option on laptops and that NumLock may or may not "
+#~ "work under X."
+#~ msgstr ""
+#~ "Gallout a rit bremań diuz bibarzhoů a bep seurt evit ho reizhiad.\n"
+#~ "\n"
+#~ " - Implijit gwellaennoů ar bladenn galet : Gwellaat dehaezadur ar bladenn "
+#~ "galet\n"
+#~ " a c'hell an dibarzh-mań, evit implijerien barrek hepken : amredoů "
+#~ "dreinek a\n"
+#~ " c'hell freuziń ho roadoů, diwallit 'ta. Ur roll parzhoů siek a zeu gant "
+#~ "ar\n"
+#~ " graońiell, laoskit an dibarzh didermenet avat evit bezań kuit a "
+#~ "souezhadenn.\n"
+#~ "\n"
+#~ " - Dibabit al live surentez : Gallout a rit dibab ul live surentez evit ho\n"
+#~ " reizhiad. Sellit en dornlevr evit muioc'h a ditouroů mar plij. Dre vras "
+#~ ":\n"
+#~ " ma ne ouzit ket, diuzit \"Etre\" ; ma vennit da vat kaout un ardivink "
+#~ "sur\n"
+#~ " dibabit \"Ankeniet\" met taolit evezh : EL LIVE-SE, N'EO KET AOTREET "
+#~ "EREAŃ\n"
+#~ " EVEL ROOT WAR AL LETRIN ! Ma vennit bezań root, e rankit ereań evel\n"
+#~ " arverdiad hag implijout \"su\" da c'houde. Pelloc'h, na sońjit ket\n"
+#~ " implijout ho ardivink estreget evel servijer. Grit ho sońj.\n"
+#~ "\n"
+#~ " - Spisait RAM diouzh ret : siwazh gant PCoů hiziv, n'eus ket a hentenn\n"
+#~ " standard evit atersiń ar BIOS a-zivout ar c'hementad a RAM hegerz war "
+#~ "ho\n"
+#~ " urzhiataer. Da heul, Linux a c'hell na zinoiń reizh ho kementad a RAM.\n"
+#~ " M'eo kont evel-se e c'hellit spisaat amań ar c'hementad a RAM a zere.\n"
+#~ " Ho evezh : un diforzh a 2 pe 4Mo a zo reizh.\n"
+#~ "\n"
+#~ " - Emvarc'hań ar media lem-laka : Ma gavit gwelloc'h na varc'hań dre an "
+#~ "dorn\n"
+#~ " ar pladennoů lem-laka (CD-ROM, pladennig, Zip) dre urzhiań \"mount\" "
+#~ "hag\n"
+#~ " \"umount\", diuzit an dibarzh-mań.\n"
+#~ "\n"
+#~ " - Enaouiń KrouilhNiv pa loc'her : ma gavit mat KrouilhNiv enaouet pa "
+#~ "loc'her\n"
+#~ " diuzit an dibarzh-mań (Evezh : ne daio ket en-dro dre ret dindan X)."
+
+#~ msgid "Miscellaneous"
+#~ msgstr "A bep seurt"
+
+#~ msgid "Miscellaneous questions"
+#~ msgstr "Goulennoů a bep seurt"
+
+#~ msgid "Can't use supermount in high security level"
+#~ msgstr "N'hellan ket implijout supermount el live surentez uhel"
+
+#~ msgid "First DNS Server"
+#~ msgstr "Servijer DNS kentań"
+
+#~ msgid "Second DNS Server"
+#~ msgstr "Eil servijer DNS"
+
+#~ msgid "loopback"
+#~ msgstr "saveteiń"
+
+#~ msgid "Which bootloader(s) do you want to use?"
+#~ msgstr "Pe garger(ien) loc'hań a vennit imlijout ?"
+
+#~ msgid "Auto install floppy"
+#~ msgstr "Pladennig staliań emgefreek"
+
+#~ msgid "Try to find a modem?"
+#~ msgstr "Klask kavout ur modem ?"
+
+#~ msgid "Multimedia"
+#~ msgstr "Liesvedia"
+
+#~ msgid "KDE"
+#~ msgstr "KDE"
+
+#~ msgid "Configure timezone"
+#~ msgstr "Kefluniań an takad-eur"
+
+#~ msgid "Configure printer"
+#~ msgstr "Kefluniań ar voullerez"
+
+#~ msgid "(may cause data corruption)"
+#~ msgstr "(a c'hell breinań roadoů)"
+
+#~ msgid "Use hard drive optimisations?"
+#~ msgstr "Implijout gwelladur ar bladenn galet ?"
+
+#~ msgid "Enable num lock at startup"
+#~ msgstr "Enaouiń KrouilhNiv pa loc'her"
+
+#~ msgid "DNS server:"
+#~ msgstr "Servijer DNS :"
+
+#~ msgid "Gateway device:"
+#~ msgstr "Trobarzhell an dreuzell :"
+
+#~ msgid "default"
+#~ msgstr "dre ziouer"
+
+#~ msgid "Customized"
+#~ msgstr "Neuziet"
#, fuzzy
-#~ msgid "Rescue"
-#~ msgstr "Adventań"
+#~ msgid ""
+#~ "Are you sure you are an expert? \n"
+#~ "You will be allowed to make powerful but dangerous things here.\n"
+#~ "\n"
+#~ "You will be asked questions such as: ``Use shadow file for passwords?'',\n"
+#~ "are you ready to answer that kind of questions?"
+#~ msgstr ""
+#~ "Ha sur oc'h bezań ur mailh ? \n"
+#~ "Na rit ket goap, traoů galloudus hogen arvarus a vo aotreet deoc'h amań."
+
+#~ msgid "Use shadow file"
+#~ msgstr "Implijout ur restr kuzhet"
+
+#~ msgid "shadow"
+#~ msgstr "kuzhet"
+
+#~ msgid "MD5"
+#~ msgstr "MD5"
+
+#~ msgid "Use MD5 passwords"
+#~ msgstr "Implijout tremegerioů MD5"
+
+#~ msgid "Search"
+#~ msgstr "Klask"
+
+#~ msgid "Package"
+#~ msgstr "Pakad"
+
+#~ msgid "Text"
+#~ msgstr "Skrid"
+
+#~ msgid "Tree"
+#~ msgstr "Gwezenn"
+
+#~ msgid "Sort by"
+#~ msgstr "Rummań dre"
+
+#~ msgid "Category"
+#~ msgstr "Rummad"
+
+#~ msgid "See"
+#~ msgstr "Sellet"
+
+#~ msgid "Installed packages"
+#~ msgstr "Pakadoů staliet"
+
+#~ msgid "Available packages"
+#~ msgstr "Pakadoů hegerz"
+
+#~ msgid "Show only leaves"
+#~ msgstr "Diskouez an delioů hepken"
+
+#~ msgid "Expand all"
+#~ msgstr "Astenn pep tra"
+
+#~ msgid "Collapse all"
+#~ msgstr "Plegań pep tra"
+
+#~ msgid "Add location of packages"
+#~ msgstr "Ouzhpennań lec'hiadur ar pakadoů"
+
+#~ msgid "Update location"
+#~ msgstr "Bremanaat al lec'hiadur"
+
+#~ msgid "Remove"
+#~ msgstr "Dilemel"
+
+#~ msgid "Find Package"
+#~ msgstr "Kavout ur pakad"
+
+#~ msgid "Find Package containing file"
+#~ msgstr "Kavout ur pakad ennań ur restr"
+
+#~ msgid "Toggle between Installed and Available"
+#~ msgstr "Gwintań etre Staliet hag Hegerz"
+
+#~ msgid "Uninstall"
+#~ msgstr "Distaliań"
+
+#~ msgid "Choose package to install"
+#~ msgstr "Dibabit pakadoů da staliań"
+
+#~ msgid "Checking dependencies"
+#~ msgstr "O wiriań sujedigezhioů"
+
+#~ msgid "Wait"
+#~ msgstr "Gortoz"
+
+#~ msgid "The following packages are going to be uninstalled"
+#~ msgstr "Ar pakadoů a-heul a zo war-nes bezań distaliet"
+
+#~ msgid "Uninstalling the RPMs"
+#~ msgstr "O tistaliań ar RPMoů"
+
+#~ msgid "Regexp"
+#~ msgstr "Regexp"
+
+#~ msgid "Which package are looking for"
+#~ msgstr "Pe bakad a glask"
+
+#~ msgid "%s not found"
+#~ msgstr "%s ket kavet"
+
+#~ msgid "No match"
+#~ msgstr "Klotadur ebet"
+
+#~ msgid "No more match"
+#~ msgstr "Klotadur ouzphenn ebet"
+
+#~ msgid ""
+#~ "rpmdrake is currently in ``low memory'' mode.\n"
+#~ "I'm going to relaunch rpmdrake to allow searching files"
+#~ msgstr ""
+#~ "Emań rpmdrake er mod ``memor izel'' evit poent.\n"
+#~ "Adlańsań a rin rpmdrake tuchantik evit aotren da glask restroů"
+
+#~ msgid "Which file are you looking for?"
+#~ msgstr "Pe restr emaoc'h o klask ?"
+
+#~ msgid "What are looking for?"
+#~ msgstr "Petra emaoc'h o klask ?"
+
+#~ msgid "Give a name (eg: `extra', `commercial')"
+#~ msgstr "Roit din un anv (da sk. `ouzhpenn', `kenwerzhel')"
+
+#~ msgid "Directory"
+#~ msgstr "Renkell"
+
+#~ msgid "No cdrom available (nothing in /mnt/cdrom)"
+#~ msgstr "Cdrom hegerz ebet (netra e /mnt/cdrom)"
+
+#~ msgid "URL of the directory containing the RPMs"
+#~ msgstr "URL ar renkell enni ar RPMoů"
+
+#~ msgid ""
+#~ "For FTP and HTTP, you need to give the location for hdlist\n"
+#~ "It must be relative to the URL above"
+#~ msgstr ""
+#~ "Evit FTP hag HTTP eo ret deoc'h reiń lec'hiadur an hdlist\n"
+#~ "Da geńver an URL a-us e rank bezań"
+
+#~ msgid "Please submit the following information"
+#~ msgstr "Leugnit ar stlenn a-heul mar plij"
+
+#~ msgid "%s is already in use"
+#~ msgstr "War implij eo %s endeo"
+
+#~ msgid "Updating the RPMs base"
+#~ msgstr "O vremanaat an diaz RPMoů"
+
+#~ msgid "Going to remove entry %s"
+#~ msgstr "War-nes dilemel an enmont %s"
+
+#~ msgid "Finding leaves"
+#~ msgstr "O klask delioů"
+
+#~ msgid "Finding leaves takes some time"
+#~ msgstr "Klask delioů a bad ur frapadig"
+
+#~ msgid "mandatory"
+#~ msgstr "ret-grońs"
+
+#~ msgid "interesting"
+#~ msgstr "dedennus"
+
+#~ msgid "i18n (important)"
+#~ msgstr "i18n (a-bouez)"
+
+#~ msgid "i18n (very nice)"
+#~ msgstr "i18n (brav-tre)"
+
+#~ msgid "i18n (nice)"
+#~ msgstr "i18n (brav)"
+
+#~ msgid "Which serial port is your mouse connected to?"
+#~ msgstr "Ouzh pe borzh a-steud eo luget ho logodenn ?"
+
+#~ msgid "Czech"
+#~ msgstr "Tchek"
+
+#~ msgid "Slovakian"
+#~ msgstr "Slovakek"
#~ msgid "Which partition type do you want?"
#~ msgstr "Pe seurt parzhadur a vennit ?"
@@ -7040,28 +8204,9 @@ msgstr ""
#~ "ar voullerez, hag evel-just anv ar voullerez. Heńvel tra evit ur\n"
#~ "voullerez NetWare, war-bouez titour ar strollad labour a zo diezhomm."
-#, fuzzy
-#~ msgid ""
-#~ "It is strongly recommended that you answer \"Yes\" here. If you install\n"
-#~ "Microsoft Windows at a later date it will overwrite the boot sector.\n"
-#~ "Unless you have made a bootdisk as suggested, you will not be able to\n"
-#~ "boot into GNU/Linux any more."
-#~ msgstr ""
-#~ "Mar plij, me ho ped, respontit \"Ya\" amań ! Lakaomp da skouer e\n"
-#~ "adstalhit Windows diwezhatoc'h hag e rasklo ar rann loc'hań. Nemet\n"
-#~ "m'ho pije graet ar bladenn loc'hań evel aliet, ne viot ket evit\n"
-#~ "loc'hań Linux e mod ebet ken !"
-
#~ msgid "Forget the changes?"
#~ msgstr "Disońjal ar c'hemmoů"
-#, fuzzy
-#~ msgid "Cable connection"
-#~ msgstr "Lugerezh ar voullerez"
-
-#~ msgid "Host name:"
-#~ msgstr "Anv an ostiz :"
-
#~ msgid "What is the type of your mouse?"
#~ msgstr "Peseurt eo ho logodenn ?"
@@ -7129,9 +8274,6 @@ msgstr ""
#~ msgid "Logitech Bus Mouse"
#~ msgstr "Logodenn bus Logitech"
-#~ msgid "USB Mouse"
-#~ msgstr "Logodenn USB"
-
#~ msgid "USB Mouse (3 buttons or more)"
#~ msgstr "Logodenn USB (3 nozelenn pe vuioc'h)"
@@ -7174,12 +8316,6 @@ msgstr ""
#~ msgid "Show more"
#~ msgstr "Diskouez muioc'h"
-#~ msgid "curly"
-#~ msgstr "rodellek"
-
-#~ msgid "default"
-#~ msgstr "dre ziouer"
-
#~ msgid "tie"
#~ msgstr "frondenn"
@@ -7198,9 +8334,6 @@ msgstr ""
#~ msgid "What is your keyboard layout?"
#~ msgstr "Petra eo reizhadur ho stokellaoueg ?"
-#~ msgid "Normal"
-#~ msgstr "Boas"
-
#~ msgid "Try to find PCMCIA cards?"
#~ msgstr "Klask kavout kartennoů PCMCIA ?"
@@ -7227,9 +8360,6 @@ msgstr ""
#~ msgid "No root partition found"
#~ msgstr "Parzhadur gwrizienn kavet ebet"
-#~ msgid "Can't use broadcast with no NIS domain"
-#~ msgstr "N'hellań ket implijout ar skignań hep domani NIS"
-
#~ msgid "Please choose a partition to use as your root partition."
#~ msgstr ""
#~ "Dibabit ur parzhadur d'ober anezhań ho parzhadur gwrizienn, mar plij."
@@ -7240,9 +8370,6 @@ msgstr ""
#~ msgid ", %U MB"
#~ msgstr ", %U Mo"
-#~ msgid "Automated"
-#~ msgstr "Emgefreek"
-
# NOTE: this message will be displayed by lilo at boot time; that is
# using the BIOS font; that means cp437 charset on 99.99% of PC computers
# out there. It is the nsuggested that for non latin languages an ascii
@@ -7383,3 +8510,156 @@ msgstr ""
#~ msgid "Creating and formatting loopback file %s"
#~ msgstr "O krouiń hag o furmadiń ar restr saveteiń %s"
+
+#~ msgid "Amusements/Games"
+#~ msgstr "Dudi/C'hoarioů"
+
+#~ msgid "Applications/Archiving"
+#~ msgstr "Arloadoů/Diellerezh"
+
+#~ msgid "Applications/CPAN"
+#~ msgstr "Arloadoů/CPAN"
+
+#~ msgid "Applications/Configuration"
+#~ msgstr "Arloadoů/Kefluniań"
+
+#~ msgid "Applications/Engineering"
+#~ msgstr "Arloadoů/Kalvezerezh"
+
+#~ msgid "Applications/File"
+#~ msgstr "Arloadoů/Restr"
+
+#~ msgid "Applications/Finance"
+#~ msgstr "Arloadoů/Arc'hanterezh"
+
+#~ msgid "Applications/Internet"
+#~ msgstr "Arloadoů/Kenrouedad"
+
+#~ msgid "Applications/Multimedia"
+#~ msgstr "Arloadoů/Liesvedia"
+
+#~ msgid "Applications/Networking"
+#~ msgstr "Arloadoů/Rouedad"
+
+#~ msgid "Applications/Productivity"
+#~ msgstr "Arloadoů/Ampletusted"
+
+#~ msgid "Applications/Publishing/TeX"
+#~ msgstr "Arloadoů/Embann/TeX"
+
+#~ msgid "Applications/Text"
+#~ msgstr "Arloadoů/Skrid"
+
+#~ msgid "Base"
+#~ msgstr "Diazez"
+
+#~ msgid "Development/Debuggers"
+#~ msgstr "Diorren/Dizraenerien"
+
+#~ msgid "Development/Languages"
+#~ msgstr "Diorren/Aregoů"
+
+#~ msgid "Development/System"
+#~ msgstr "Diorren/Reizhiad"
+
+#~ msgid "Development/Tools"
+#~ msgstr "Diorren/Binvioů"
+
+#~ msgid "Extensions/Arabic"
+#~ msgstr "Astennoů/Arabeg"
+
+#~ msgid "Extensions/Chinese"
+#~ msgstr "Astennoů/Sineg"
+
+#~ msgid "Extensions/Japanese"
+#~ msgstr "Astennoů/Japaneg"
+
+#~ msgid "Libraries"
+#~ msgstr "Mezarc'hioů"
+
+#~ msgid "Networking/Daemons"
+#~ msgstr "Rouedad/Diaouled"
+
+#~ msgid "Networking/Utilities"
+#~ msgstr "Rouedad/Mavegoů"
+
+#~ msgid "System Environment/Base"
+#~ msgstr "Endro reizhiad/Diazez"
+
+#~ msgid "System Environment/Daemons"
+#~ msgstr "Endro reizhiad/Diaouled"
+
+#~ msgid "User Interface/Desktops"
+#~ msgstr "Etrefas arveriad/Gorretaol"
+
+#~ msgid "User Interface/X"
+#~ msgstr "Etrefas arveriad/X"
+
+#~ msgid "User Interface/X Hardware Support"
+#~ msgstr "Etrefas arveriad/Merań ardivinkaj X"
+
+#~ msgid "Utilities/Archiving"
+#~ msgstr "Mavegoů/Diellerezh"
+
+#~ msgid "Utilities/System"
+#~ msgstr "Mavegoů/Reizhiad"
+
+#~ msgid "Utilities/Text"
+#~ msgstr "Mavegoů/Skrid"
+
+#~ msgid "X11/Amusements"
+#~ msgstr "X11/Dudi"
+
+#~ msgid "X11/Applications"
+#~ msgstr "X11/Arloadoů"
+
+#~ msgid "X11/Applications/Internet"
+#~ msgstr "X11/Arloadoů/Kenrouedad"
+
+#~ msgid "X11/Applications/Networking"
+#~ msgstr "X11/Arloadoů/Rouedad"
+
+#~ msgid "X11/Window Managers"
+#~ msgstr "X11/Merourien prenester"
+
+#~ msgid "Communications"
+#~ msgstr "Kehentiń"
+
+#~ msgid "Databases"
+#~ msgstr "Stlennvonioů"
+
+#~ msgid "Development/C++"
+#~ msgstr "Diorren/C++"
+
+#~ msgid "Development/Databases"
+#~ msgstr "Diorren/Stlennvonioů"
+
+#~ msgid "Development/Kernel"
+#~ msgstr "Diorren/Kraońell"
+
+#~ msgid "Editors"
+#~ msgstr "Aozerien"
+
+#~ msgid "Emulators"
+#~ msgstr "Kendarvanerezh"
+
+#~ msgid "Graphics"
+#~ msgstr "Grafek"
+
+#~ msgid "Publishing"
+#~ msgstr "Embann"
+
+#~ msgid "Shells"
+#~ msgstr "Shelloů"
+
+#~ msgid "Sound"
+#~ msgstr "Son"
+
+#~ msgid "System/Base"
+#~ msgstr "Reizhiad/Diazez"
+
+#~ msgid "System/Fonts/True type"
+#~ msgstr "Reizhiad/Nodrezhoů/True Type"
+
+#~ msgid "System/Libraries"
+#~ msgstr "Reizhiad/Mezarc'hioů"
diff --git a/perl-install/share/po/ca.po b/perl-install/share/po/ca.po
index 21939ccc7..c449dd17a 100644
--- a/perl-install/share/po/ca.po
+++ b/perl-install/share/po/ca.po
@@ -1,45 +1,70 @@
-# SOME DESCRIPTIVE TITLE.
+# drakX translation to Catalan
# Copyright (C) 1999 Free Software Foundation, Inc.
# Copyright (c) 1999 MandrakeSoft
-# Copyright (c) 1999-2000 Softcatalŕ
+# Copyright (c) 1999-2001 Softcatalŕ
#
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2000-11-11 21:39+0100\n"
-"PO-Revision-Date: 2000-10-23 21:33+0200\n"
-"Last-Translator: Quico Llach <traddrake@softcatala.org>\n"
+"POT-Creation-Date: 2001-04-17 16:58+0200\n"
+"PO-Revision-Date: 2001-04-10 23:29+0200\n"
+"Last-Translator: Softcatalŕ <traddrake@softcatala.org>\n"
"Language-Team: Catalan\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../../Xconfigurator.pm_.c:179
+#: ../../Xconfigurator.pm_.c:232
+msgid "Configure all heads independantly"
+msgstr "Configura tots els capçals independentment"
+
+#: ../../Xconfigurator.pm_.c:233
+msgid "Use Xinerama extension"
+msgstr "Utilitza l'extensió Xinerama"
+
+#: ../../Xconfigurator.pm_.c:236
+#, c-format
+msgid "Configure only card \"%s\" (%s)"
+msgstr "Configura només la targeta \"%s\" (%s)"
+
+#: ../../Xconfigurator.pm_.c:239
+msgid "Multi-head configuration"
+msgstr "Configuració Multi-head"
+
+#: ../../Xconfigurator.pm_.c:240
+msgid ""
+"Your system support multiple head configuration.\n"
+"What do you want to do?"
+msgstr ""
+"El vostre sistema permet l'ús d'una configuració de múltiples capçals.\n"
+"Quč voleu fer?"
+
+#: ../../Xconfigurator.pm_.c:249
msgid "Graphic card"
msgstr "Targeta grŕfica"
-#: ../../Xconfigurator.pm_.c:179
+#: ../../Xconfigurator.pm_.c:249
msgid "Select a graphic card"
msgstr "Seleccioneu una targeta grŕfica"
-#: ../../Xconfigurator.pm_.c:180
+#: ../../Xconfigurator.pm_.c:250
msgid "Choose a X server"
msgstr "Escolliu un servidor X"
-#: ../../Xconfigurator.pm_.c:180
+#: ../../Xconfigurator.pm_.c:250
msgid "X server"
msgstr "Servidor X"
-#: ../../Xconfigurator.pm_.c:217 ../../Xconfigurator.pm_.c:223
+#: ../../Xconfigurator.pm_.c:304 ../../Xconfigurator.pm_.c:311
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:220
+#: ../../Xconfigurator.pm_.c:307
msgid "Which configuration of XFree do you want to have?"
msgstr "Quina configuració de l'XFree voleu tenir?"
-#: ../../Xconfigurator.pm_.c:232
+#: ../../Xconfigurator.pm_.c:320
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -49,31 +74,18 @@ msgstr ""
"l'Xfree %s.\n"
"L'XFree %s, que pot tenir un suport millor en 2D, suporta la vostra targeta."
-#: ../../Xconfigurator.pm_.c:234 ../../Xconfigurator.pm_.c:257
+#: ../../Xconfigurator.pm_.c:322 ../../Xconfigurator.pm_.c:355
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"La vostra targeta pot tenir acceleració 3D de maquinari amb l'Xfree %s."
-#: ../../Xconfigurator.pm_.c:236 ../../Xconfigurator.pm_.c:259
+#: ../../Xconfigurator.pm_.c:324 ../../Xconfigurator.pm_.c:357
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "Xfree %s amb acceleració 3D de maquinari"
-#: ../../Xconfigurator.pm_.c:245
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
-"Your card is supported by XFree %s which may have a better support in 2D."
-msgstr ""
-"La vostra targeta pot tenir acceleració 3D de maquinari, perň només amb "
-"l'Xfree %s,\n"
-"TINGUEU EN COMPTE QUE ES TRACTA D'UN SUPORT EXPERIMENTAL; L'ORDINADOR ES POT "
-"PENJAR.\n"
-"L'XFree %s, que pot tenir un suport millor en 2D, suporta la vostra targeta."
-
-#: ../../Xconfigurator.pm_.c:248
+#: ../../Xconfigurator.pm_.c:332 ../../Xconfigurator.pm_.c:346
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -83,32 +95,45 @@ msgstr ""
"TINGUEU EN COMPTE QUE ES TRACTA D'UN SUPORT EXPERIMENTAL; L'ORDINADOR ES POT "
"PENJAR."
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfigurator.pm_.c:334 ../../Xconfigurator.pm_.c:348
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s amb acceleració 3D de maquinari EXPERIMENTAL"
-#: ../../Xconfigurator.pm_.c:265
+#: ../../Xconfigurator.pm_.c:343
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+"La vostra targeta pot tenir acceleració 3D de maquinari, perň només amb "
+"l'Xfree %s,\n"
+"TINGUEU EN COMPTE QUE ES TRACTA D'UN SUPORT EXPERIMENTAL; L'ORDINADOR ES POT "
+"PENJAR.\n"
+"L'XFree %s, que pot tenir un suport millor en 2D, suporta la vostra targeta."
+
+#: ../../Xconfigurator.pm_.c:363
msgid "XFree configuration"
msgstr "Configuració de l'XFree"
-#: ../../Xconfigurator.pm_.c:303
+#: ../../Xconfigurator.pm_.c:396
msgid "Select the memory size of your graphic card"
msgstr "Seleccioneu la mida de memňria de la vostra targeta grŕfica"
-#: ../../Xconfigurator.pm_.c:347
+#: ../../Xconfigurator.pm_.c:443
msgid "Choose options for server"
msgstr "Escolliu les opcions per al servidor"
-#: ../../Xconfigurator.pm_.c:358
+#: ../../Xconfigurator.pm_.c:460
msgid "Choose a monitor"
msgstr "Escolliu un monitor"
-#: ../../Xconfigurator.pm_.c:358
+#: ../../Xconfigurator.pm_.c:460
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:361
+#: ../../Xconfigurator.pm_.c:463
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -131,40 +156,40 @@ msgstr ""
"el podríeu fer malbé.\n"
"En cas de dubte, sigueu conservador amb aquest parŕmetre."
-#: ../../Xconfigurator.pm_.c:368
+#: ../../Xconfigurator.pm_.c:470
msgid "Horizontal refresh rate"
msgstr "Velocitat de refresc horitzontal"
-#: ../../Xconfigurator.pm_.c:368
+#: ../../Xconfigurator.pm_.c:471
msgid "Vertical refresh rate"
msgstr "Velocitat de refresc vertical"
-#: ../../Xconfigurator.pm_.c:407
+#: ../../Xconfigurator.pm_.c:508
msgid "Monitor not configured"
msgstr "El monitor no estŕ configurat"
-#: ../../Xconfigurator.pm_.c:410
+#: ../../Xconfigurator.pm_.c:511
msgid "Graphic card not configured yet"
msgstr "La targeta grŕfica encara no estŕ configurada"
-#: ../../Xconfigurator.pm_.c:413
+#: ../../Xconfigurator.pm_.c:514
msgid "Resolutions not chosen yet"
msgstr "Encara no s'han escollit les resolucions"
-#: ../../Xconfigurator.pm_.c:429
+#: ../../Xconfigurator.pm_.c:530
msgid "Do you want to test the configuration?"
msgstr "Voleu comprovar la configuració?"
-#: ../../Xconfigurator.pm_.c:433
+#: ../../Xconfigurator.pm_.c:534
msgid "Warning: testing this graphic card may freeze your computer"
msgstr ""
"Avís: la comprovació d'aquesta targeta grŕfica pot penjar-vos l'ordinador"
-#: ../../Xconfigurator.pm_.c:436
+#: ../../Xconfigurator.pm_.c:537
msgid "Test of the configuration"
msgstr "Comprova la configuració"
-#: ../../Xconfigurator.pm_.c:475
+#: ../../Xconfigurator.pm_.c:576
msgid ""
"\n"
"try to change some parameters"
@@ -172,146 +197,152 @@ msgstr ""
"\n"
"intenteu canviar alguns parŕmetres"
-#: ../../Xconfigurator.pm_.c:475
+#: ../../Xconfigurator.pm_.c:576
msgid "An error has occurred:"
msgstr "S'ha produďt un error:"
-#: ../../Xconfigurator.pm_.c:497
+#: ../../Xconfigurator.pm_.c:598
#, c-format
msgid "Leaving in %d seconds"
msgstr "Sortida en %d segons"
-#: ../../Xconfigurator.pm_.c:507
+#: ../../Xconfigurator.pm_.c:609
msgid "Is this the correct setting?"
msgstr "És aquest el parŕmetre corrcte?"
-#: ../../Xconfigurator.pm_.c:515
+#: ../../Xconfigurator.pm_.c:617
msgid "An error has occurred, try to change some parameters"
msgstr "S'ha produďt un error, intenteu canviar alguns parŕmetres"
-#: ../../Xconfigurator.pm_.c:552 ../../printerdrake.pm_.c:276
+#: ../../Xconfigurator.pm_.c:663 ../../printerdrake.pm_.c:277
+#: ../../services.pm_.c:125
msgid "Resolution"
msgstr "Resolució"
-#: ../../Xconfigurator.pm_.c:587
+#: ../../Xconfigurator.pm_.c:710
msgid "Choose the resolution and the color depth"
msgstr "Escolliu la resolució i la profunditat de color"
-#: ../../Xconfigurator.pm_.c:589
+#: ../../Xconfigurator.pm_.c:712
#, c-format
msgid "Graphic card: %s"
msgstr "Targeta grŕfica: %s"
-#: ../../Xconfigurator.pm_.c:590
+#: ../../Xconfigurator.pm_.c:713
#, c-format
msgid "XFree86 server: %s"
msgstr "Servidor xFree86: %s"
-#: ../../Xconfigurator.pm_.c:599
+#: ../../Xconfigurator.pm_.c:729 ../../standalone/draknet_.c:280
+#: ../../standalone/draknet_.c:283
+msgid "Expert Mode"
+msgstr "Mode expert"
+
+#: ../../Xconfigurator.pm_.c:730
msgid "Show all"
msgstr "Mostra'ls tots"
-#: ../../Xconfigurator.pm_.c:623
+#: ../../Xconfigurator.pm_.c:773
msgid "Resolutions"
msgstr "Resolucions"
-#: ../../Xconfigurator.pm_.c:1021
+#: ../../Xconfigurator.pm_.c:1299
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Disposició del teclat: %s\n"
-#: ../../Xconfigurator.pm_.c:1022
+#: ../../Xconfigurator.pm_.c:1300
#, c-format
msgid "Mouse type: %s\n"
msgstr "Tipus de ratolí: %s\n"
-#: ../../Xconfigurator.pm_.c:1023
+#: ../../Xconfigurator.pm_.c:1301
#, c-format
msgid "Mouse device: %s\n"
msgstr "Dispositiu del ratolí: %s\n"
-#: ../../Xconfigurator.pm_.c:1024
+#: ../../Xconfigurator.pm_.c:1302
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1025
+#: ../../Xconfigurator.pm_.c:1303
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Sincronització horitzontal del monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1026
+#: ../../Xconfigurator.pm_.c:1304
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Refresc vertical del monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1027
+#: ../../Xconfigurator.pm_.c:1305
#, c-format
msgid "Graphic card: %s\n"
msgstr "Targeta grŕfica: %s\n"
-#: ../../Xconfigurator.pm_.c:1028
+#: ../../Xconfigurator.pm_.c:1306
#, c-format
msgid "Graphic memory: %s kB\n"
msgstr "Memňria grŕfica: %s kB\n"
-#: ../../Xconfigurator.pm_.c:1030
+#: ../../Xconfigurator.pm_.c:1308
#, c-format
msgid "Color depth: %s\n"
msgstr "Profunditat del color: %s\n"
-#: ../../Xconfigurator.pm_.c:1031
+#: ../../Xconfigurator.pm_.c:1309
#, c-format
msgid "Resolution: %s\n"
msgstr "Resolució: %s\n"
-#: ../../Xconfigurator.pm_.c:1033
+#: ../../Xconfigurator.pm_.c:1311
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Servidor xFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1034
+#: ../../Xconfigurator.pm_.c:1312
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Controlador de l'xFree86: %s\n"
-#: ../../Xconfigurator.pm_.c:1053
+#: ../../Xconfigurator.pm_.c:1331
msgid "Preparing X-Window configuration"
msgstr "S'estŕ preparant la configuració de l'X-Window"
-#: ../../Xconfigurator.pm_.c:1067
+#: ../../Xconfigurator.pm_.c:1351
+msgid "What do you want to do?"
+msgstr "Quč voleu fer?"
+
+#: ../../Xconfigurator.pm_.c:1356
msgid "Change Monitor"
msgstr "Canvia el monitor"
-#: ../../Xconfigurator.pm_.c:1068
+#: ../../Xconfigurator.pm_.c:1357
msgid "Change Graphic card"
msgstr "Canvia la targeta grŕfica"
-#: ../../Xconfigurator.pm_.c:1069
+#: ../../Xconfigurator.pm_.c:1359
msgid "Change Server options"
msgstr "Canvia les opcions del servidor"
-#: ../../Xconfigurator.pm_.c:1070
+#: ../../Xconfigurator.pm_.c:1360
msgid "Change Resolution"
msgstr "Canvia la resolució"
-#: ../../Xconfigurator.pm_.c:1071
+#: ../../Xconfigurator.pm_.c:1361
msgid "Show information"
msgstr "Mostra la informació"
-#: ../../Xconfigurator.pm_.c:1072
+#: ../../Xconfigurator.pm_.c:1362
msgid "Test again"
msgstr "Torna-ho a comprovar"
-#: ../../Xconfigurator.pm_.c:1073 ../../standalone/rpmdrake_.c:46
+#: ../../Xconfigurator.pm_.c:1363 ../../bootlook.pm_.c:220
msgid "Quit"
msgstr "Surt"
-#: ../../Xconfigurator.pm_.c:1077 ../../standalone/drakboot_.c:40
-msgid "What do you want to do?"
-msgstr "Quč voleu fer?"
-
-#: ../../Xconfigurator.pm_.c:1084
+#: ../../Xconfigurator.pm_.c:1371
#, c-format
msgid ""
"Keep the changes?\n"
@@ -323,20 +354,20 @@ msgstr ""
"\n"
"%s"
-#: ../../Xconfigurator.pm_.c:1105
+#: ../../Xconfigurator.pm_.c:1392
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Si us plau, torneu a entrar a %s per activar els canvis"
-#: ../../Xconfigurator.pm_.c:1125
+#: ../../Xconfigurator.pm_.c:1412
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Si us plau, sortiu i utilitzeu Ctrl-Alt-Enrere"
-#: ../../Xconfigurator.pm_.c:1128
+#: ../../Xconfigurator.pm_.c:1415
msgid "X at startup"
msgstr "X a l'inici"
-#: ../../Xconfigurator.pm_.c:1129
+#: ../../Xconfigurator.pm_.c:1416
msgid ""
"I can set up your computer to automatically start X upon booting.\n"
"Would you like X to start when you reboot?"
@@ -345,27 +376,6 @@ msgstr ""
"durant l'arrencada.\n"
"Voleu que X s'iniciď quan torneu a arrencar l'ordinador?"
-#: ../../Xconfigurator.pm_.c:1153
-msgid "Autologin"
-msgstr "Entrada automŕtica"
-
-#: ../../Xconfigurator.pm_.c:1154
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"If you don't want to use this feature, click on the cancel button."
-msgstr ""
-"Puc configurar el vostre ordinador de manera que entri automŕticament amb un "
-"nom d'usuari.\n"
-"Si no voleu utilitzar aquesta característica, feu clic al botó Cancelˇla."
-
-#: ../../Xconfigurator.pm_.c:1156
-msgid "Choose the default user:"
-msgstr "Escolliu l'usuri per omissió:"
-
-#: ../../Xconfigurator.pm_.c:1157
-msgid "Choose the window manager to run:"
-msgstr "Escolliu el gestor de finestres per executar:"
-
#: ../../Xconfigurator_consts.pm_.c:6
msgid "256 colors (8 bits)"
msgstr "256 colors (8 bits)"
@@ -414,164 +424,213 @@ msgstr "8 MB"
msgid "16 MB or more"
msgstr "16 MB o més"
-#: ../../Xconfigurator_consts.pm_.c:117 ../../Xconfigurator_consts.pm_.c:118
+#: ../../Xconfigurator_consts.pm_.c:120
msgid "Standard VGA, 640x480 at 60 Hz"
msgstr "VGA estŕndard, 640x480 a 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:119
+#: ../../Xconfigurator_consts.pm_.c:121
msgid "Super VGA, 800x600 at 56 Hz"
msgstr "Super VGA, 800x600 a 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:120
+#: ../../Xconfigurator_consts.pm_.c:122
msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
msgstr "Compatible 8514, 1024x768 a 87 Hz entrellaçada (no 800x600)"
-#: ../../Xconfigurator_consts.pm_.c:121
+#: ../../Xconfigurator_consts.pm_.c:123
msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
msgstr "Super VGA, 1024x768 a 87 Hz entrellaçada, 800x600 a 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:122
+#: ../../Xconfigurator_consts.pm_.c:124
msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
msgstr "Super VGA ampliada, 800x600 a 60 Hz, 640x480 a 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:123
+#: ../../Xconfigurator_consts.pm_.c:125
msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
msgstr "SVGA no entrellaçada, 1024x768 a 60 Hz, 800x600 a 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:124
+#: ../../Xconfigurator_consts.pm_.c:126
msgid "High Frequency SVGA, 1024x768 at 70 Hz"
msgstr "SVGA d'alta freqüčncia, 1024x768 a 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:125
+#: ../../Xconfigurator_consts.pm_.c:127
msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
msgstr "Multi-freqüčncia que pot fer 1280x1024 a 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:126
+#: ../../Xconfigurator_consts.pm_.c:128
msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
msgstr "Multi-freqüčncia que pot fer 1280x1024 a 74 Hz"
-#: ../../Xconfigurator_consts.pm_.c:127
+#: ../../Xconfigurator_consts.pm_.c:129
msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
msgstr "Multi-freqüčncia que pot fer 1280x1024 a 76 Hz"
-#: ../../Xconfigurator_consts.pm_.c:128
+#: ../../Xconfigurator_consts.pm_.c:130
msgid "Monitor that can do 1600x1200 at 70 Hz"
msgstr "Monitor que pot fer 1600x1200 a 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:129
+#: ../../Xconfigurator_consts.pm_.c:131
msgid "Monitor that can do 1600x1200 at 76 Hz"
msgstr "Monitor que pot fer 1600x1200 a 76 Hz"
-#: ../../any.pm_.c:91 ../../any.pm_.c:121 ../../any_new.pm_.c:91
-#: ../../any_new.pm_.c:121
+#: ../../any.pm_.c:99 ../../any.pm_.c:124
msgid "First sector of boot partition"
msgstr "Primer sector de la partició d'arrencada"
-#: ../../any.pm_.c:91 ../../any.pm_.c:121 ../../any.pm_.c:150
-#: ../../any_new.pm_.c:91 ../../any_new.pm_.c:121 ../../any_new.pm_.c:150
+#: ../../any.pm_.c:99 ../../any.pm_.c:124 ../../any.pm_.c:196
msgid "First sector of drive (MBR)"
msgstr "Primer sector de la unitat (MBR)"
-#: ../../any.pm_.c:95 ../../any_new.pm_.c:95
+#: ../../any.pm_.c:103
msgid "SILO Installation"
msgstr "Instalˇlació del SILO"
-#: ../../any.pm_.c:96 ../../any.pm_.c:102 ../../any_new.pm_.c:96
-#: ../../any_new.pm_.c:102
+#: ../../any.pm_.c:104 ../../any.pm_.c:117
msgid "Where do you want to install the bootloader?"
msgstr "On voleu instalˇlar el carregador d'arrencada?"
-#: ../../any.pm_.c:101 ../../any_new.pm_.c:101
+#: ../../any.pm_.c:116
msgid "LILO/grub Installation"
msgstr "Instalˇlació del LILO/grub"
-#: ../../any.pm_.c:111 ../../any_new.pm_.c:111
-#: ../../install_steps_interactive.pm_.c:736
-msgid "None"
-msgstr "Cap"
+#: ../../any.pm_.c:128 ../../any.pm_.c:142
+msgid "SILO"
+msgstr "SILO"
+
+#: ../../any.pm_.c:130
+msgid "LILO with text menu"
+msgstr "LILO amb menú de text"
+
+#: ../../any.pm_.c:131 ../../any.pm_.c:142
+msgid "LILO with graphical menu"
+msgstr "LILO amb menú grŕfic"
-#: ../../any.pm_.c:111 ../../any_new.pm_.c:111
-msgid "Which bootloader(s) do you want to use?"
-msgstr "Quin(s) carregador(s) d'arrencada voleu utilitzar?"
+#: ../../any.pm_.c:134
+msgid "Grub"
+msgstr "Grub"
-#: ../../any.pm_.c:125 ../../any_new.pm_.c:125
+#: ../../any.pm_.c:138
+msgid "Boot from DOS/Windows (loadlin)"
+msgstr "Arrencada des de DOS/Windows (loadlin)"
+
+#: ../../any.pm_.c:140 ../../any.pm_.c:142
+msgid "Yaboot"
+msgstr "Yaboot"
+
+#: ../../any.pm_.c:148 ../../any.pm_.c:179
+msgid "Bootloader main options"
+msgstr "Opcions principals del carregador d'arrencada"
+
+#: ../../any.pm_.c:149 ../../any.pm_.c:180
+msgid "Bootloader to use"
+msgstr "Carregador d'arrencada a utilitzar"
+
+#: ../../any.pm_.c:151
msgid "Bootloader installation"
msgstr "Instalˇlació del carregador d'arrencada"
-#: ../../any.pm_.c:127 ../../any_new.pm_.c:127
+#: ../../any.pm_.c:153 ../../any.pm_.c:182
msgid "Boot device"
msgstr "Dispositiu d'arrencada"
-#: ../../any.pm_.c:128 ../../any_new.pm_.c:128
+#: ../../any.pm_.c:154
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (no funciona en BIOS antics)"
-#: ../../any.pm_.c:129 ../../any_new.pm_.c:129
+#: ../../any.pm_.c:155
msgid "Compact"
msgstr "Compacte"
-#: ../../any.pm_.c:129 ../../any_new.pm_.c:129
+#: ../../any.pm_.c:155
msgid "compact"
msgstr "compacte"
-#: ../../any.pm_.c:130 ../../any.pm_.c:199 ../../any_new.pm_.c:130
-#: ../../any_new.pm_.c:199
+#: ../../any.pm_.c:156 ../../any.pm_.c:255
msgid "Video mode"
msgstr "Mode de vídeo"
-#: ../../any.pm_.c:132 ../../any_new.pm_.c:132
+#: ../../any.pm_.c:158
msgid "Delay before booting default image"
msgstr "Demora abans d'arrencar la imatge predeterminada"
-#: ../../any.pm_.c:134 ../../any_new.pm_.c:134
-#: ../../install_steps_interactive.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:815 ../../netconnect.pm_.c:560
-#: ../../netconnect_new.pm_.c:686 ../../printerdrake.pm_.c:94
-#: ../../printerdrake.pm_.c:128 ../../standalone/adduserdrake_.c:42
+#: ../../any.pm_.c:160 ../../any.pm_.c:737
+#: ../../install_steps_interactive.pm_.c:904 ../../netconnect.pm_.c:627
+#: ../../printerdrake.pm_.c:98 ../../printerdrake.pm_.c:132
+#: ../../standalone/draknet_.c:567
msgid "Password"
msgstr "Contrasenya"
-#: ../../any.pm_.c:135 ../../any_new.pm_.c:135
-#: ../../install_steps_interactive.pm_.c:765
-#: ../../install_steps_interactive.pm_.c:816
-#: ../../standalone/adduserdrake_.c:43
+#: ../../any.pm_.c:161 ../../any.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:905
msgid "Password (again)"
msgstr "Contrasenya (un altre cop)"
-#: ../../any.pm_.c:136 ../../any_new.pm_.c:136
+#: ../../any.pm_.c:162
msgid "Restrict command line options"
msgstr "Limita les opcions de la línia d'ordres"
-#: ../../any.pm_.c:136 ../../any_new.pm_.c:136
+#: ../../any.pm_.c:162
msgid "restrict"
msgstr "limita"
-#: ../../any.pm_.c:142 ../../any_new.pm_.c:142
-msgid "Bootloader main options"
-msgstr "Opcions principals del carregador d'arrencada"
+#: ../../any.pm_.c:164
+msgid "Clean /tmp at each boot"
+msgstr "Buida /tmp en cada arrencada"
-#: ../../any.pm_.c:145 ../../any_new.pm_.c:145
+#: ../../any.pm_.c:165
+#, c-format
+msgid "Precise RAM size if needed (found %d MB)"
+msgstr "Mida exacta de la RAM, si cal (s'han trobat %d MB)"
+
+#: ../../any.pm_.c:167
+msgid "Enable multi profiles"
+msgstr "Habilita perfils múltiples"
+
+#: ../../any.pm_.c:171
+msgid "Give the ram size in MB"
+msgstr "Introduďu la mida de la RAM en Mb"
+
+#: ../../any.pm_.c:173
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"L'opció ``Limita les opcions de la línia d'ordres'' no té cap ús sense una "
"contrasenya"
-#: ../../any.pm_.c:146 ../../any_new.pm_.c:146
-#: ../../install_steps_interactive.pm_.c:774
-#: ../../install_steps_interactive.pm_.c:829
-#: ../../standalone/adduserdrake_.c:56
+#: ../../any.pm_.c:174 ../../any.pm_.c:714
+#: ../../install_steps_interactive.pm_.c:899
msgid "Please try again"
msgstr "Si us plau, torneu-ho a intentar"
-#: ../../any.pm_.c:146 ../../any_new.pm_.c:146
-#: ../../install_steps_interactive.pm_.c:774
-#: ../../install_steps_interactive.pm_.c:829
-#: ../../standalone/adduserdrake_.c:56
+#: ../../any.pm_.c:174 ../../any.pm_.c:714
+#: ../../install_steps_interactive.pm_.c:899
msgid "The passwords do not match"
msgstr "Les contrasenyes no coincideixen"
-#: ../../any.pm_.c:157 ../../any_new.pm_.c:157
+#: ../../any.pm_.c:181
+msgid "Init Message"
+msgstr "Missatge d'inicialització"
+
+#: ../../any.pm_.c:183
+msgid "Open Firmware Delay"
+msgstr "Demora de firmware obert"
+
+#: ../../any.pm_.c:184
+msgid "Kernel Boot Timeout"
+msgstr "Temps mŕxim d'arrencada del nucli"
+
+#: ../../any.pm_.c:185
+msgid "Enable CD Boot?"
+msgstr "Voleu habilitar l'arrencada des de CD?"
+
+#: ../../any.pm_.c:186
+msgid "Enable OF Boot?"
+msgstr "Voleu habilitar l'arrencada des d'OF?"
+
+#: ../../any.pm_.c:187
+msgid "Default OS?"
+msgstr "OS per defecte?"
+
+#: ../../any.pm_.c:209
msgid ""
"Here are the different entries.\n"
"You can add some more or change the existing ones."
@@ -579,143 +638,146 @@ msgstr ""
"Aquestes són les diferents entrades.\n"
"Podeu afegir-ne algunes més o canviar-ne les existents."
-#: ../../any.pm_.c:165 ../../any_new.pm_.c:165 ../../printerdrake.pm_.c:352
-#: ../../standalone/rpmdrake_.c:302
+#: ../../any.pm_.c:219 ../../printerdrake.pm_.c:356
msgid "Add"
msgstr "Afegeix"
-#: ../../any.pm_.c:165 ../../any_new.pm_.c:165 ../../diskdrake.pm_.c:46
-#: ../../install_steps_interactive.pm_.c:809 ../../netconnect.pm_.c:842
-#: ../../netconnect_new.pm_.c:984 ../../printerdrake.pm_.c:352
-#: ../../standalone/adduserdrake_.c:36
+#: ../../any.pm_.c:219 ../../any.pm_.c:725 ../../diskdrake.pm_.c:46
+#: ../../printerdrake.pm_.c:356
msgid "Done"
msgstr "Fet"
-#: ../../any.pm_.c:174 ../../any_new.pm_.c:174
+#: ../../any.pm_.c:219
+#, fuzzy
+msgid "Modify"
+msgstr "Modifica el RAID"
+
+#: ../../any.pm_.c:227
msgid "Which type of entry do you want to add?"
msgstr "Quin tipus d'entrada voleu afegir?"
-#: ../../any.pm_.c:175 ../../any_new.pm_.c:175
+#: ../../any.pm_.c:228
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:175 ../../any_new.pm_.c:175
+#: ../../any.pm_.c:228
msgid "Other OS (SunOS...)"
msgstr "Un altre SO (SunOS...)"
-#: ../../any.pm_.c:175 ../../any_new.pm_.c:175
+#: ../../any.pm_.c:229
+msgid "Other OS (MacOS...)"
+msgstr "Un altre SO (MacOS...)"
+
+#: ../../any.pm_.c:229
msgid "Other OS (windows...)"
msgstr "Un altre SO (Windows...)"
-#: ../../any.pm_.c:196 ../../any_new.pm_.c:196
+#: ../../any.pm_.c:249 ../../any.pm_.c:251
msgid "Image"
msgstr "Imatge"
-#: ../../any.pm_.c:197 ../../any.pm_.c:206 ../../any_new.pm_.c:197
-#: ../../any_new.pm_.c:206
+#: ../../any.pm_.c:252 ../../any.pm_.c:263
msgid "Root"
msgstr "Arrel"
-#: ../../any.pm_.c:198 ../../any_new.pm_.c:198
+#: ../../any.pm_.c:253 ../../any.pm_.c:282
msgid "Append"
msgstr "Afegeix"
-#: ../../any.pm_.c:200 ../../any_new.pm_.c:200
+#: ../../any.pm_.c:257
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:201 ../../any_new.pm_.c:201
+#: ../../any.pm_.c:258
msgid "Read-write"
msgstr "Lectura-escriptura"
-#: ../../any.pm_.c:208 ../../any_new.pm_.c:208
+#: ../../any.pm_.c:265
msgid "Table"
msgstr "Taula"
-#: ../../any.pm_.c:209 ../../any_new.pm_.c:209
+#: ../../any.pm_.c:266
msgid "Unsafe"
msgstr "No segur"
-#: ../../any.pm_.c:215 ../../any_new.pm_.c:215
+#: ../../any.pm_.c:273 ../../any.pm_.c:278 ../../any.pm_.c:281
msgid "Label"
msgstr "Etiqueta"
-#: ../../any.pm_.c:217 ../../any_new.pm_.c:217
+#: ../../any.pm_.c:275 ../../any.pm_.c:286
msgid "Default"
msgstr "Predeterminat"
-#: ../../any.pm_.c:220 ../../any_new.pm_.c:220 ../../install_gtk.pm_.c:82
-#: ../../install_steps_interactive.pm_.c:762 ../../interactive.pm_.c:76
-#: ../../interactive.pm_.c:86 ../../interactive.pm_.c:250
-#: ../../interactive_newt.pm_.c:51 ../../interactive_newt.pm_.c:99
-#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:243
-#: ../../my_gtk.pm_.c:486 ../../my_gtk.pm_.c:661 ../../printerdrake.pm_.c:444
-#: ../../printerdrake.pm_.c:464
-msgid "Ok"
-msgstr "D'acord"
+#: ../../any.pm_.c:283
+msgid "Initrd-size"
+msgstr "Initrd-size"
-#: ../../any.pm_.c:220 ../../any_new.pm_.c:220
+#: ../../any.pm_.c:285
+msgid "NoVideo"
+msgstr "NoVideo"
+
+#: ../../any.pm_.c:293
msgid "Remove entry"
msgstr "Elimina l'entrada"
-#: ../../any.pm_.c:223 ../../any_new.pm_.c:223
+#: ../../any.pm_.c:296
msgid "Empty label not allowed"
msgstr "No es permet una etiqueta buida"
-#: ../../any.pm_.c:224 ../../any_new.pm_.c:224
+#: ../../any.pm_.c:297
msgid "This label is already used"
msgstr "Aquesta etiqueta ja estŕ en ús"
-#: ../../any.pm_.c:500 ../../any_new.pm_.c:492
+#: ../../any.pm_.c:316
+msgid "What type of partitioning?"
+msgstr "Quin tipus de particionament?"
+
+#: ../../any.pm_.c:604
#, c-format
msgid "Found %s %s interfaces"
-msgstr "S'han trobat %s interfícies %s"
+msgstr "S'han trobat interfícies %2$s %1$s"
-#: ../../any.pm_.c:501 ../../any_new.pm_.c:493
+#: ../../any.pm_.c:605
msgid "Do you have another one?"
msgstr "En teniu una altra?"
-#: ../../any.pm_.c:502 ../../any_new.pm_.c:494
+#: ../../any.pm_.c:606
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Teniu alguna interfície %s?"
-#: ../../any.pm_.c:504 ../../any_new.pm_.c:496 ../../interactive.pm_.c:81
-#: ../../my_gtk.pm_.c:485 ../../netconnect.pm_.c:90 ../../netconnect.pm_.c:470
-#: ../../netconnect_new.pm_.c:148 ../../netconnect_new.pm_.c:509
-#: ../../printerdrake.pm_.c:233
+#: ../../any.pm_.c:608 ../../interactive.pm_.c:100 ../../my_gtk.pm_.c:615
+#: ../../printerdrake.pm_.c:237
msgid "No"
msgstr "No"
-#: ../../any.pm_.c:504 ../../any_new.pm_.c:496 ../../interactive.pm_.c:81
-#: ../../my_gtk.pm_.c:485 ../../netconnect.pm_.c:88 ../../netconnect.pm_.c:468
-#: ../../netconnect_new.pm_.c:146 ../../netconnect_new.pm_.c:507
+#: ../../any.pm_.c:608 ../../interactive.pm_.c:100 ../../my_gtk.pm_.c:615
msgid "Yes"
msgstr "Sí"
-#: ../../any.pm_.c:505 ../../any_new.pm_.c:497
+#: ../../any.pm_.c:609
msgid "See hardware info"
msgstr "Mira la informació del maquinari"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:522 ../../any_new.pm_.c:533
+#: ../../any.pm_.c:644
#, c-format
msgid "Installing driver for %s card %s"
msgstr "S'estŕ instalˇlant el programa de control per a la targeta %s %s"
-#: ../../any.pm_.c:523 ../../any_new.pm_.c:534
+#: ../../any.pm_.c:645
#, c-format
msgid "(module %s)"
msgstr "(mňdul %s)"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:534 ../../any_new.pm_.c:545
+#: ../../any.pm_.c:656
#, c-format
msgid "Which %s driver should I try?"
msgstr "Quin programa de control %s he de provar?"
-#: ../../any.pm_.c:542 ../../any_new.pm_.c:553
+#: ../../any.pm_.c:664
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -732,20 +794,20 @@ msgstr ""
"cerqui al vostre ordinador la informació que necessita? Aquesta recerca\n"
"podria blocar l'ordinador, perň aixň no causaria cap dany."
-#: ../../any.pm_.c:547 ../../any_new.pm_.c:558
+#: ../../any.pm_.c:669
msgid "Autoprobe"
msgstr "Exploració automŕtica"
-#: ../../any.pm_.c:547 ../../any_new.pm_.c:558
+#: ../../any.pm_.c:669
msgid "Specify options"
msgstr "Especifica les opcions"
-#: ../../any.pm_.c:551 ../../any_new.pm_.c:562
+#: ../../any.pm_.c:673
#, c-format
msgid "You may now provide its options to module %s."
msgstr "Ara podeu proporcionar les seves opcions per al mňdul %s."
-#: ../../any.pm_.c:557 ../../any_new.pm_.c:568
+#: ../../any.pm_.c:679
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -756,11 +818,11 @@ msgstr ""
"Les opcions estan amb el format ``nom=valor nom2=valor2 ...''.\n"
"Per exemple, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:560 ../../any_new.pm_.c:571
+#: ../../any.pm_.c:682
msgid "Module options:"
msgstr "Opcions del mňdul:"
-#: ../../any.pm_.c:570 ../../any_new.pm_.c:581
+#: ../../any.pm_.c:693
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -769,12 +831,91 @@ msgstr ""
"Ha fallat la cŕrrega del mňdul %s.\n"
"Voleu tornar-ho a intentar amb altres parŕmetres?"
+#: ../../any.pm_.c:711
+#, c-format
+msgid "(already added %s)"
+msgstr "(ja s'ha afegit %s)"
+
+#: ../../any.pm_.c:715
+msgid "This password is too simple"
+msgstr "Aquesta contrasenya és massa senzilla"
+
+#: ../../any.pm_.c:716
+msgid "Please give a user name"
+msgstr "Si us plau, introduďu un nom d'usuari"
+
+#: ../../any.pm_.c:717
+msgid ""
+"The user name must contain only lower cased letters, numbers, `-' and `_'"
+msgstr ""
+"El nom d'usuari només pot contenir lletres en minúscula, números, `-' i `_'"
+
+#: ../../any.pm_.c:718
+msgid "This user name is already added"
+msgstr "Aquest nom d'usuari ja s'ha afegit"
+
+#: ../../any.pm_.c:722
+msgid "Add user"
+msgstr "Afegeix un usuari"
+
+#: ../../any.pm_.c:723
+#, c-format
+msgid ""
+"Enter a user\n"
+"%s"
+msgstr ""
+"Introduďu un usuari\n"
+"%s"
+
+#: ../../any.pm_.c:724
+msgid "Accept user"
+msgstr "Accepta l'usuari"
+
+#: ../../any.pm_.c:735
+msgid "Real name"
+msgstr "Nom real"
+
+#: ../../any.pm_.c:736 ../../printerdrake.pm_.c:97
+#: ../../printerdrake.pm_.c:131
+msgid "User name"
+msgstr "Nom d'usuari"
+
+#: ../../any.pm_.c:739
+msgid "Shell"
+msgstr "Shell"
+
+#: ../../any.pm_.c:741
+msgid "Icon"
+msgstr "Icona"
+
+#: ../../any.pm_.c:762
+msgid "Autologin"
+msgstr "Entrada automŕtica"
+
+#: ../../any.pm_.c:763
+msgid ""
+"I can set up your computer to automatically log on one user.\n"
+"If you don't want to use this feature, click on the cancel button."
+msgstr ""
+"Puc configurar el vostre ordinador de manera que entri automŕticament amb un "
+"nom d'usuari.\n"
+"Si no voleu utilitzar aquesta característica, feu clic al botó Cancelˇla."
+
+#: ../../any.pm_.c:765
+msgid "Choose the default user:"
+msgstr "Escolliu l'usuari per omissió:"
+
+#: ../../any.pm_.c:766
+msgid "Choose the window manager to run:"
+msgstr "Escolliu el gestor de finestres per executar:"
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
#
-#: ../../bootloader.pm_.c:234
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#: ../../bootloader.pm_.c:262
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
@@ -797,57 +938,236 @@ msgstr ""
# The lines must fit on screen, aka length < 80
# and only one line per string for the GRUB messages
#
-#: ../../bootloader.pm_.c:596
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#: ../../bootloader.pm_.c:795
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Benvingut al GRUB, el selector de sistema operatiu!"
-#: ../../bootloader.pm_.c:597
+#: ../../bootloader.pm_.c:796
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr ""
"Utilitzeu les tecles %c i %c per seleccionar quina posició estŕ ressaltada."
-#: ../../bootloader.pm_.c:598
+#: ../../bootloader.pm_.c:797
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Premeu Intro per arrencar el SO seleccionat, 'e' per editar les"
-#: ../../bootloader.pm_.c:599
+#: ../../bootloader.pm_.c:798
msgid "commands before booting, or 'c' for a command-line."
msgstr "ordres prčvies a l'arrencada, o 'c' per obtenir una línia d'ordres."
-#: ../../bootloader.pm_.c:600
+#: ../../bootloader.pm_.c:799
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "La posició ressaltada arrencarŕ automŕticament dintre de %d segons."
-#: ../../bootloader.pm_.c:604
+#: ../../bootloader.pm_.c:803
msgid "not enough room in /boot"
msgstr "no hi ha prou espai a /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:696
+#: ../../bootloader.pm_.c:895
msgid "Desktop"
msgstr "Escriptori"
-#: ../../bootloader.pm_.c:696
+#: ../../bootloader.pm_.c:895
msgid "Start Menu"
msgstr "Menú Inici"
-#: ../../common.pm_.c:610
+#: ../../bootlook.pm_.c:46
+msgid "no help implemented yet.\n"
+msgstr "encara no s'ha implementat cap ajuda.\n"
+
+#: ../../bootlook.pm_.c:62
+msgid "Boot Style Configuration"
+msgstr "Configuració del tipus d'arrencada"
+
+#: ../../bootlook.pm_.c:79
+msgid "/_File"
+msgstr "/_Fitxer"
+
+#: ../../bootlook.pm_.c:81
+msgid "/File/_New"
+msgstr "/Fitxer/_Nou"
+
+#: ../../bootlook.pm_.c:82
+msgid "<control>N"
+msgstr "<control>N"
+
+#: ../../bootlook.pm_.c:84
+msgid "/File/_Open"
+msgstr "/Fitxer/_Obre"
+
+#: ../../bootlook.pm_.c:85
+msgid "<control>O"
+msgstr "<control>O"
+
+#: ../../bootlook.pm_.c:87
+msgid "/File/_Save"
+msgstr "/Fitxer/_Desa"
+
+#: ../../bootlook.pm_.c:88
+msgid "<control>S"
+msgstr "<control>S"
+
+#: ../../bootlook.pm_.c:90
+msgid "/File/Save _As"
+msgstr "/Fitxer/_Anomena i desa"
+
+#: ../../bootlook.pm_.c:91
+msgid "/File/-"
+msgstr "/Fitxer/-"
+
+#: ../../bootlook.pm_.c:93
+msgid "/File/_Quit"
+msgstr "/Fitxer/_Surt"
+
+#: ../../bootlook.pm_.c:94
+msgid "<control>Q"
+msgstr "<control>Q"
+
+#: ../../bootlook.pm_.c:96
+msgid "/_Options"
+msgstr "/_Opcions"
+
+#: ../../bootlook.pm_.c:98
+msgid "/Options/Test"
+msgstr "/Opcions/Prova"
+
+#: ../../bootlook.pm_.c:99
+msgid "/_Help"
+msgstr "/_Ajuda"
+
+#: ../../bootlook.pm_.c:101
+msgid "/Help/_About..."
+msgstr "/Ajuda/_Quant a..."
+
+#: ../../bootlook.pm_.c:111 ../../standalone/drakgw_.c:634
+#: ../../standalone/draknet_.c:262 ../../standalone/tinyfirewall_.c:57
+msgid "Configure"
+msgstr "Configura"
+
+#: ../../bootlook.pm_.c:114
+#, fuzzy, c-format
+msgid ""
+"You are currently using %s as Boot Manager.\n"
+"Click on Configure to launch the setup wizard."
+msgstr ""
+"Benvingut a la utilitat de compartició de la connexió a Internet!\n"
+"\n"
+"%s\n"
+"\n"
+"Feu clic a Configura per executar l'auxiliar de configuració."
+
+#: ../../bootlook.pm_.c:121
+msgid "Lilo/grub mode"
+msgstr "Mode LILO/Grub"
+
+#: ../../bootlook.pm_.c:131
+msgid "NewStyle Categorizing Monitor"
+msgstr "Monitor de categorització NewStyle"
+
+#: ../../bootlook.pm_.c:134
+msgid "NewStyle Monitor"
+msgstr "Monitor NewStyle"
+
+#: ../../bootlook.pm_.c:137
+msgid "Traditional Monitor"
+msgstr "Monitor tradicional"
+
+#: ../../bootlook.pm_.c:140
+msgid "Traditional Gtk+ Monitor"
+msgstr "Monitor Gtk+ tradicional"
+
+#: ../../bootlook.pm_.c:144
+msgid "Launch Aurora at boot time"
+msgstr "Executa l'Aurora durant l'arrencada"
+
+#: ../../bootlook.pm_.c:169
+msgid "Boot mode"
+msgstr "Mode d'arrencada"
+
+#: ../../bootlook.pm_.c:179
+msgid "Launch the X-Window system at start"
+msgstr "Executa el sistema X-Window en iniciar"
+
+#: ../../bootlook.pm_.c:187
+msgid "No, I don't want autologin"
+msgstr "No, no vull l'entrada automŕtica"
+
+#: ../../bootlook.pm_.c:193
+msgid "Yes, I want autologin with this (user, desktop)"
+msgstr "Sí, vull l'entrada automŕtica amb aquest (usuari, escriptori)"
+
+#: ../../bootlook.pm_.c:210
+msgid "System mode"
+msgstr "Mode de sistema"
+
+#: ../../bootlook.pm_.c:218 ../../standalone/draknet_.c:88
+#: ../../standalone/draknet_.c:120 ../../standalone/draknet_.c:184
+#: ../../standalone/draknet_.c:302 ../../standalone/draknet_.c:394
+#: ../../standalone/draknet_.c:471 ../../standalone/draknet_.c:507
+#: ../../standalone/draknet_.c:609
+msgid "OK"
+msgstr "D'acord"
+
+#: ../../bootlook.pm_.c:220 ../../install_steps_gtk.pm_.c:576
+#: ../../interactive.pm_.c:110 ../../interactive.pm_.c:265
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:357
+#: ../../my_gtk.pm_.c:360 ../../my_gtk.pm_.c:616
+#: ../../standalone/drakgw_.c:639 ../../standalone/draknet_.c:95
+#: ../../standalone/draknet_.c:127 ../../standalone/draknet_.c:295
+#: ../../standalone/draknet_.c:483 ../../standalone/draknet_.c:623
+#: ../../standalone/tinyfirewall_.c:63
+msgid "Cancel"
+msgstr "Cancelˇla"
+
+#: ../../bootlook.pm_.c:297
+msgid "can not open /etc/inittab for reading: $!"
+msgstr "no es pot obrir /etc/inittab per a lectura: $!"
+
+#: ../../bootlook.pm_.c:351
+msgid "can not open /etc/sysconfig/autologin for reading: $!"
+msgstr "no es pot obrir /etc/sysconfig/autologin per a lectura: $!"
+
+#: ../../bootlook.pm_.c:416 ../../standalone/drakboot_.c:47
+msgid "Installation of LILO failed. The following error occured:"
+msgstr "Ha fallat la instalˇlació del LILO. S'ha produďt l'error següent:"
+
+#: ../../common.pm_.c:634
+msgid "GB"
+msgstr "GB"
+
+#: ../../common.pm_.c:634
+msgid "KB"
+msgstr "kB"
+
+#: ../../common.pm_.c:634 ../../diskdrake.pm_.c:660
+#: ../../install_steps_graphical.pm_.c:287
+#: ../../install_steps_graphical.pm_.c:334
+msgid "MB"
+msgstr "MB"
+
+#: ../../common.pm_.c:642
+msgid "TB"
+msgstr "TB"
+
+#: ../../common.pm_.c:655
#, c-format
msgid "%d minutes"
msgstr "%d minuts"
-#: ../../common.pm_.c:612
+#: ../../common.pm_.c:657
msgid "1 minute"
msgstr "1 minute"
-#: ../../common.pm_.c:614
+#: ../../common.pm_.c:659
#, c-format
msgid "%d seconds"
msgstr "%d segons"
-#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:427
+#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:462
msgid "Create"
msgstr "Crea"
@@ -855,7 +1175,7 @@ msgstr "Crea"
msgid "Unmount"
msgstr "Desmunta"
-#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:429
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:464
msgid "Delete"
msgstr "Suprimeix"
@@ -863,16 +1183,16 @@ msgstr "Suprimeix"
msgid "Format"
msgstr "Formata"
-#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:610
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:653
msgid "Resize"
msgstr "Canvia la mida"
-#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:427
-#: ../../diskdrake.pm_.c:480
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:462
+#: ../../diskdrake.pm_.c:518
msgid "Type"
msgstr "Tipus"
-#: ../../diskdrake.pm_.c:24 ../../diskdrake.pm_.c:500
+#: ../../diskdrake.pm_.c:24 ../../diskdrake.pm_.c:539
msgid "Mount point"
msgstr "Punt de muntatge"
@@ -912,23 +1232,23 @@ msgstr "Desa al disquet"
msgid "Clear all"
msgstr "Buida-ho tot"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "Format all"
msgstr "Formata-ho tot"
-#: ../../diskdrake.pm_.c:51
+#: ../../diskdrake.pm_.c:55
msgid "Auto allocate"
msgstr "Assigna automŕticament"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:59
msgid "All primary partitions are used"
msgstr "S'utilitzen totes les particions primŕries"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:59
msgid "I can't add any more partition"
msgstr "No puc afegir cap més partició"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:59
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -936,63 +1256,60 @@ msgstr ""
"Per tenir més particions, suprimiu-ne una per poder crear una partició "
"ampliada"
-#: ../../diskdrake.pm_.c:57
-msgid "Rescue partition table"
-msgstr "Rescata la taula de particions"
+#: ../../diskdrake.pm_.c:61
+msgid "Not enough space for auto-allocating"
+msgstr "No hi ha prou espai per a l'assignació automŕtica"
-#: ../../diskdrake.pm_.c:58
+#: ../../diskdrake.pm_.c:63
msgid "Undo"
msgstr "Desfés"
-#: ../../diskdrake.pm_.c:59
+#: ../../diskdrake.pm_.c:64
msgid "Write partition table"
msgstr "Escriu la taula de particions"
-#: ../../diskdrake.pm_.c:60
-msgid "Reload"
-msgstr "Torna a carregar"
-
-#: ../../diskdrake.pm_.c:101
-msgid "loopback"
-msgstr "loopback"
+#: ../../diskdrake.pm_.c:65 ../../install_steps_interactive.pm_.c:185
+msgid "More"
+msgstr "Més"
-#: ../../diskdrake.pm_.c:114
+#: ../../diskdrake.pm_.c:116
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake.pm_.c:114
+#: ../../diskdrake.pm_.c:116
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake.pm_.c:114
+#: ../../diskdrake.pm_.c:116
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake.pm_.c:114
+#: ../../diskdrake.pm_.c:116
msgid "SunOS"
msgstr "SunOS"
-#: ../../diskdrake.pm_.c:114
+#: ../../diskdrake.pm_.c:116
msgid "Swap"
msgstr "Intercanvia"
-#: ../../diskdrake.pm_.c:115
+#: ../../diskdrake.pm_.c:117
msgid "Empty"
msgstr "Buit"
-#: ../../diskdrake.pm_.c:115 ../../mouse.pm_.c:125
+#: ../../diskdrake.pm_.c:117 ../../install_steps_gtk.pm_.c:407
+#: ../../mouse.pm_.c:145
msgid "Other"
msgstr "Altres"
-#: ../../diskdrake.pm_.c:121
+#: ../../diskdrake.pm_.c:123
msgid "Filesystem types:"
msgstr "Tipus de sistema de fitxers"
-#: ../../diskdrake.pm_.c:130
+#: ../../diskdrake.pm_.c:132 ../../install_steps_gtk.pm_.c:577
msgid "Details"
msgstr "Detalls"
-#: ../../diskdrake.pm_.c:144
+#: ../../diskdrake.pm_.c:147
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1004,17 +1321,17 @@ msgstr ""
"Suggereixo que primer en canvieu la mida\n"
"(feu-hi clic i després feu clic a \"Canvia la mida\")"
-#: ../../diskdrake.pm_.c:149
+#: ../../diskdrake.pm_.c:152
msgid "Please make a backup of your data first"
msgstr "Si us plau, feu primer una cňpia de seguretat de les vostres dades"
-#: ../../diskdrake.pm_.c:149 ../../diskdrake.pm_.c:166
-#: ../../diskdrake.pm_.c:175 ../../diskdrake.pm_.c:532
-#: ../../diskdrake.pm_.c:554
+#: ../../diskdrake.pm_.c:152 ../../diskdrake.pm_.c:170
+#: ../../diskdrake.pm_.c:179 ../../diskdrake.pm_.c:570
+#: ../../diskdrake.pm_.c:592
msgid "Read carefully!"
msgstr "Llegiu-ho atentament!"
-#: ../../diskdrake.pm_.c:152
+#: ../../diskdrake.pm_.c:155
msgid ""
"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
"enough)\n"
@@ -1023,77 +1340,81 @@ msgstr ""
"Si penseu utilitzar aboot, assegureu-vos de deixar espai lliure (amb 2.048\n"
"sectors n'hi ha prou) al començament del disc"
-#: ../../diskdrake.pm_.c:166
+#: ../../diskdrake.pm_.c:170
msgid "Be careful: this operation is dangerous."
msgstr "Aneu amb compte: aquesta operació és perillosa."
-#: ../../diskdrake.pm_.c:203 ../../install_steps.pm_.c:73
-#: ../../install_steps_interactive.pm_.c:38
-#: ../../install_steps_interactive.pm_.c:315 ../../standalone/diskdrake_.c:60
-#: ../../standalone/rpmdrake_.c:294 ../../standalone/rpmdrake_.c:304
+#: ../../diskdrake.pm_.c:214 ../../install_steps.pm_.c:72
+#: ../../install_steps_interactive.pm_.c:37
+#: ../../install_steps_interactive.pm_.c:322 ../../standalone/diskdrake_.c:66
msgid "Error"
msgstr "Error"
-#: ../../diskdrake.pm_.c:227 ../../diskdrake.pm_.c:708
+#: ../../diskdrake.pm_.c:238 ../../diskdrake.pm_.c:748
msgid "Mount point: "
msgstr "Punt de muntatge: "
-#: ../../diskdrake.pm_.c:228 ../../diskdrake.pm_.c:269
+#: ../../diskdrake.pm_.c:239 ../../diskdrake.pm_.c:298
msgid "Device: "
msgstr "Dispositiu: "
-#: ../../diskdrake.pm_.c:229
+#: ../../diskdrake.pm_.c:240
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Lletra d'unitat del DOS: %s (només és una suposició)\n"
-#: ../../diskdrake.pm_.c:230 ../../diskdrake.pm_.c:272
+#: ../../diskdrake.pm_.c:244 ../../diskdrake.pm_.c:251
+#: ../../diskdrake.pm_.c:301
msgid "Type: "
msgstr "Tipus: "
-#: ../../diskdrake.pm_.c:231
+#: ../../diskdrake.pm_.c:248
+msgid "Name: "
+msgstr "Nom: "
+
+#: ../../diskdrake.pm_.c:253
#, c-format
msgid "Start: sector %s\n"
msgstr "Inici: sector %s\n"
-#: ../../diskdrake.pm_.c:232
+#: ../../diskdrake.pm_.c:254
#, c-format
-msgid "Size: %d MB"
-msgstr "Mida: %d MB"
+msgid "Size: %s"
+msgstr "Mida: %s"
-#: ../../diskdrake.pm_.c:234
+#: ../../diskdrake.pm_.c:256
#, c-format
msgid ", %s sectors"
msgstr ", %s sectors"
-#: ../../diskdrake.pm_.c:236
+#: ../../diskdrake.pm_.c:258
#, c-format
msgid "Cylinder %d to cylinder %d\n"
msgstr "Cilindre %d a cilindre %d\n"
-#: ../../diskdrake.pm_.c:237
+#: ../../diskdrake.pm_.c:259
msgid "Formatted\n"
msgstr "Formatat\n"
-#: ../../diskdrake.pm_.c:238
+#: ../../diskdrake.pm_.c:260
msgid "Not formatted\n"
msgstr "Sense formatar\n"
-#: ../../diskdrake.pm_.c:239
+#: ../../diskdrake.pm_.c:261
msgid "Mounted\n"
msgstr "Muntat\n"
-#: ../../diskdrake.pm_.c:240
+#: ../../diskdrake.pm_.c:262
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake.pm_.c:241
+#: ../../diskdrake.pm_.c:264
#, c-format
msgid "Loopback file(s): %s\n"
msgstr "Fitxer(s) de loopback: %s\n"
-#: ../../diskdrake.pm_.c:242
+#: ../../diskdrake.pm_.c:265
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -1101,79 +1422,116 @@ msgstr ""
"La partició s'ha arrencat per defecte\n"
" (per a l'arrencada de l'MS-DOS, no per a LILO)\n"
-#: ../../diskdrake.pm_.c:244
+#: ../../diskdrake.pm_.c:267
#, c-format
msgid "Level %s\n"
msgstr "Nivell %s\n"
-#: ../../diskdrake.pm_.c:245
+#: ../../diskdrake.pm_.c:268
#, c-format
msgid "Chunk size %s\n"
msgstr "Mida del tros %s\n"
-#: ../../diskdrake.pm_.c:246
+#: ../../diskdrake.pm_.c:269
#, c-format
msgid "RAID-disks %s\n"
msgstr "Discs RAID %s\n"
-#: ../../diskdrake.pm_.c:248
+#: ../../diskdrake.pm_.c:271
#, c-format
msgid "Loopback file name: %s"
msgstr "Nom del fitxer de loopback: %s"
-#: ../../diskdrake.pm_.c:265
+#: ../../diskdrake.pm_.c:274
+msgid ""
+"\n"
+"Chances are, this partition is\n"
+"a Driver partition, you should\n"
+"probably leave it alone.\n"
+msgstr ""
+"\n"
+"És possible que aquesta partició sigui\n"
+"una partició de programa de control;\n"
+"és millor que no la toqueu.\n"
+
+#: ../../diskdrake.pm_.c:277
+msgid ""
+"\n"
+"This special Bootstrap\n"
+"partition is for\n"
+"dual-booting your system.\n"
+msgstr ""
+"\n"
+"Aquesta partició Bootstrap\n"
+"especial és per arrencar\n"
+"el vostre sistema en dual.\n"
+
+#: ../../diskdrake.pm_.c:294
msgid "Please click on a partition"
msgstr "Si us plau, feu clic a una partició "
-#: ../../diskdrake.pm_.c:270
+#: ../../diskdrake.pm_.c:299
#, c-format
-msgid "Size: %d MB\n"
-msgstr "Mida: %d MB\n"
+msgid "Size: %s\n"
+msgstr "Mida: %s\n"
-#: ../../diskdrake.pm_.c:271
+#: ../../diskdrake.pm_.c:300
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometria: %s cilindres, %s capçals, %s sectors\n"
-#: ../../diskdrake.pm_.c:273
+#: ../../diskdrake.pm_.c:302
+#, c-format
+msgid "LVM-disks %s\n"
+msgstr "Discs LVM %s\n"
+
+#: ../../diskdrake.pm_.c:303
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tipus de taula de particions: %s\n"
-#: ../../diskdrake.pm_.c:274
+#: ../../diskdrake.pm_.c:304
#, c-format
msgid "on bus %d id %d\n"
msgstr "al bus %d id %d\n"
-#: ../../diskdrake.pm_.c:290
+#: ../../diskdrake.pm_.c:320
msgid "Mount"
msgstr "Munta"
-#: ../../diskdrake.pm_.c:292
+#: ../../diskdrake.pm_.c:322
msgid "Active"
msgstr "Actiu"
-#: ../../diskdrake.pm_.c:294
+#: ../../diskdrake.pm_.c:324
msgid "Add to RAID"
msgstr "Afegeix al RAID"
-#: ../../diskdrake.pm_.c:296
+#: ../../diskdrake.pm_.c:326
msgid "Remove from RAID"
msgstr "Elimina del RAID"
-#: ../../diskdrake.pm_.c:298
+#: ../../diskdrake.pm_.c:328
msgid "Modify RAID"
msgstr "Modifica el RAID"
-#: ../../diskdrake.pm_.c:300
+#: ../../diskdrake.pm_.c:330
+msgid "Add to LVM"
+msgstr "Afegeix al LVM"
+
+#: ../../diskdrake.pm_.c:332
+msgid "Remove from LVM"
+msgstr "Elimina del LVM"
+
+#: ../../diskdrake.pm_.c:334
msgid "Use for loopback"
msgstr "Utilitza per a loopback"
-#: ../../diskdrake.pm_.c:307
+#: ../../diskdrake.pm_.c:341
msgid "Choose action"
msgstr "Trieu una acció"
-#: ../../diskdrake.pm_.c:400
+#: ../../diskdrake.pm_.c:435
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1185,7 +1543,7 @@ msgstr ""
"O esteu utilitzant LILO, i no funcionarŕ, o no l'esteu utilitzant i no "
"necessiteu el /boot"
-#: ../../diskdrake.pm_.c:404
+#: ../../diskdrake.pm_.c:439
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1198,7 +1556,7 @@ msgstr ""
"Si teniu previst utilitzar el gestor d'arrencada LILO, penseu d'afegir una "
"partició /boot"
-#: ../../diskdrake.pm_.c:410
+#: ../../diskdrake.pm_.c:445
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1209,57 +1567,57 @@ msgstr ""
"/boot.\n"
"Per tant, assegureu-vos d'afegir una partició /boot"
-#: ../../diskdrake.pm_.c:427 ../../diskdrake.pm_.c:429
+#: ../../diskdrake.pm_.c:462 ../../diskdrake.pm_.c:464
#, c-format
msgid "Use ``%s'' instead"
msgstr "Utilitzeu ``%s'' al seu lloc"
-#: ../../diskdrake.pm_.c:432
+#: ../../diskdrake.pm_.c:468
msgid "Use ``Unmount'' first"
msgstr "Utilitzeu primer ``Unmount''"
-#: ../../diskdrake.pm_.c:433 ../../diskdrake.pm_.c:475
+#: ../../diskdrake.pm_.c:469 ../../diskdrake.pm_.c:513
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Després de canviar el tipus de la partició %s, se'n perdran totes les dades"
-#: ../../diskdrake.pm_.c:445
+#: ../../diskdrake.pm_.c:481
msgid "Continue anyway?"
msgstr "Voleu continuar igualment?"
-#: ../../diskdrake.pm_.c:450
+#: ../../diskdrake.pm_.c:486
msgid "Quit without saving"
msgstr "Surt sense desar"
-#: ../../diskdrake.pm_.c:450
+#: ../../diskdrake.pm_.c:486
msgid "Quit without writing the partition table?"
msgstr "Voleu sortir sense desar la taula de particions?"
-#: ../../diskdrake.pm_.c:478
+#: ../../diskdrake.pm_.c:516
msgid "Change partition type"
msgstr "Canvia el tipus de partició"
-#: ../../diskdrake.pm_.c:479
+#: ../../diskdrake.pm_.c:517
msgid "Which filesystem do you want?"
msgstr "Quin sistema de fitxers voleu?"
-#: ../../diskdrake.pm_.c:482 ../../diskdrake.pm_.c:740
+#: ../../diskdrake.pm_.c:520 ../../diskdrake.pm_.c:780
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "No podeu utilitzar el ReiserFS per a particions inferiors a 32 MB"
-#: ../../diskdrake.pm_.c:498
+#: ../../diskdrake.pm_.c:537
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "On voleu muntar el fitxer de loopback %s?"
-#: ../../diskdrake.pm_.c:499
+#: ../../diskdrake.pm_.c:538
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "On voleu muntar el dispositiu %s?"
-#: ../../diskdrake.pm_.c:504
+#: ../../diskdrake.pm_.c:542
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1267,146 +1625,139 @@ msgstr ""
"No es pot anulˇlar el punt de muntatge, perquč aquesta partició\n"
"s'utilitza per al loopback. Elimineu primer el loopback"
-#: ../../diskdrake.pm_.c:523
+#: ../../diskdrake.pm_.c:561
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Després de formatar la partició %s, se'n perdran totes les dades"
-#: ../../diskdrake.pm_.c:525
+#: ../../diskdrake.pm_.c:563
msgid "Formatting"
msgstr "S'estŕ formatant"
-#: ../../diskdrake.pm_.c:526
+#: ../../diskdrake.pm_.c:564
#, c-format
msgid "Formatting loopback file %s"
msgstr "S'estŕ formatant el fitxer de loopback %s"
-#: ../../diskdrake.pm_.c:527 ../../install_steps_interactive.pm_.c:402
+#: ../../diskdrake.pm_.c:565 ../../install_steps_interactive.pm_.c:430
#, c-format
msgid "Formatting partition %s"
msgstr "S'estŕ formatant la partició %s"
-#: ../../diskdrake.pm_.c:532
+#: ../../diskdrake.pm_.c:570
msgid "After formatting all partitions,"
msgstr "Després de formatar totes les particions,"
-#: ../../diskdrake.pm_.c:532
+#: ../../diskdrake.pm_.c:570
msgid "all data on these partitions will be lost"
msgstr "totes les dades d'aquestes particions s'hauran perdut"
-#: ../../diskdrake.pm_.c:538
+#: ../../diskdrake.pm_.c:576
msgid "Move"
msgstr "Mou"
-#: ../../diskdrake.pm_.c:539
+#: ../../diskdrake.pm_.c:577
msgid "Which disk do you want to move it to?"
msgstr "A quin disc us voleu desplaçar?"
-#: ../../diskdrake.pm_.c:540
+#: ../../diskdrake.pm_.c:578
msgid "Sector"
msgstr "Sector"
-#: ../../diskdrake.pm_.c:541
+#: ../../diskdrake.pm_.c:579
msgid "Which sector do you want to move it to?"
msgstr "A quin sector us voleu desplaçar?"
-#: ../../diskdrake.pm_.c:544
+#: ../../diskdrake.pm_.c:582
msgid "Moving"
msgstr "S'estŕ desplaçant"
-#: ../../diskdrake.pm_.c:544
+#: ../../diskdrake.pm_.c:582
msgid "Moving partition..."
msgstr "S'estŕ desplaçant la partició..."
-#: ../../diskdrake.pm_.c:554
+#: ../../diskdrake.pm_.c:592
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "La taula de particions de la unitat %s s'escriurŕ al disc!"
-#: ../../diskdrake.pm_.c:556
+#: ../../diskdrake.pm_.c:594
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Us caldrŕ tornar a arrencar per tal que les modificacions tinguin efecte"
-#: ../../diskdrake.pm_.c:577
+#: ../../diskdrake.pm_.c:615
msgid "Computing FAT filesystem bounds"
msgstr "S'estan calculant els límits del sistema de fitxers de la FAT"
-#: ../../diskdrake.pm_.c:577 ../../diskdrake.pm_.c:637
+#: ../../diskdrake.pm_.c:615 ../../diskdrake.pm_.c:680
#: ../../install_interactive.pm_.c:107
msgid "Resizing"
msgstr "S'estŕ canviant la mida"
-#: ../../diskdrake.pm_.c:600
+#: ../../diskdrake.pm_.c:643
msgid "This partition is not resizeable"
msgstr "No es pot canviar la mida d'aquesta partició"
-#: ../../diskdrake.pm_.c:605
+#: ../../diskdrake.pm_.c:648
msgid "All data on this partition should be backed-up"
msgstr "Cal fer una cňpia de seguretat de totes les dades d'aquesta partició"
-#: ../../diskdrake.pm_.c:607
+#: ../../diskdrake.pm_.c:650
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Després de canviar la mida de la partició %s, se'n perdran totes les dades"
-#: ../../diskdrake.pm_.c:617
+#: ../../diskdrake.pm_.c:660
msgid "Choose the new size"
msgstr "Escolliu la nova mida"
-#: ../../diskdrake.pm_.c:617 ../../install_steps_graphical.pm_.c:287
-#: ../../install_steps_graphical.pm_.c:334
-#: ../../install_steps_interactive.pm_.c:518
-#: ../../partition_table_raw.pm_.c:101
-msgid "MB"
-msgstr "MB"
-
-#: ../../diskdrake.pm_.c:674
+#: ../../diskdrake.pm_.c:714
msgid "Create a new partition"
msgstr "Crea una nova partició"
-#: ../../diskdrake.pm_.c:700
+#: ../../diskdrake.pm_.c:740
msgid "Start sector: "
msgstr "sector d'inici: "
-#: ../../diskdrake.pm_.c:704 ../../diskdrake.pm_.c:779
+#: ../../diskdrake.pm_.c:744 ../../diskdrake.pm_.c:819
msgid "Size in MB: "
msgstr "Mida en MB: "
-#: ../../diskdrake.pm_.c:707 ../../diskdrake.pm_.c:782
+#: ../../diskdrake.pm_.c:747 ../../diskdrake.pm_.c:822
msgid "Filesystem type: "
msgstr "Tipus de sistema de fitxers: "
-#: ../../diskdrake.pm_.c:710
+#: ../../diskdrake.pm_.c:750
msgid "Preference: "
msgstr "Preferčncia: "
-#: ../../diskdrake.pm_.c:758
+#: ../../diskdrake.pm_.c:798
msgid "This partition can't be used for loopback"
msgstr "Aquesta partició no es pot utilitzar per al loopback"
-#: ../../diskdrake.pm_.c:768
+#: ../../diskdrake.pm_.c:808
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake.pm_.c:778
+#: ../../diskdrake.pm_.c:818
msgid "Loopback file name: "
msgstr "Nom del fitxer de loopback: "
-#: ../../diskdrake.pm_.c:804
+#: ../../diskdrake.pm_.c:844
msgid "File already used by another loopback, choose another one"
msgstr "Un altre loopback ja estŕ utilitzant el fitxer, escolliu-ne un altre"
-#: ../../diskdrake.pm_.c:805
+#: ../../diskdrake.pm_.c:845
msgid "File already exists. Use it?"
msgstr "El fitxer ja existeix. El voleu utilitzar?"
-#: ../../diskdrake.pm_.c:827 ../../diskdrake.pm_.c:843
+#: ../../diskdrake.pm_.c:867 ../../diskdrake.pm_.c:883
msgid "Select file"
msgstr "Seleccioneu el fitxer"
-#: ../../diskdrake.pm_.c:836
+#: ../../diskdrake.pm_.c:876
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1414,11 +1765,11 @@ msgstr ""
"La cňpia de seguretat de la taula de particions no té la mateixa mida\n"
"Voleu continuar igualment?"
-#: ../../diskdrake.pm_.c:844
+#: ../../diskdrake.pm_.c:884
msgid "Warning"
msgstr "Advertčncia"
-#: ../../diskdrake.pm_.c:845
+#: ../../diskdrake.pm_.c:885
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1426,79 +1777,112 @@ msgstr ""
"Inseriu un disquet a la unitat\n"
"Se'n perdran totes les dades"
-#: ../../diskdrake.pm_.c:856
+#: ../../diskdrake.pm_.c:896
msgid "Trying to rescue partition table"
msgstr "S'estŕ intentant rescatar la taula de particions"
-#: ../../diskdrake.pm_.c:867
+#: ../../diskdrake.pm_.c:905
msgid "device"
msgstr "dispositiu"
-#: ../../diskdrake.pm_.c:868
+#: ../../diskdrake.pm_.c:906
msgid "level"
msgstr "nivell"
-#: ../../diskdrake.pm_.c:869
+#: ../../diskdrake.pm_.c:907
msgid "chunk size"
msgstr "mida del tros"
-#: ../../diskdrake.pm_.c:881
+#: ../../diskdrake.pm_.c:919
msgid "Choose an existing RAID to add to"
msgstr "Escolliu un RAID existent al qual afegir"
-#: ../../diskdrake.pm_.c:882
+#: ../../diskdrake.pm_.c:920 ../../diskdrake.pm_.c:946
msgid "new"
msgstr "nou"
+#: ../../diskdrake.pm_.c:944
+msgid "Choose an existing LVM to add to"
+msgstr "Escolliu un LVM existent al qual afegir"
+
+#: ../../diskdrake.pm_.c:949
+msgid "LVM name?"
+msgstr "Nom LVM?"
+
+#: ../../diskdrake.pm_.c:976
+msgid "Removable media automounting"
+msgstr "Muntatge automŕtic del suport extraďble"
+
+#: ../../diskdrake.pm_.c:977
+msgid "Rescue partition table"
+msgstr "Rescata la taula de particions"
+
+#: ../../diskdrake.pm_.c:979
+msgid "Reload"
+msgstr "Torna a carregar"
+
#: ../../fs.pm_.c:88 ../../fs.pm_.c:95 ../../fs.pm_.c:101 ../../fs.pm_.c:107
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formatatge de %s ha fallat"
-#: ../../fs.pm_.c:133
+#: ../../fs.pm_.c:135
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "no sé com formatar %s amb el tipus %s"
-#: ../../fs.pm_.c:218
+#: ../../fs.pm_.c:220
msgid "mount failed: "
msgstr "ha fallat el muntatge: "
-#: ../../fs.pm_.c:230
+#: ../../fs.pm_.c:232
#, c-format
msgid "error unmounting %s: %s"
msgstr "s'ha produďt un error en muntar %s: %s"
-#: ../../fsedit.pm_.c:235
+#: ../../fsedit.pm_.c:21
+msgid "simple"
+msgstr "senzill"
+
+#: ../../fsedit.pm_.c:30
+msgid "server"
+msgstr "servidor"
+
+#: ../../fsedit.pm_.c:261
msgid "Mount points must begin with a leading /"
msgstr "Els punts de muntatge han de començar amb una /"
-#: ../../fsedit.pm_.c:238
+#: ../../fsedit.pm_.c:264
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Ja hi ha una partició amb el punt de muntatge %s\n"
-#: ../../fsedit.pm_.c:246
+#: ../../fsedit.pm_.c:272
#, c-format
msgid "Circular mounts %s\n"
msgstr "Muntatges circulars %s\n"
-#: ../../fsedit.pm_.c:258
+#: ../../fsedit.pm_.c:284
+#, c-format
+msgid "You can't use a LVM Logical Volume for mount point %s"
+msgstr "No podeu utilitzar un volum lňgic LVM per al punt de muntatge %s"
+
+#: ../../fsedit.pm_.c:285
msgid "This directory should remain within the root filesystem"
msgstr "Aquest directori s'ha de mantenir dins del sistema de fitxers de root"
-#: ../../fsedit.pm_.c:259
+#: ../../fsedit.pm_.c:286
msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
msgstr ""
"Necessiteu un sistema de fitxers real (ext2, reiserfs) per a aquest punt de "
"muntatge\n"
-#: ../../fsedit.pm_.c:335
+#: ../../fsedit.pm_.c:368
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "S'ha produďt un error en obrir %s per escriure: %s"
-#: ../../fsedit.pm_.c:417
+#: ../../fsedit.pm_.c:452
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"
@@ -1507,7 +1891,7 @@ msgstr ""
"sistemes de fitxers. Si us plau, comproveu el vostre maquinari per trobar el "
"problema"
-#: ../../fsedit.pm_.c:431
+#: ../../fsedit.pm_.c:466
msgid "You don't have any partitions!"
msgstr "No teniu cap partició!"
@@ -1571,15 +1955,15 @@ msgid ""
"levels to install or update your\n"
"Linux-Mandrake operating system:\n"
"\n"
-"\t* Recommanded: if you have never installed a GNU/Linux operating system "
+"\t* Recommended: if you have never installed a GNU/Linux operating system "
"choose this. Installation will be\n"
"\t be very easy and you will be asked only on few questions.\n"
"\n"
"\n"
"\t* Customized: if you are familiar enough with GNU/Linux, you may choose "
"the primary usage (workstation, server,\n"
-"\t development) of your sytem. You will need to answer to more questions "
-"than in \"Recommanded\" installation\n"
+"\t development) of your system. You will need to answer to more questions "
+"than in \"Recommended\" installation\n"
"\t class, so you need to know how GNU/Linux works to choose this "
"installation class.\n"
"\n"
@@ -1926,7 +2310,7 @@ msgid ""
"hard drive.\n"
"\n"
"\n"
-" * Auto allocate:: this option allows you to automatically create Ext2 and "
+" * Auto allocate: this option allows you to automatically create Ext2 and "
"swap partitions in free space of your\n"
" hard drive.\n"
"\n"
@@ -1973,7 +2357,15 @@ msgid ""
"\n"
" * Ctrl-d to delete a partition\n"
"\n"
-" * Ctrl-m to set the mount point"
+" * Ctrl-m to set the mount point\n"
+" \n"
+"\n"
+" \n"
+"If you are installing on a PPC Machine, you will want to create a small HFS "
+"'bootstrap' partition of at least 1MB for use\n"
+"by the yaboot bootloader. If you opt to make the partition a bit larger, say "
+"50MB, you may find it a useful place to store \n"
+"a spare kernel and ramdisk image for emergency boot situations."
msgstr ""
"Ara és quan heu de decidir quina(es) partició(ns) voleu utilitzar per\n"
"instalˇlar el sistems Linux-Mandrake. Si ja s'han definit les particions "
@@ -2003,7 +2395,7 @@ msgstr ""
"\n"
" * Rescatar la taula de particions: si la taula de particions estŕ\n"
"malmesa, podeu intentar recuperar-la mitjançant aquesta opció. Aneu\n"
-"amb compte i penseu que pot fallar.\n"
+"amb compte i penseu que aixň pot fallar.\n"
"\n"
"\n"
" * Desfer: podeu utilitzar aquesta opció per anulˇlar els canvis.\n"
@@ -2016,7 +2408,7 @@ msgstr ""
" * Assistent: Si voleu utilitzar un assistent per particionar el disc "
"dur,\n"
"podeu utilitzar aquesta opció, que és la més recomanable si no teniu massa\n"
-"coneixements de particionament.\n"
+"experičncia en particionament.\n"
"\n"
"\n"
" * Restaurar des de disquet: si, en una instalˇlació anterior, vau desar\n"
@@ -2038,16 +2430,24 @@ msgstr ""
"moveu-vos per les particions amb la tecles Tab i Fletxa amunt/Fletxa avall.\n"
"\n"
"\n"
-"Quan es selecciona una partició, podeu utilitzar:\n"
+"Quan s'ha seleccionat una partició, podeu utilitzar:\n"
"\n"
" * Ctrl+C per crear una nova partició (quan se n'ha seleccionat\n"
"una de buida)\n"
"\n"
" * Ctrl+D per suprimir una partició\n"
"\n"
-" * Ctrl+M per definir el punt de muntatge"
+" * Ctrl+M per definir el punt de muntatge\n"
+" \n"
+"\n"
+" \n"
+"Si esteu fent la instalˇlació en un ordinador PPC, potser voldreu crear una\n"
+"petita partició 'bootstrap' HFS d'un mínim d'1 MB per a ús del carregador\n"
+"d'arrencada 'yaboot'. Si decidiu fer-la una mica més gran, per exemple de\n"
+"50 MB, us serŕ d'utilitat per emmagatzemar un nucli de recanvi i una imatge\n"
+"del disc RAM per a situacions d'emergčncia durant l'arrencada."
-#: ../../help.pm_.c:218
+#: ../../help.pm_.c:224
msgid ""
"Above are listed the existing Linux partitions detected on\n"
"your hard drive. You can keep choices make by the wizard, they are good for "
@@ -2136,7 +2536,7 @@ msgstr ""
"Amb les unitats de disc SCSI, una \"a\" significa \"unitat primŕria de "
"disc\", una \"b\" significa \"unitat secundŕria de disc\", etc..."
-#: ../../help.pm_.c:252
+#: ../../help.pm_.c:258
msgid ""
"Choose the hard drive you want to erase to install your\n"
"new Linux-Mandrake partition. Be careful, all data present on it will be "
@@ -2148,7 +2548,7 @@ msgstr ""
"Mandrake. Aneu amb compte, se'n perdran totes les dades i no es podran "
"recuperar."
-#: ../../help.pm_.c:257
+#: ../../help.pm_.c:263
msgid ""
"Click on \"OK\" if you want to delete all data and\n"
"partitions present on this hard drive. Be careful, after clicking on \"OK\", "
@@ -2172,7 +2572,7 @@ msgstr ""
"dada\n"
"ni partició d'aquest disc."
-#: ../../help.pm_.c:267
+#: ../../help.pm_.c:273
msgid ""
"More than one Microsoft Windows partition have been\n"
"detected on your hard drive. Please choose the one you want resize to "
@@ -2255,12 +2655,12 @@ msgstr ""
"\"Nom Windows\" és la lletra de la vostra unitat de disc sota Windows (el "
"primer disc o partició s'anomena \"C:\")."
-#: ../../help.pm_.c:300
+#: ../../help.pm_.c:306
msgid "Please be patient. This operation can take several minutes."
msgstr ""
"Si us plau, tingueu pacičncia. Aquesta operació pot trigar diversos minuts."
-#: ../../help.pm_.c:303
+#: ../../help.pm_.c:309
msgid ""
"Any partitions that have been newly defined must be\n"
"formatted for use (formatting meaning creating a filesystem).\n"
@@ -2321,7 +2721,7 @@ msgstr ""
"instalˇlar\n"
"el nou sistema Linux-Mandrake."
-#: ../../help.pm_.c:329
+#: ../../help.pm_.c:335
msgid ""
"You may now select the group of packages you wish to\n"
"install or upgrade.\n"
@@ -2351,7 +2751,7 @@ msgstr ""
"i\n"
"en aquest cas haureu de navegar per més de 1.000 paquets..."
-#: ../../help.pm_.c:341
+#: ../../help.pm_.c:347
msgid ""
"You can now choose individually all the packages you\n"
"wish to install.\n"
@@ -2388,7 +2788,7 @@ msgstr ""
"un paquet pot causar la desselecció d'altres paquets que en depenen, i no\n"
"us n'assabentareu."
-#: ../../help.pm_.c:358
+#: ../../help.pm_.c:364
msgid ""
"If you have all the CDs in the list above, click Ok. If you have\n"
"none of those CDs, click Cancel. If only some CDs are missing, unselect "
@@ -2399,7 +2799,7 @@ msgstr ""
"Si no teniu cap d'aquests CD, feu clic a Cancelˇla.\n"
"Si només falten alguns CD, desseleccioneu-los i feu clic a D'acord."
-#: ../../help.pm_.c:363
+#: ../../help.pm_.c:369
msgid ""
"Your new Linux-Mandrake operating system is currently being\n"
"installed. This operation should take a few minutes (it depends on size you\n"
@@ -2415,7 +2815,7 @@ msgstr ""
"\n"
"Si us plau, tingueu pacičncia."
-#: ../../help.pm_.c:371
+#: ../../help.pm_.c:377
msgid ""
"You can now test your mouse. Use buttons and wheel to verify\n"
"if settings are good. If not, you can click on \"Cancel\" to choose another\n"
@@ -2426,7 +2826,7 @@ msgstr ""
"els parŕmetres són correctes; si no ho són, feu clic a \"Cancelˇla\" per\n"
"seleccionar un altre controlador."
-#: ../../help.pm_.c:376
+#: ../../help.pm_.c:382
msgid ""
"Please select the correct port. For example, the COM1\n"
"port under MS Windows is named ttyS0 under GNU/Linux."
@@ -2434,7 +2834,7 @@ msgstr ""
"Si us plau, seleccioneu el port correcte. Per exemple, el port COM1 en MS\n"
"Windows s'anomena ttyS0 en GNU/Linux."
-#: ../../help.pm_.c:380
+#: ../../help.pm_.c:386
msgid ""
"If you wish to connect your computer to the Internet or\n"
"to a local network please choose the correct option. Please turn on your "
@@ -2463,7 +2863,7 @@ msgstr ""
"Si voleu configurar la xarxa més endavant, després de la instalˇlació, o si\n"
"heu acabat la configuració de la connexió de xarxa, trieu \"Fet\"."
-#: ../../help.pm_.c:393
+#: ../../help.pm_.c:399
msgid ""
"No modem has been detected. Please select the serial port on which it is "
"plugged.\n"
@@ -2479,7 +2879,7 @@ msgstr ""
"Per a la vostra informació, el primer port sčrie (anomenat \"COM1\" en "
"Microsoft Windows) s'anomena \"ttyS0\" en Linux."
-#: ../../help.pm_.c:400
+#: ../../help.pm_.c:406
msgid ""
"You may now enter dialup options. If you don't know\n"
"or are not sure what to enter, the correct informations can be obtained "
@@ -2497,7 +2897,7 @@ msgstr ""
"de\n"
"noms), aquesta informació s'obtindrŕ del proveďdor en el moment de connectar."
-#: ../../help.pm_.c:407
+#: ../../help.pm_.c:413
msgid ""
"If your modem is an external modem, please turn on it now to let DrakX "
"detect it automatically."
@@ -2505,11 +2905,11 @@ msgstr ""
"Si el mňdem que teniu és extern, engegueu-lo per tal que el DrakX el detecti "
"automŕticament."
-#: ../../help.pm_.c:410
+#: ../../help.pm_.c:416
msgid "Please turn on your modem and choose the correct one."
msgstr "Si us plau, engegueu el mňdem i trieu-ne el correcte."
-#: ../../help.pm_.c:413
+#: ../../help.pm_.c:419
msgid ""
"If you are not sure if informations above are\n"
"correct or if you don't know or are not sure what to enter, the correct\n"
@@ -2525,7 +2925,7 @@ msgstr ""
"informació del DNS (servidor de noms), aquesta informació s'obtindrŕ del\n"
"proveďdor en el moment de connectar."
-#: ../../help.pm_.c:420
+#: ../../help.pm_.c:426
msgid ""
"You may now enter your host name if needed. If you\n"
"don't know or are not sure what to enter, the correct informations can be\n"
@@ -2535,7 +2935,7 @@ msgstr ""
"del que hi\n"
"heu d'introduir, el vostre proveďdor us en donarŕ la informació correcta."
-#: ../../help.pm_.c:425
+#: ../../help.pm_.c:431
msgid ""
"You may now configure your network device.\n"
"\n"
@@ -2567,7 +2967,7 @@ msgstr ""
"seleccioneu aquesta opció. Si es selecciona, no cal cap valor per a \"Adreça "
"IP\". Si no n'esteu segur, consulteu-ho a l'administrador de la xarxa."
-#: ../../help.pm_.c:437
+#: ../../help.pm_.c:443
msgid ""
"You may now enter your host name if needed. If you\n"
"don't know or are not sure what to enter, ask your network administrator."
@@ -2576,7 +2976,7 @@ msgstr ""
"sabeu, o no esteu segur de quč heu d'introduir, consulteu a l'administrador "
"de la xarxa."
-#: ../../help.pm_.c:441
+#: ../../help.pm_.c:447
msgid ""
"You may now enter your host name if needed. If you\n"
"don't know or are not sure what to enter, leave blank."
@@ -2584,7 +2984,7 @@ msgstr ""
"Ara podeu introduir el nom del vostre ordinador central, si cal. Si no\n"
"el sabeu, o si esteu segur de quč introduir, deixeu-ho en blanc."
-#: ../../help.pm_.c:445
+#: ../../help.pm_.c:451
msgid ""
"You may now enter dialup options. If you're not sure what to enter, the\n"
"correct information can be obtained from your ISP."
@@ -2592,7 +2992,7 @@ msgstr ""
"Ara podeu introduir les opcions de marcatge. Si no esteu segur del que hi\n"
"heu d'introduir, el vostre proveďdor us en donarŕ la informació correcta."
-#: ../../help.pm_.c:449
+#: ../../help.pm_.c:455
msgid ""
"If you will use proxies, please configure them now. If you don't know if\n"
"you should use proxies, ask your network administrator or your ISP."
@@ -2601,7 +3001,7 @@ msgstr ""
"n'utilitzareu, consulteu-ho a l'administrador de la xarxa o al vostre\n"
"proveďdor."
-#: ../../help.pm_.c:453
+#: ../../help.pm_.c:459
msgid ""
"You can install cryptographic package if your internet connection has been\n"
"set up correctly. First choose a mirror where you wish to download packages "
@@ -2620,11 +3020,11 @@ msgstr ""
"Tingueu en compte que heu de seleccionar la rčplica i els paquets\n"
"criptogrŕfics segons la vostra legislació."
-#: ../../help.pm_.c:462
+#: ../../help.pm_.c:468
msgid "You can now select your timezone according to where you live."
msgstr "Ara podeu seleccionar la zona horŕria segons el lloc on viviu."
-#: ../../help.pm_.c:465
+#: ../../help.pm_.c:471
msgid ""
"GNU/Linux manages time in GMT (Greenwich Manage\n"
"Time) and translates it in local time according to the time zone you have\n"
@@ -2639,7 +3039,7 @@ msgstr ""
"\n"
"Si utilitzeu Microsoft Windows en aquest ordinador, trieu \"No\"."
-#: ../../help.pm_.c:473
+#: ../../help.pm_.c:479
msgid ""
"You may now choose which services you want to start at boot time.\n"
"\n"
@@ -2670,7 +3070,7 @@ msgstr ""
"en un servidor.\n"
"En general, seleccioneu només els serveis que realment necessiteu."
-#: ../../help.pm_.c:486
+#: ../../help.pm_.c:492
msgid ""
"You can configure a local printer (connected to your computer) or remote\n"
"printer (accessible via a Unix, Netware or Microsoft Windows network)."
@@ -2678,7 +3078,7 @@ msgstr ""
"Podeu configurar una impressora local (connectada al vostre ordinador) o\n"
"remota (accessible mitjançant una xarxa Unix, Netware o Microsoft Windows)."
-#: ../../help.pm_.c:490
+#: ../../help.pm_.c:496
msgid ""
"If you wish to be able to print, please choose one printing system between\n"
"CUPS and LPR.\n"
@@ -2712,7 +3112,7 @@ msgstr ""
"\n"
"Si no teniu impressora, feu clic a \"Cap\"."
-#: ../../help.pm_.c:505
+#: ../../help.pm_.c:511
msgid ""
"GNU/Linux can deal with many types of printer. Each of these types requires\n"
"a different setup.\n"
@@ -2746,7 +3146,7 @@ msgstr ""
"Windows remot (o en un ordinador Unix que utilitza el protocol SMB),\n"
"seleccioneu \"SMB/Windows 95/98/NT\"."
-#: ../../help.pm_.c:521
+#: ../../help.pm_.c:527
msgid ""
"Please turn on your printer before continuing to let DrakX detect it.\n"
"\n"
@@ -2798,7 +3198,7 @@ msgstr ""
"impressora, feu-ho aquí (podeu escriure el que vulgueu, (per exemple,\n"
"\"2n pis\").\n"
-#: ../../help.pm_.c:542
+#: ../../help.pm_.c:548
msgid ""
"You need to enter some informations here.\n"
"\n"
@@ -2862,7 +3262,7 @@ msgstr ""
" Si voleu accedir a una impressora que es troba en una xarxa NetWare,\n"
"seleccioneu \"NetWare\".\n"
-#: ../../help.pm_.c:567
+#: ../../help.pm_.c:573
msgid ""
"Your printer has not been detected. Please enter the name of the device on\n"
"which it is connected.\n"
@@ -2881,11 +3281,11 @@ msgstr ""
"primer port paralˇlel, que s'anomena \"/dev/lp0\" en GNU/Linux i \"LPT1\"\n"
"en Microsoft Windows."
-#: ../../help.pm_.c:575
+#: ../../help.pm_.c:581
msgid "You must now select your printer in the above list."
msgstr "Ara heu de seleccionar la vostra impressora a la llista superior."
-#: ../../help.pm_.c:578
+#: ../../help.pm_.c:584
msgid ""
"Please select the right options according to your printer.\n"
"Please see its documentation if you don't know what choose here.\n"
@@ -2901,7 +3301,7 @@ msgstr ""
"Podreu comprovar la configuració en el pas següent i modificar-la si no\n"
"funciona exactament com voleu."
-#: ../../help.pm_.c:585
+#: ../../help.pm_.c:591
msgid ""
"You can now enter the root password for your Linux-Mandrake system.\n"
"The password must be entered twice to verify that both password entries are "
@@ -2944,7 +3344,7 @@ msgstr ""
"No obstant aixň, no creeu una contrasenya excessivament llarga o\n"
"complicada: heu de poder recordar-la sense problemes."
-#: ../../help.pm_.c:603
+#: ../../help.pm_.c:609
msgid ""
"To enable a more secure system, you should select \"Use shadow file\" and\n"
"\"Use MD5 passwords\"."
@@ -2952,7 +3352,7 @@ msgstr ""
"Per habilitar un sistema més segur, seleccioneu \"Utilitza el\n"
"fitxer d'ombra\" i \"Utilitza les contrasenyes MD5\"."
-#: ../../help.pm_.c:607
+#: ../../help.pm_.c:613
msgid ""
"If your network uses NIS, select \"Use NIS\". If you don't know, ask your\n"
"network administrator."
@@ -2960,7 +3360,7 @@ msgstr ""
"Si la vostra xarxa utilitza NIS, seleccioneu \"Utilitza NIS\". Si no ho\n"
"sabeu, consulteu a l'administrador de la xarxa."
-#: ../../help.pm_.c:611
+#: ../../help.pm_.c:617
msgid ""
"You may now create one or more \"regular\" user account(s), as\n"
"opposed to the \"privileged\" user account, root. You can create\n"
@@ -3003,7 +3403,7 @@ msgstr ""
"creat, i entreu-hi com a 'root' només per a tasques d'administració\n"
"i manteniment."
-#: ../../help.pm_.c:630
+#: ../../help.pm_.c:636
msgid ""
"Creating a boot disk is strongly recommended. If you can't\n"
"boot your computer, it's the only way to rescue your system without\n"
@@ -3013,7 +3413,7 @@ msgstr ""
"l'ordinador,\n"
"és l'única manera de solucionar-ho sense haver de reinstalˇlar-ho tot."
-#: ../../help.pm_.c:635
+#: ../../help.pm_.c:641
msgid ""
"You need to indicate where you wish\n"
"to place the information required to boot to GNU/Linux.\n"
@@ -3029,7 +3429,7 @@ msgstr ""
"Tret que sabeu exactament quč esteu fent, escolliu \"Primer sector\n"
"de la unitat (MBR)\"."
-#: ../../help.pm_.c:643
+#: ../../help.pm_.c:649
msgid ""
"Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
" (primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
@@ -3038,7 +3438,7 @@ msgstr ""
"habitual és \"/dev/hda\" (el disc IDE mestre primari) o bé \"/dev/sda\"\n"
"(el primer disc SCSI)."
-#: ../../help.pm_.c:647
+#: ../../help.pm_.c:653
msgid ""
"LILO (the LInux LOader) and Grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3063,7 +3463,7 @@ msgstr ""
"operatius; en aquest cas podeu suprimir les entrades corresponents, perň\n"
"aleshores us caldrŕ un disc d'arrencada per poder-los arrencar!"
-#: ../../help.pm_.c:659
+#: ../../help.pm_.c:665
msgid ""
"LILO and grub main options are:\n"
" - Boot device: Sets the name of the device (e.g. a hard disk\n"
@@ -3083,7 +3483,22 @@ msgid ""
"\n"
" * normal: select normal 80x25 text mode.\n"
"\n"
-" * <number>: use the corresponding text mode."
+" * <number>: use the corresponding text mode.\n"
+"\n"
+"\n"
+" - Clean \"/tmp\" at each boot: if you want delete all files and "
+"directories\n"
+"stored in \"/tmp\" when you boot your system, select this option.\n"
+"\n"
+"\n"
+" - Precise RAM if needed: unfortunately, there is no standard method to ask "
+"the\n"
+"BIOS about the amount of RAM present in your computer. As consequence, Linux "
+"may\n"
+"fail to detect your amount of RAM correctly. If this is the case, you can\n"
+"specify the correct amount or RAM here. Please note that a difference of 2 "
+"or 4\n"
+"MB between detected memory and memory present in your system is normal."
msgstr ""
"Les opcions principals del LILO i del Grub són:\n"
" - Dispositiu d'arrencada: Defineix el nom del dispositiu (p.\n"
@@ -3104,9 +3519,254 @@ msgstr ""
"cal seleccionar en arrencar. Es poden utilitzar els valors\n"
"següents:\n"
" * normal: selecciona el mode de text 80x25 normal.\n"
-" * <número>: utilitza el mode de text corresponent."
+" * <número>: utilitza el mode de text corresponent.\n"
+"\n"
+"\n"
+" - Neteja de \"/tmp\" en cada arrencada: si voleu suprimir tots els fitxers "
+"i\n"
+"directoris emmagatzemats a \"/tmp\" en arrencar el sistame, seleccioneu\n"
+"aquesta opció.\n"
+"\n"
+"\n"
+" - Si cal, indicació de la mida exacta de la RAM: malauradament, no hi cap\n"
+"mčtode estŕndard per preguntar al BIOS la quantitat de RAM que teniu a\n"
+"l'ordinador. Per tant, és possible que el Linux no pugui detectar\n"
+"correctament la quantitat de RAM instalˇlada. Si és aquest el cas, en podeu\n"
+"indicar aquí la quantitat correcta, perň penseu que una diferčncia de 2 o 4\n"
+"MB entre la memňria detectada i la memňria real és normal."
+
+#: ../../help.pm_.c:697
+msgid ""
+"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able\n"
+"to boot either GNU/Linux, MacOS, or MacOSX, if present on your computer.\n"
+"Normally, these other operating systems are correctly detected and\n"
+"installed. If this is not the case, you can add an entry by hand in this\n"
+"screen. Be careful as to choose the correct parameters.\n"
+"\n"
+"\n"
+"Yaboot main options are:\n"
+"\n"
+"\n"
+" - Init Message: A simple text message that is displayed before the boot\n"
+"prompt.\n"
+"\n"
+"\n"
+" - Boot Device: Indicate where you want to place the information required "
+"to \n"
+"boot to GNU/Linux. Generally, you will have setup a bootstrap partition "
+"earlier \n"
+"to hold this information.\n"
+"\n"
+"\n"
+" - Open Firmware Delay: Unlike LILO, there are two delays available with \n"
+"yaboot. The first delay is measured in seconds and at this point you can \n"
+"choose between CD, OF boot, MacOS, or Linux.\n"
+"\n"
+"\n"
+" - Kernel Boot Timeout: This timeout is similar to the LILO boot delay. "
+"After \n"
+"selecting Linux, you will have this delay in 0.1 seconds before your "
+"default\n"
+"kernel description is selected.\n"
+"\n"
+"\n"
+" - Enable CD Boot?: Checking this option will allow you to choose 'C' for "
+"CD at\n"
+"the first boot prompt.\n"
+"\n"
+"\n"
+" - Enable OF Boot?: Checking this option will allow you to choose 'N' for "
+"Open\n"
+"Firmware at the first boot prompt.\n"
+"\n"
+"\n"
+" - Default OS: You can select which OS will boot by default when the Open "
+"Firmware \n"
+"Delay expires."
+msgstr ""
+"El Yaboot és un carregador d'arrencada per a maquinari NewWorld MacIntosh.\n"
+"Pot arrencar tant el GNU/Linux com el MacOS o el MacOSX, si és que els "
+"teniu\n"
+"a l'ordinador. Normalment, aquests altres sistemes operatius es detecten i\n"
+"instalˇlen correctament; si no és així, perň, en aquesta pantalla podeu\n"
+"afegir una entrada manualment. Aneu amb compte de triar els parŕmetres\n"
+"correctes.\n"
+"\n"
+"\n"
+"Les opcions principals del Yaboot són:\n"
+"\n"
+"\n"
+" - Missatge d'inicialització: un senzill missatge de text que apareix "
+"abans\n"
+"de l'indicador d'arrencada.\n"
+"\n"
+"\n"
+" - Dispositiu d'arrencada: indica on voleu situar la informació necessŕria\n"
+"per arrencar el GNU/Linux. Normalment, haureu configurat abans una partició\n"
+"bootstrap que contindrŕ aquesta informació.\n"
+"\n"
+"\n"
+" - Demora de l'Open Firmware: a diferčncia del LILO, amb el Yaboot hi ha\n"
+"dues demores disponibles. La primera d'elles es mesura en segons i, en "
+"aquest\n"
+"punt, podeu triar entre CD, arrencada OF, MacOS o Linux.\n"
+"\n"
+"\n"
+" - Temps mŕxim d'arrencada del nucli: aquest temps mŕxim és similar a la "
+"demora d'arrencada del LILO. Després de seleccionar el Linux tindreu aquesta "
+"demora en 0,1 segons abans que se seleccioni la descripció per defecte del "
+"nucli.\n"
+"\n"
+"\n"
+" - Habilitar l'arrencada des de CD?: si activeu aquesta opció podreu triar\n"
+"'C' per a CD al primer indicador de l'arrencada.\n"
+"\n"
+"\n"
+" - Habilitar l'arrencada OF?: si activeu aquesta opció podreu triar 'N' "
+"per\n"
+"Open Firmware al primer indicador de l'arrencada.\n"
+"\n"
+"\n"
+" - OS per defecte: podeu seleccionar amb quin OS, per defecte, s'arrencarŕ\n"
+"quan la demora de l'Open Firmware venci."
+
+#: ../../help.pm_.c:738
+msgid ""
+"You can add additional entries for yaboot, either for other operating "
+"systems,\n"
+"alternate kernels, or for an emergency boot image.\n"
+"\n"
+"\n"
+"For other OS's - the entry consists only of a label and the root partition.\n"
+"\n"
+"\n"
+"For Linux, there are a few possible options: \n"
+"\n"
+"\n"
+" - Label: This is simply the name will type at the yaboot prompt to select "
+"this \n"
+"boot option.\n"
+"\n"
+"\n"
+" - Image: This would be the name of the kernel to boot. Typically vmlinux "
+"or\n"
+"a variation of vmlinux with an extension.\n"
+"\n"
+"\n"
+" - Root: The root device or '/' for your Linux installation.\n"
+"\n"
+"\n"
+" \n"
+" - Append: On Apple hardware, the kernel append option is used quite often "
+"to\n"
+"assist in initializing video hardware, or to enable keyboard mouse button "
+"emulation\n"
+"for the often lacking 2nd and 3rd mouse buttons on a stock Apple mouse. The "
+"following \n"
+"are some examples:\n"
+"\n"
+"\n"
+"\t\t video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+"hda=autotune\n"
+"\n"
+"\t\t video=atyfb:vmode:12,cmode:24 adb_buttons=103,111 \n"
+"\n"
+"\n"
+" \n"
+" - Initrd: This option can be used either to load initial modules, before "
+"the boot \n"
+"device is available, or to load a ramdisk image for an emergency boot "
+"situation.\n"
+"\n"
+"\n"
+" - Initrd-size: The default ramdisk size is generally 4096 bytes. If you "
+"should need\n"
+"to allocate a large ramdisk, this option can be used.\n"
+"\n"
+"\n"
+" - Read-write: Normally the 'root' partition is initially brought up "
+"read-only, to allow\n"
+"a filesystem check before the system becomes 'live'. You can override this "
+"option here.\n"
+"\n"
+"\n"
+" - NoVideo: Should the Apple video hardware prove to be exceptionally "
+"problematic, you can\n"
+"select this option to boot in 'novideo' mode, with native framebuffer "
+"support.\n"
+"\n"
+"\n"
+" - Default: Selects this entry as being the default Linux selection, "
+"selectable by just\n"
+"pressing ENTER at the yaboot prompt. This entry will also be highlighted "
+"with a '*', if you\n"
+"press TAB to see the boot selections."
+msgstr ""
+"Podeu afegir entrades addicionals per al yaboot, ja sigui per a altres\n"
+"sistemes operatius, nuclis alternatius, o per a una imatge per a arrencades\n"
+"d'emergčncia.\n"
+"\n"
+"\n"
+"Per a altres OS, l'entrada només consta d'una etiqueta i de la partició "
+"arrel.\n"
+"\n"
+"\n"
+"Per al Linux, hi ha algunes opcions possibles: \n"
+"\n"
+"\n"
+" - Label: és només el nom a indicar a l'indicador del yaboot per\n"
+"seleccionar aquesta opció d'arrencada.\n"
+"\n"
+"\n"
+" - Image: el nom del nucli a arrencar. Normalment, vmlinux o una\n"
+"variació de vmlinux amb una extensió.\n"
+"\n"
+"\n"
+" - Rool: el dispositiu arrel o '/' per a la instalˇlació del Linux.\n"
+"\n"
+"\n"
+" \n"
+" - Append: en maquinari Apple, l'opció d'addició de nuclis s'utilitza\n"
+"força sovint per auxiliar en la inicialització de maquinari de vídeo o per\n"
+"habilitar l'emulació del botó del ratolí de teclat per als 2n i 3r botons,\n"
+"que sovint no existeixen, d'un ratolí Apple convencional. Alguns exemples\n"
+"d'aixň són:\n"
+"\n"
+"\n"
+"\t\t video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+"hda=autotune\n"
+"\n"
+"\t\t video=atyfb:vmode:12,cmode:24 adb_buttons=103,111 \n"
+"\n"
+"\n"
+" \n"
+" - Initrd: aquesta opció es pot utilitzar per carregar els mňduls "
+"inicials,\n"
+"abans que el dispostiu d'arrencada estigui disponible, o per tornar a "
+"carregar\n"
+"una imatge de disc RAM en una situació d'arrencada d'emergčncia.\n"
+"\n"
+"\n"
+" - Initrd-size: la mida per defecte del disc RAM sol ser de 4.096 bytes. Si "
+"necessiteu assignar un disc RAM gran, podeu utilitzar aquesta opció.\n"
+"\n"
+"\n"
+" - Read-write: normalment, la partició 'root' es tracta inicialment com "
+"només de lectura per permetre una comprovació del sistema de fitxers abans "
+"que el sistema esdevingui 'viu'; podeu substituir aquesta opció aquí.\n"
+"\n"
+"\n"
+" - NoVideo: en cas que el maquinari de vídeo de Apple resulti sigui\n"
+"especialment problemŕtic, podeu seleccionar aquesta opció per arrencar\n"
+"en mode 'no-vídeo', amb el suport nadiu per a memňria intermčdia de marcs.\n"
+"\n"
+"\n"
+" - Default: selecciona aquesta entrada com a selecció per defecte del\n"
+"Linux; se selecciona prement simplement Retorn a l'indicador del yaboot.\n"
+"Aquesta opció també es ressaltarŕ amb un '*' si premeu Tab per veure les\n"
+"seleccions d'arrencada."
-#: ../../help.pm_.c:680
+#: ../../help.pm_.c:793
msgid ""
"SILO is a bootloader for SPARC: it is able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -3130,7 +3790,7 @@ msgstr ""
"operatius; en aquest cas podeu suprimir les entrades corresponents, perň\n"
"aleshores us caldrŕ un disc d'arrencada per poder-los arrencar!"
-#: ../../help.pm_.c:692
+#: ../../help.pm_.c:805
msgid ""
"SILO main options are:\n"
" - Bootloader installation: Indicate where you want to place the\n"
@@ -3158,7 +3818,7 @@ msgstr ""
"dur després d'habilitar el teclat. El carregador d'arrencada no\n"
"esperarŕ si s'omet el \"temps d'espera\" o si se li dóna el valor zero."
-#: ../../help.pm_.c:705
+#: ../../help.pm_.c:818
msgid ""
"Now it's time to configure the X Window System, which is the\n"
"core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
@@ -3185,7 +3845,7 @@ msgstr ""
"convenen. Si no, podreu tornar enrere i canviar-los tantes vegades\n"
"com calgui."
-#: ../../help.pm_.c:718
+#: ../../help.pm_.c:831
msgid ""
"If something is wrong in X configuration, use these options to correctly\n"
"configure the X Window System."
@@ -3193,7 +3853,7 @@ msgstr ""
"Si hi ha algun problema a la configuració X, utilitzeu aquestes opcions\n"
"per configurar correctament l'X Window System."
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:835
msgid ""
"If you prefer to use a graphical login, select \"Yes\". Otherwise, select\n"
"\"No\"."
@@ -3201,85 +3861,18 @@ msgstr ""
"Si preferiu utilitzar una entrada grŕfica, seleccioneu \"Sí\". En cas\n"
"contrari, seleccioneu \"No\"."
-#: ../../help.pm_.c:726
+#: ../../help.pm_.c:839
msgid ""
-"You can now select some miscellaneous options for your system.\n"
-"\n"
-"* Use hard drive optimizations: this option can improve hard disk "
-"performance but is only for advanced users. Some buggy\n"
-" chipsets can ruin your data, so beware. Note that the kernel has a builtin "
-"blacklist of drives and chipsets, but if\n"
-" you want to avoid bad surprises, leave this option unset.\n"
-"\n"
-"\n"
-"* Choose security level: you can choose a security level for your system. "
-"Please refer to the manual for complete\n"
+"You can choose a security level for your system. Please refer to the manual "
+"for complete\n"
" information. Basically, if you don't know what to choose, keep the default "
"option.\n"
-"\n"
-"\n"
-"* Precise RAM if needed: unfortunately, there is no standard method to ask "
-"the BIOS about the amount of RAM present in\n"
-" your computer. As consequence, Linux may fail to detect your amount of RAM "
-"correctly. If this is the case, you can\n"
-" specify the correct amount or RAM here. Please note that a difference of 2 "
-"or 4 MB between detected memory and memory\n"
-" present in your system is normal.\n"
-"\n"
-"\n"
-"* Removable media automounting: if you would prefer not to manually mount "
-"removable media (CD-Rom, floppy, Zip, etc.) by\n"
-" typing \"mount\" and \"umount\", select this option.\n"
-"\n"
-"\n"
-"* Clean \"/tmp\" at each boot: if you want delete all files and directories "
-"stored in \"/tmp\" when you boot your system,\n"
-" select this option.\n"
-"\n"
-"\n"
-"* Enable num lock at startup: if you want NumLock key enabled after booting, "
-"select this option. Please note that you\n"
-" should not enable this option on laptops and that NumLock may or may not "
-"work under X."
msgstr ""
-"Ara podeu seleccionar diverses opcions per al vostre sistema.\n"
-"\n"
-"* Utilització de l'optimització del disc dur: Aquesta opció pot millorar el\n"
-"rendiment del disc dur, perň és només per a usuaris avançats. Alguns xips\n"
-"amb errors poden fer malbé les vostres dades, així que aneu amb compte. El\n"
-"nucli inclou una \"llista negra\" d'unitats i jocs de xips, perň, si voleu\n"
-"evitar-vos sorpreses desagradables, no activeu aquesta opció.\n"
-"\n"
-"\n"
-"* Selecció d'un nivell de seguretat: Podeu escollir un nivell de\n"
-"seguretat per al sistema. Si us plau, consulteu el manual per a més\n"
-"informació. Bŕsicament, si no n'esteu segur, trieu l'opció predeterminada.\n"
-"\n"
-"\n"
-"* Si cal, indicació de la mida exacta de la RAM: malauradament, no hi cap\n"
-"mčtode estŕndard per preguntar al BIOS la quantitat de RAM que hi ha a\n"
-"l'ordinador. Per tant, és possible que el Linux no pugui detectar\n"
-"correctament la quantitat de RAM instalˇlada. Si és aquest el cas, en podeu\n"
-"indicar aquí la quantitat correcta, perň penseu que una diferčncia de 2 o 4\n"
-"MB entre la memňria detectada i la memňria real és normal.\n"
-"\n"
-"\n"
-"* Muntatge automŕtic de suports extraďbles: Si preferiu no haver\n"
-"de muntar manualment les unitats extraďbles (CD-ROM, disquet, Zip)\n"
-"escrivint \"mount\" i \"umount\", seleccioneu aquesta opció.\n"
-"\n"
-"\n"
-"* Neteja de \"/tmp\" en cada arrencada: si voleu suprimir tots els fitxers\n"
-"i directoris que hi ha emmagatzemats a \"/tmp\" quan arranqueu el sistema,\n"
-"seleccioneu aquesta opció.\n"
-"\n"
-"\n"
-"* Habilitació de BlocNum a l'inici: Si voleu que BlocNum s'habiliti després\n"
-"de l'arrencada, seleccioneu aquesta opció. Tingueu en compte que no heu\n"
-"d'habilitar aquesta opció en portŕtils i que BlocNum pot funcionar o pot no\n"
-"funcionar sota X."
+"Podeu triar un nivell de seguretat per al vostre sistema. Si us plau,\n"
+"consulteu el manual per obtenir informació completa. Bŕsicament, si no\n"
+"sabeu quč triar, conserveu l'opció per defecte.\n"
-#: ../../help.pm_.c:755
+#: ../../help.pm_.c:844
msgid ""
"Your system is going to reboot.\n"
"\n"
@@ -3293,104 +3886,140 @@ msgstr ""
"automŕticament. Si voleu arrencar un altre sistema operatiu existent,\n"
"llegiu les instruccions addicionals."
-#: ../../install2.pm_.c:40
+#: ../../install2.pm_.c:39
msgid "Choose your language"
msgstr "Escolliu el vostre idioma"
-#: ../../install2.pm_.c:41
+#: ../../install2.pm_.c:40
msgid "Select installation class"
msgstr "Tipus d'instalˇlació"
-#: ../../install2.pm_.c:42
+#: ../../install2.pm_.c:41
msgid "Hard drive detection"
msgstr "Detecció del disc dur"
-#: ../../install2.pm_.c:43
+#: ../../install2.pm_.c:42
msgid "Configure mouse"
msgstr "Configura el ratolí"
-#: ../../install2.pm_.c:44
+#: ../../install2.pm_.c:43
msgid "Choose your keyboard"
msgstr "Escolliu el vostre teclat"
-#: ../../install2.pm_.c:45 ../../install_steps_interactive.pm_.c:497
-msgid "Miscellaneous"
-msgstr "Miscelˇlŕnia"
+#: ../../install2.pm_.c:44
+msgid "Security"
+msgstr "Seguretat"
-#: ../../install2.pm_.c:46
+#: ../../install2.pm_.c:45
msgid "Setup filesystems"
msgstr "Sistemes de fitxers"
-#: ../../install2.pm_.c:47
+#: ../../install2.pm_.c:46
msgid "Format partitions"
msgstr "Formata les particions"
-#: ../../install2.pm_.c:48
+#: ../../install2.pm_.c:47
msgid "Choose packages to install"
msgstr "Paquets a instalˇlar"
-#: ../../install2.pm_.c:49
+#: ../../install2.pm_.c:48
msgid "Install system"
msgstr "Instalˇla el sistema"
+#: ../../install2.pm_.c:49 ../../install_steps_interactive.pm_.c:894
+#: ../../install_steps_interactive.pm_.c:895
+msgid "Set root password"
+msgstr "Contrasenya de 'root'"
+
#: ../../install2.pm_.c:50
+msgid "Add a user"
+msgstr "Afegeix un usuari"
+
+#: ../../install2.pm_.c:51
msgid "Configure networking"
msgstr "Configura la xarxa"
-#: ../../install2.pm_.c:52
-msgid "Configure timezone"
-msgstr "Zona horŕria"
+#: ../../install2.pm_.c:53 ../../install_steps_interactive.pm_.c:818
+msgid "Summary"
+msgstr "Resum"
-#: ../../install2.pm_.c:53
+#: ../../install2.pm_.c:54
msgid "Configure services"
msgstr "Configura els serveis"
-#: ../../install2.pm_.c:54
-msgid "Configure printer"
-msgstr "Configura la impressora"
-
-#: ../../install2.pm_.c:55 ../../install_steps_interactive.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:763
-msgid "Set root password"
-msgstr "Contrasenya de 'root'"
-
#: ../../install2.pm_.c:56
-msgid "Add a user"
-msgstr "Afegeix un usuari"
-
-#: ../../install2.pm_.c:58
msgid "Create a bootdisk"
msgstr "Crea un disc d'arrencada"
-#: ../../install2.pm_.c:60
+#: ../../install2.pm_.c:58
msgid "Install bootloader"
msgstr "Instalˇla el LILO"
-#: ../../install2.pm_.c:61
+#: ../../install2.pm_.c:59
msgid "Configure X"
msgstr "Configura l'X"
-#: ../../install2.pm_.c:63
-msgid "Auto install floppy"
-msgstr "Disquet d'instalˇlació automŕtica"
-
-#: ../../install2.pm_.c:65
+#: ../../install2.pm_.c:60
msgid "Exit install"
msgstr "Surt de la instalˇlació"
-#: ../../install_any.pm_.c:578
+#: ../../install_any.pm_.c:373
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They don't have any known security\n"
+"issues, but some new could be found. In that case, you must make sure to "
+"upgrade\n"
+"as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+
+#: ../../install_any.pm_.c:404
+msgid "Can't use broadcast with no NIS domain"
+msgstr "No es pot utilitzar l'emissió sense un domini NIS"
+
+#: ../../install_any.pm_.c:647
+#, c-format
+msgid "Insert a FAT formatted floppy in drive %s"
+msgstr "Inseriu un disquet formatat amb FAT a la unitat %s"
+
+#: ../../install_any.pm_.c:651
+msgid "This floppy is not FAT formatted"
+msgstr "Aquest disquet no estŕ formatat en FAT"
+
+#: ../../install_any.pm_.c:661
+msgid ""
+"To use this saved packages selection, boot installation with ``linux "
+"defcfg=floppy''"
+msgstr ""
+"Per utilitzar aquesta selecció de paquets desada, arrenqueu la instalˇlació "
+"amb ``linux defcfg=floppy''"
+
+#: ../../install_any.pm_.c:683
msgid "Error reading file $f"
msgstr "S'ha produďt un error en llegir el fitxer $f"
-#: ../../install_gtk.pm_.c:426
+#: ../../install_gtk.pm_.c:84 ../../install_steps_gtk.pm_.c:310
+#: ../../interactive.pm_.c:95 ../../interactive.pm_.c:110
+#: ../../interactive.pm_.c:265 ../../interactive_newt.pm_.c:166
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:356
+#: ../../my_gtk.pm_.c:616 ../../my_gtk.pm_.c:639
+msgid "Ok"
+msgstr "D'acord"
+
+#: ../../install_gtk.pm_.c:423
msgid "Please test the mouse"
msgstr "Si us plau, comproveu el ratolí."
-#: ../../install_gtk.pm_.c:427
+#: ../../install_gtk.pm_.c:424
msgid "To activate the mouse,"
msgstr "Per activar el ratolí,"
-#: ../../install_gtk.pm_.c:428
+#: ../../install_gtk.pm_.c:425
msgid "MOVE YOUR WHEEL!"
msgstr "MOVEU LA BOLA!"
@@ -3552,12 +4181,8 @@ msgstr ""
"Es perdran TOTES les particions, i les dades que contenen, de la unitat %s"
#: ../../install_interactive.pm_.c:165
-msgid "Expert mode"
-msgstr "Mode expert"
-
-#: ../../install_interactive.pm_.c:165
-msgid "Use diskdrake"
-msgstr "Utilitza el diskdrake"
+msgid "Custom disk partitioning"
+msgstr "Particionament personalitzat de disc"
#: ../../install_interactive.pm_.c:169
msgid "Use fdisk"
@@ -3572,33 +4197,33 @@ msgstr ""
"Ara podeu fer les particions a %s.\n"
"Quan acabeu, no oblideu desar-les utiltzant `w'"
-#: ../../install_interactive.pm_.c:196
+#: ../../install_interactive.pm_.c:201
msgid "You don't have enough free space on your Windows partition"
msgstr "No teniu prou espai lliure a la partició de Windows"
-#: ../../install_interactive.pm_.c:211
+#: ../../install_interactive.pm_.c:217
msgid "I can't find any room for installing"
msgstr "No puc trobar espai per a la instalˇlació"
-#: ../../install_interactive.pm_.c:214
+#: ../../install_interactive.pm_.c:221
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr ""
"L'assistent de particionament del DrakX ha trobat les solucions següents:"
-#: ../../install_interactive.pm_.c:219
+#: ../../install_interactive.pm_.c:226
#, c-format
msgid "Partitioning failed: %s"
msgstr "Ha fallat el particionament: %s"
-#: ../../install_interactive.pm_.c:234
+#: ../../install_interactive.pm_.c:232
msgid "Bringing up the network"
msgstr "S'estŕ activant la xarxa"
-#: ../../install_interactive.pm_.c:239
+#: ../../install_interactive.pm_.c:237
msgid "Bringing down the network"
msgstr "S'estŕ desactivant la xarxa"
-#: ../../install_steps.pm_.c:74
+#: ../../install_steps.pm_.c:73
msgid ""
"An error occurred, but I don't know how to handle it nicely.\n"
"Continue at your own risk."
@@ -3606,7 +4231,7 @@ msgstr ""
"S'ha produďt un error, perň no sé com gestionar-lo correctament.\n"
"Si continueu, és sota la vostra responsabilitat."
-#: ../../install_steps.pm_.c:202
+#: ../../install_steps.pm_.c:203
#, c-format
msgid "Duplicate mount point %s"
msgstr "Duplica el punt de muntatge %s"
@@ -3623,16 +4248,16 @@ msgstr ""
"Comproveu el CD-ROM en un ordinador instalˇlat mitjançant \"rpm -qpl "
"Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:451
#, c-format
msgid "Welcome to %s"
msgstr "Benvingut a %s"
-#: ../../install_steps.pm_.c:670
+#: ../../install_steps.pm_.c:634
msgid "No floppy drive available"
msgstr "No hi ha cap unitat de disquet disponible"
-#: ../../install_steps_auto_install.pm_.c:43
+#: ../../install_steps_auto_install.pm_.c:51
#: ../../install_steps_stdio.pm_.c:23
#, c-format
msgid "Entering step `%s'\n"
@@ -3646,73 +4271,71 @@ msgstr "Escolliu la mida que voleu instalˇlar"
msgid "Total size: "
msgstr "Mida total: "
-#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:353
-#: ../../standalone/rpmdrake_.c:136
+#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:437
#, c-format
msgid "Version: %s\n"
msgstr "Versió: %s\n"
-#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:354
-#: ../../standalone/rpmdrake_.c:137
+#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:438
#, c-format
msgid "Size: %d KB\n"
msgstr "Mida: %d kB\n"
-#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:260
+#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:520
msgid "Choose the packages you want to install"
msgstr "Escolliu els paquets que voleu instalˇlar"
-#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:263
+#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:340
msgid "Info"
msgstr "Informació"
-#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:268
-#: ../../install_steps_interactive.pm_.c:216 ../../standalone/rpmdrake_.c:161
+#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_interactive.pm_.c:226
msgid "Install"
msgstr "Instalˇla"
-#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:466
-#: ../../install_steps_interactive.pm_.c:594
+#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:558
+#: ../../install_steps_interactive.pm_.c:675
msgid "Installing"
msgstr "S'estŕ instalˇlant"
-#: ../../install_steps_graphical.pm_.c:499 ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_graphical.pm_.c:499
msgid "Please wait, "
msgstr "Si us plau, espereu, "
-#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:474
+#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:570
msgid "Time remaining "
msgstr "Temps restant "
-#: ../../install_steps_graphical.pm_.c:502 ../../install_steps_gtk.pm_.c:475
+#: ../../install_steps_graphical.pm_.c:502
msgid "Total time "
msgstr "Temps total "
-#: ../../install_steps_graphical.pm_.c:507 ../../install_steps_gtk.pm_.c:484
-#: ../../install_steps_interactive.pm_.c:594
+#: ../../install_steps_graphical.pm_.c:507
+#: ../../install_steps_interactive.pm_.c:675
msgid "Preparing installation"
msgstr "S'estŕ preparant la instalˇlació"
-#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:500
+#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:618
#, c-format
msgid "Installing package %s"
msgstr "S'estŕ instalˇlant el paquet %s"
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:569
-#: ../../install_steps_gtk.pm_.c:573
+#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:695
+#: ../../install_steps_gtk.pm_.c:699
msgid "Go on anyway?"
msgstr "Voleu seguir igualment?"
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:569
+#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:695
msgid "There was an error ordering packages:"
msgstr "S'ha produďt un error en ordenar els paquets"
#: ../../install_steps_graphical.pm_.c:577
-#: ../../install_steps_interactive.pm_.c:1003
msgid "Use existing configuration for X11?"
msgstr "Voleu utilitzar la configuració existent per a X11?"
-#: ../../install_steps_gtk.pm_.c:136
+#: ../../install_steps_gtk.pm_.c:142
msgid ""
"Your system is low on resource. You may have some problem installing\n"
"Linux-Mandrake. If that occurs, you can try a text install instead. For "
@@ -3725,18 +4348,18 @@ msgstr ""
"mode text. Per fer-ho, premeu `F1' en arrencar des del CD-ROM i escriviu "
"`text'"
-#: ../../install_steps_gtk.pm_.c:150
+#: ../../install_steps_gtk.pm_.c:156
msgid "Please, choose one of the following classes of installation:"
msgstr "Si us plau, trieu un dels tipus d'instalˇlació següents:"
-#: ../../install_steps_gtk.pm_.c:215
+#: ../../install_steps_gtk.pm_.c:222
#, c-format
msgid ""
"The total size for the groups you have selected is approximately %d MB.\n"
msgstr ""
"La mida total dels grups que heu seleccionat es d'aproximadament %d MB.\n"
-#: ../../install_steps_gtk.pm_.c:217
+#: ../../install_steps_gtk.pm_.c:224
msgid ""
"If you wish to install less than this size,\n"
"select the percentage of packages that you want to install.\n"
@@ -3750,7 +4373,7 @@ msgstr ""
"Un percentatge baix instalˇlarŕ només els paquets més importants;\n"
"un percentatge del 100%% instalˇlarŕ tots els paquets seleccionats."
-#: ../../install_steps_gtk.pm_.c:222
+#: ../../install_steps_gtk.pm_.c:229
msgid ""
"You have space on your disk for only %d%% of these packages.\n"
"\n"
@@ -3766,77 +4389,85 @@ msgstr ""
"Un percentatge baix instalˇlarŕ només els paquets més importants;\n"
"un percentatge del %d%% instalˇlarŕ tants paquets com sigui possible."
-#: ../../install_steps_gtk.pm_.c:228
+#: ../../install_steps_gtk.pm_.c:235
msgid "You will be able to choose them more specifically in the next step."
msgstr "Podreu fer una elecció més concreta al pas següent"
-#: ../../install_steps_gtk.pm_.c:230
+#: ../../install_steps_gtk.pm_.c:237
msgid "Percentage of packages to install"
msgstr "Percentatge de paquets per instalˇlar"
-#: ../../install_steps_gtk.pm_.c:272
-msgid "Automatic dependencies"
-msgstr "Dependčncies automŕtiques"
+#: ../../install_steps_gtk.pm_.c:285 ../../install_steps_interactive.pm_.c:599
+msgid "Package Group Selection"
+msgstr "Selecció del grup de paquets"
+
+#: ../../install_steps_gtk.pm_.c:305 ../../install_steps_interactive.pm_.c:614
+msgid "Individual package selection"
+msgstr "Selecció individual de paquets"
+
+#: ../../install_steps_gtk.pm_.c:349
+msgid "Show automatically selected packages"
+msgstr "Mostra automŕticament els paquets seleccionats"
-#: ../../install_steps_gtk.pm_.c:332 ../../standalone/rpmdrake_.c:101
+#: ../../install_steps_gtk.pm_.c:416
msgid "Expand Tree"
msgstr "Expandeix l'arbre"
-#: ../../install_steps_gtk.pm_.c:333 ../../standalone/rpmdrake_.c:102
+#: ../../install_steps_gtk.pm_.c:417
msgid "Collapse Tree"
msgstr "Redueix l'arbre"
-#: ../../install_steps_gtk.pm_.c:334
+#: ../../install_steps_gtk.pm_.c:418
msgid "Toggle between flat and group sorted"
msgstr "Commuta entre pla i ordenat per grups"
-#: ../../install_steps_gtk.pm_.c:351
+#: ../../install_steps_gtk.pm_.c:435
msgid "Bad package"
msgstr "Paquet incorrecte"
-#: ../../install_steps_gtk.pm_.c:352
+#: ../../install_steps_gtk.pm_.c:436
#, c-format
msgid "Name: %s\n"
msgstr "Nom: %s\n"
-#: ../../install_steps_gtk.pm_.c:355
+#: ../../install_steps_gtk.pm_.c:439
#, c-format
msgid "Importance: %s\n"
msgstr "Importŕncia: %s\n"
-#: ../../install_steps_gtk.pm_.c:363
+#: ../../install_steps_gtk.pm_.c:448 ../../install_steps_interactive.pm_.c:578
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Mida total: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:382
+#: ../../install_steps_gtk.pm_.c:467
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"No podeu seleccionar aquest paquet perquč no queda prou espai per "
"instalˇlar-lo"
-#: ../../install_steps_gtk.pm_.c:386
+#: ../../install_steps_gtk.pm_.c:471
msgid "The following packages are going to be installed"
msgstr "Ara s'instalˇlaran els paquets següents"
-#: ../../install_steps_gtk.pm_.c:387
+#: ../../install_steps_gtk.pm_.c:472
msgid "The following packages are going to be removed"
msgstr "Ara s'eliminaran els paquets següents"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:482
msgid "You can't select/unselect this package"
msgstr "No podeu seleccionar/desseleccionar aquest paquet"
-#: ../../install_steps_gtk.pm_.c:416
+#: ../../install_steps_gtk.pm_.c:501
msgid "This is a mandatory package, it can't be unselected"
msgstr "Aquest paquet és obligatori; no es pot deseleccionar"
-#: ../../install_steps_gtk.pm_.c:418
+#: ../../install_steps_gtk.pm_.c:503
msgid "You can't unselect this package. It is already installed"
msgstr "No podeu desseleccionar aquest paquet; ja estŕ instalˇlat"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:507
msgid ""
"This package must be upgraded\n"
"Are you sure you want to deselect it?"
@@ -3844,27 +4475,24 @@ msgstr ""
"Aquest paquet s'ha d'actualitzar\n"
"Esteu segur que voleu desseleccionar-lo?"
-#: ../../install_steps_gtk.pm_.c:425
+#: ../../install_steps_gtk.pm_.c:510
msgid "You can't unselect this package. It must be upgraded"
msgstr "No podeu desseleccionar aquest paquet; s'ha d'actualitzar"
-#: ../../install_steps_gtk.pm_.c:469
+#: ../../install_steps_gtk.pm_.c:563
msgid "Estimating"
msgstr "S'estŕ estimant"
-#: ../../install_steps_gtk.pm_.c:481 ../../interactive.pm_.c:86
-#: ../../interactive.pm_.c:249 ../../interactive_newt.pm_.c:51
-#: ../../interactive_newt.pm_.c:99 ../../interactive_stdio.pm_.c:27
-#: ../../my_gtk.pm_.c:246 ../../my_gtk.pm_.c:486
-msgid "Cancel"
-msgstr "Cancelˇla"
+#: ../../install_steps_gtk.pm_.c:582
+msgid "Please wait, preparing installation"
+msgstr "Si us plau, espereu, s'estŕ preparant la instalˇlació"
-#: ../../install_steps_gtk.pm_.c:495
+#: ../../install_steps_gtk.pm_.c:613
#, c-format
msgid "%d packages"
msgstr "%d paquets"
-#: ../../install_steps_gtk.pm_.c:531
+#: ../../install_steps_gtk.pm_.c:652
msgid ""
"\n"
"Warning\n"
@@ -3928,11 +4556,15 @@ msgstr ""
"propietat intelˇlectual i de copyright aplicables als programes\n"
"informŕtics.\n"
-#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
+#: ../../install_steps_gtk.pm_.c:680 ../../install_steps_interactive.pm_.c:163
msgid "Accept"
msgstr "Accepta"
-#: ../../install_steps_gtk.pm_.c:559
+#: ../../install_steps_gtk.pm_.c:680 ../../install_steps_interactive.pm_.c:163
+msgid "Refuse"
+msgstr "Rebutja"
+
+#: ../../install_steps_gtk.pm_.c:681
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -3948,27 +4580,34 @@ msgstr ""
"Si no el teniu, premeu Cancelˇla per no fer la instalˇlació des d'aquest "
"CD-ROM."
-#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
-msgid "Refuse"
-msgstr "Rebutja"
-
-#: ../../install_steps_gtk.pm_.c:573
+#: ../../install_steps_gtk.pm_.c:699
msgid "There was an error installing packages:"
msgstr "S'ha produďt un error en instalˇlar els paquets"
-#: ../../install_steps_interactive.pm_.c:38
+#: ../../install_steps_interactive.pm_.c:37
msgid "An error occurred"
msgstr "S'ha produďt un error"
-#: ../../install_steps_interactive.pm_.c:54
+#: ../../install_steps_interactive.pm_.c:55
msgid "Please, choose a language to use."
msgstr "Si us plau, trieu un idioma per utilitzar."
-#: ../../install_steps_interactive.pm_.c:70
+#: ../../install_steps_interactive.pm_.c:56
+msgid "You can choose other languages that will be available after install"
+msgstr ""
+"Podeu seleccionar altres idiomes, que quedaran disponibles després de la "
+"instalˇlació"
+
+#: ../../install_steps_interactive.pm_.c:68
+#: ../../install_steps_interactive.pm_.c:613
+msgid "All"
+msgstr "Tots"
+
+#: ../../install_steps_interactive.pm_.c:86
msgid "License agreement"
msgstr "Acord de llicčncia"
-#: ../../install_steps_interactive.pm_.c:71
+#: ../../install_steps_interactive.pm_.c:87
msgid ""
"Introduction\n"
"\n"
@@ -4192,135 +4831,104 @@ msgstr ""
"Per a qualsevol tema relacionat amb aquest document, poseu-vos en\n"
"contacte amb MandrakeSoft S.A.\n"
-#: ../../install_steps_interactive.pm_.c:154
-#: ../../standalone/keyboarddrake_.c:21
+#: ../../install_steps_interactive.pm_.c:182
+#: ../../install_steps_interactive.pm_.c:822
+#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Teclat"
-#: ../../install_steps_interactive.pm_.c:155
-#: ../../standalone/keyboarddrake_.c:22
+#: ../../install_steps_interactive.pm_.c:183
+#: ../../standalone/keyboarddrake_.c:29
msgid "Please, choose your keyboard layout."
msgstr "Si us plau, selecioneu la disposició del vostre teclat."
-#: ../../install_steps_interactive.pm_.c:166
-msgid "You can choose other languages that will be available after install"
-msgstr ""
-"Podeu seleccionar altres idiomes, que quedaran disponibles després de la "
-"instalˇlació"
-
-#: ../../install_steps_interactive.pm_.c:173
-#: ../../install_steps_interactive.pm_.c:520
-msgid "All"
-msgstr "Tots"
+#: ../../install_steps_interactive.pm_.c:184
+msgid "Here is the full list of keyboards available"
+msgstr "Aquesta és la llista completa de teclats disponibles"
-#: ../../install_steps_interactive.pm_.c:181
-#: ../../install_steps_interactive.pm_.c:227
+#: ../../install_steps_interactive.pm_.c:201
msgid "Install Class"
msgstr "Tipus d'instalˇlació"
-#: ../../install_steps_interactive.pm_.c:181
+#: ../../install_steps_interactive.pm_.c:201
msgid "Which installation class do you want?"
msgstr "Quin tipus d'instalˇlació voleu?"
-#: ../../install_steps_interactive.pm_.c:183
+#: ../../install_steps_interactive.pm_.c:203
msgid "Install/Update"
msgstr "Instalˇla/Actualitza"
-#: ../../install_steps_interactive.pm_.c:183
+#: ../../install_steps_interactive.pm_.c:203
msgid "Is this an install or an update?"
msgstr "Es tracta d'una instalˇlació o d'una actualització?"
-#: ../../install_steps_interactive.pm_.c:192
+#: ../../install_steps_interactive.pm_.c:212
msgid "Recommended"
msgstr "Recomanada"
-#: ../../install_steps_interactive.pm_.c:195
-#: ../../install_steps_interactive.pm_.c:211
-msgid "Customized"
-msgstr "Personalitzada"
-
-#: ../../install_steps_interactive.pm_.c:196
-#: ../../install_steps_interactive.pm_.c:211
+#: ../../install_steps_interactive.pm_.c:215
+#: ../../install_steps_interactive.pm_.c:218
msgid "Expert"
msgstr "Expert"
-#: ../../install_steps_interactive.pm_.c:206
-msgid ""
-"Are you sure you are an expert? \n"
-"You will be allowed to make powerful but dangerous things here.\n"
-"\n"
-"You will be asked questions such as: ``Use shadow file for passwords?'',\n"
-"are you ready to answer that kind of questions?"
-msgstr ""
-"Esteu segur que sou un expert? \n"
-"Aquí podreu fer coses molt potents, perň també perilloses.\n"
-"\n"
-"Us preguntaran coses com: ``Voleu utilitzar un fitxer d'ombres per a les "
-"contrasenyes?'',\n"
-"Sou capaç de respondre aquest tipus de preguntes?"
-
-#: ../../install_steps_interactive.pm_.c:216
+#: ../../install_steps_interactive.pm_.c:226
msgid "Update"
msgstr "Actualitza"
-#: ../../install_steps_interactive.pm_.c:222
-msgid "Workstation"
-msgstr "Estació de treball"
-
-#: ../../install_steps_interactive.pm_.c:223
-msgid "Development"
-msgstr "Desenvolupament"
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Server"
-msgstr "Servidor"
-
-#: ../../install_steps_interactive.pm_.c:228
-msgid "What is your system used for?"
-msgstr "Amb quina finalitat utilitzeu el sistema?"
-
-#: ../../install_steps_interactive.pm_.c:244 ../../standalone/mousedrake_.c:24
+#: ../../install_steps_interactive.pm_.c:238 ../../standalone/mousedrake_.c:31
msgid "Please, choose the type of your mouse."
msgstr "Si us plau, seleccioneu el vostre tipus de ratolí."
-#: ../../install_steps_interactive.pm_.c:251 ../../standalone/mousedrake_.c:40
+#: ../../install_steps_interactive.pm_.c:244 ../../standalone/mousedrake_.c:46
msgid "Mouse Port"
msgstr "Port del ratolí"
-#: ../../install_steps_interactive.pm_.c:252
+#: ../../install_steps_interactive.pm_.c:245 ../../standalone/mousedrake_.c:47
msgid "Please choose on which serial port your mouse is connected to."
msgstr ""
"Si us plau, seleccioneu el port sčrie a quč estŕ connectat el vostre ratolí."
-#: ../../install_steps_interactive.pm_.c:271
+#: ../../install_steps_interactive.pm_.c:253
+msgid "Buttons emulation"
+msgstr "Emulació dels botons"
+
+#: ../../install_steps_interactive.pm_.c:255
+msgid "Button 2 Emulation"
+msgstr "Emulació del botó 2"
+
+#: ../../install_steps_interactive.pm_.c:256
+msgid "Button 3 Emulation"
+msgstr "Emulació del botó 3"
+
+#: ../../install_steps_interactive.pm_.c:275
msgid "Configuring PCMCIA cards..."
msgstr "S'estan configurant les targetes PCMCIA..."
-#: ../../install_steps_interactive.pm_.c:271
+#: ../../install_steps_interactive.pm_.c:275
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:275
+#: ../../install_steps_interactive.pm_.c:280
msgid "Configuring IDE"
msgstr "S'estŕ configurant l'IDE"
-#: ../../install_steps_interactive.pm_.c:275
+#: ../../install_steps_interactive.pm_.c:280
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:288
+#: ../../install_steps_interactive.pm_.c:295
msgid "no available partitions"
msgstr "no hi ha particions disponibles"
-#: ../../install_steps_interactive.pm_.c:291
+#: ../../install_steps_interactive.pm_.c:298
msgid "Scanning partitions to find mount points"
msgstr "S'estan explorant les particions per trobar els punts de muntatge"
-#: ../../install_steps_interactive.pm_.c:299
+#: ../../install_steps_interactive.pm_.c:306
msgid "Choose the mount points"
msgstr "Escolliu els punts de muntatge"
-#: ../../install_steps_interactive.pm_.c:316
+#: ../../install_steps_interactive.pm_.c:323
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -4336,7 +4944,7 @@ msgstr ""
"L'altra solució és impedir al DrakX que modifiqui la taula de particions.\n"
"(l'error és %s)\n"
-#: ../../install_steps_interactive.pm_.c:329
+#: ../../install_steps_interactive.pm_.c:336
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -4344,51 +4952,51 @@ msgstr ""
"El DiskDrake no ha pogut llegir correctament la taula de particions.\n"
"Si continueu, és sota la vostra responsabilitat!"
-#: ../../install_steps_interactive.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:361
msgid "Root Partition"
msgstr "Partició arrel"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:362
msgid "What is the root partition (/) of your system?"
msgstr "Quina és la partició arrel (/) del vostre sistema?"
-#: ../../install_steps_interactive.pm_.c:352
+#: ../../install_steps_interactive.pm_.c:376
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Us caldrŕ tornar a arrencar per tal que les modificacions de la taula de "
"particions tinguin efecte"
-#: ../../install_steps_interactive.pm_.c:376
+#: ../../install_steps_interactive.pm_.c:403
msgid "Choose the partitions you want to format"
msgstr "Escolliu les particions que voleu formatar"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:404
msgid "Check bad blocks?"
msgstr "Voleu comprovar els blocs incorrectes?"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:427
msgid "Formatting partitions"
msgstr "S'estan formatant les particions"
-#: ../../install_steps_interactive.pm_.c:401
+#: ../../install_steps_interactive.pm_.c:429
#, c-format
msgid "Creating and formatting file %s"
msgstr "S'estŕ creant i formatant el fitxer %s"
-#: ../../install_steps_interactive.pm_.c:404
+#: ../../install_steps_interactive.pm_.c:432
msgid "Not enough swap to fulfill installation, please add some"
msgstr ""
"No hi ha prou intercanvi per completar la instalˇlació; si us plau, afegiu-ne"
-#: ../../install_steps_interactive.pm_.c:410
+#: ../../install_steps_interactive.pm_.c:438
msgid "Looking for available packages"
msgstr "S'estan cercant els paquets disponibles"
-#: ../../install_steps_interactive.pm_.c:416
+#: ../../install_steps_interactive.pm_.c:444
msgid "Finding packages to upgrade"
msgstr "S'estan cercant els paquets a actualitzar"
-#: ../../install_steps_interactive.pm_.c:433
+#: ../../install_steps_interactive.pm_.c:461
#, c-format
msgid ""
"Your system has not enough space left for installation or upgrade (%d > %d)"
@@ -4396,38 +5004,30 @@ msgstr ""
"Al vostre sistema no li queda prou espai per a la instalˇlació o "
"actualització (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:449
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid "Complete (%dMB)"
msgstr "Completa (%dMB)"
-#: ../../install_steps_interactive.pm_.c:449
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid "Minimum (%dMB)"
msgstr "Mínima (%dMB)"
-#: ../../install_steps_interactive.pm_.c:449
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid "Recommended (%dMB)"
msgstr "Recomanada (%dMB)"
-#: ../../install_steps_interactive.pm_.c:455
+#: ../../install_steps_interactive.pm_.c:486
msgid "Custom"
msgstr "Personalitzada"
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Select the size you want to install"
-msgstr "Seleccioneu la mida que voleu instalˇlar"
-
-#: ../../install_steps_interactive.pm_.c:508
-msgid "Package Group Selection"
-msgstr "Selecció del grup de paquets"
-
-#: ../../install_steps_interactive.pm_.c:521
-msgid "Individual package selection"
-msgstr "Selecció individual de paquets"
+#: ../../install_steps_interactive.pm_.c:585
+msgid "Selected size is larger than available space"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:570
+#: ../../install_steps_interactive.pm_.c:650
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -4437,12 +5037,12 @@ msgstr ""
"Si no teniu cap d'aquests CD, feu clic a Cancelˇla.\n"
"Si només falten alguns CD, desseleccioneu-los i feu clic a D'acord."
-#: ../../install_steps_interactive.pm_.c:575
+#: ../../install_steps_interactive.pm_.c:655
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "CD-ROM etiquetat com \"%s\""
-#: ../../install_steps_interactive.pm_.c:603
+#: ../../install_steps_interactive.pm_.c:684
msgid ""
"Installing package %s\n"
"%d%%"
@@ -4450,11 +5050,11 @@ msgstr ""
"S'estŕ instalˇlant el paquet %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:612
+#: ../../install_steps_interactive.pm_.c:693
msgid "Post-install configuration"
msgstr "Publica la configuració de la instalˇlació "
-#: ../../install_steps_interactive.pm_.c:637
+#: ../../install_steps_interactive.pm_.c:718
msgid ""
"You have now the possibility to download software aimed for encryption.\n"
"\n"
@@ -4521,147 +5121,96 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:669
+#: ../../install_steps_interactive.pm_.c:750
msgid "Choose a mirror from which to get the packages"
msgstr "Escolliu un mirror al qual aconseguir els paquets"
-#: ../../install_steps_interactive.pm_.c:680
+#: ../../install_steps_interactive.pm_.c:761
msgid "Contacting the mirror to get the list of available packages"
msgstr ""
"S'estŕ contactant amb el mirror per obtenir la llista dels paquets "
"disponibles"
-#: ../../install_steps_interactive.pm_.c:683
+#: ../../install_steps_interactive.pm_.c:764
msgid "Please choose the packages you want to install."
msgstr "Si us plau, escolliu els paquets que voleu instalˇlar"
-#: ../../install_steps_interactive.pm_.c:695
+#: ../../install_steps_interactive.pm_.c:776
msgid "Which is your timezone?"
msgstr "En quina zona horŕria us trobeu?"
-#: ../../install_steps_interactive.pm_.c:697
+#: ../../install_steps_interactive.pm_.c:778
msgid "Is your hardware clock set to GMT?"
msgstr "El rellotge del vostre ordinador estŕ regulat a GMT?"
-#: ../../install_steps_interactive.pm_.c:735
-msgid "Which printing system do you want to use?"
-msgstr "Quin sistema d'impressió voleu utilitzar?"
+#: ../../install_steps_interactive.pm_.c:806 ../../printer.pm_.c:22
+#: ../../printerdrake.pm_.c:415
+msgid "Remote CUPS server"
+msgstr "Servidor CUPS remot"
-#: ../../install_steps_interactive.pm_.c:762
-msgid "No password"
-msgstr "Sense contrasenya"
+#: ../../install_steps_interactive.pm_.c:807
+msgid "No printer"
+msgstr "Cap impressora"
-#: ../../install_steps_interactive.pm_.c:767
-msgid "Use shadow file"
-msgstr "Utilitza el fitxer d'ombra"
+#: ../../install_steps_interactive.pm_.c:821
+msgid "Mouse"
+msgstr "Ratolí"
-#: ../../install_steps_interactive.pm_.c:767
-msgid "shadow"
-msgstr "ombra"
+#: ../../install_steps_interactive.pm_.c:823
+msgid "Timezone"
+msgstr "Zona horŕria"
-#: ../../install_steps_interactive.pm_.c:768
-msgid "MD5"
-msgstr "MD5"
+#: ../../install_steps_interactive.pm_.c:824 ../../printerdrake.pm_.c:344
+msgid "Printer"
+msgstr "Impressora"
-#: ../../install_steps_interactive.pm_.c:768
-msgid "Use MD5 passwords"
-msgstr "Utilitza les contrasenyes MD5"
+#: ../../install_steps_interactive.pm_.c:826
+msgid "ISDN card"
+msgstr "Targeta XDSI"
-#: ../../install_steps_interactive.pm_.c:770
-msgid "Use NIS"
-msgstr "Utilitza el NIS"
+#: ../../install_steps_interactive.pm_.c:829
+msgid "Sound card"
+msgstr "Targeta de so"
-#: ../../install_steps_interactive.pm_.c:770
-msgid "yellow pages"
-msgstr "pŕgines grogues"
+#: ../../install_steps_interactive.pm_.c:832
+msgid "TV card"
+msgstr "Targeta de TV"
-#: ../../install_steps_interactive.pm_.c:776
+#: ../../install_steps_interactive.pm_.c:862
+msgid "Which printing system do you want to use?"
+msgstr "Quin sistema d'impressió voleu utilitzar?"
+
+#: ../../install_steps_interactive.pm_.c:896
+msgid "No password"
+msgstr "Sense contrasenya"
+
+#: ../../install_steps_interactive.pm_.c:901
#, c-format
msgid "This password is too simple (must be at least %d characters long)"
msgstr ""
"Aquesta contrasenya és massa senzilla (ha de tenir com a mínim %d carŕcters)"
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:907
+msgid "Use NIS"
+msgstr "Utilitza el NIS"
+
+#: ../../install_steps_interactive.pm_.c:907
+msgid "yellow pages"
+msgstr "pŕgines grogues"
+
+#: ../../install_steps_interactive.pm_.c:912
msgid "Authentification NIS"
msgstr "NIS d'autenticació"
-#: ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_interactive.pm_.c:913
msgid "NIS Domain"
msgstr "Domini del NIS"
-#: ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_interactive.pm_.c:914
msgid "NIS Server"
msgstr "Servidor NIS"
-#: ../../install_steps_interactive.pm_.c:809
-#: ../../standalone/adduserdrake_.c:36
-msgid "Accept user"
-msgstr "Accepta l'usuari"
-
-#: ../../install_steps_interactive.pm_.c:809
-#: ../../standalone/adduserdrake_.c:36
-msgid "Add user"
-msgstr "Afegeix un usuari"
-
-#: ../../install_steps_interactive.pm_.c:810
-#: ../../standalone/adduserdrake_.c:37
-#, c-format
-msgid "(already added %s)"
-msgstr "(ja s'ha afegit %s)"
-
-#: ../../install_steps_interactive.pm_.c:810
-#: ../../standalone/adduserdrake_.c:37
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Introduďu un usuari\n"
-"%s"
-
-#: ../../install_steps_interactive.pm_.c:812
-#: ../../standalone/adduserdrake_.c:39
-msgid "Real name"
-msgstr "Nom real"
-
-#: ../../install_steps_interactive.pm_.c:813 ../../printerdrake.pm_.c:93
-#: ../../printerdrake.pm_.c:127 ../../standalone/adduserdrake_.c:40
-msgid "User name"
-msgstr "Nom d'usuari"
-
-#: ../../install_steps_interactive.pm_.c:818
-#: ../../standalone/adduserdrake_.c:45
-msgid "Shell"
-msgstr "Shell"
-
-#: ../../install_steps_interactive.pm_.c:820
-#: ../../standalone/adduserdrake_.c:47
-msgid "Icon"
-msgstr "Icona"
-
-#: ../../install_steps_interactive.pm_.c:830
-#: ../../standalone/adduserdrake_.c:57
-msgid "This password is too simple"
-msgstr "Aquesta contrasenya és massa senzilla"
-
-#: ../../install_steps_interactive.pm_.c:831
-#: ../../standalone/adduserdrake_.c:58
-msgid "Please give a user name"
-msgstr "Si us plau, introduďu un nom d'usuari"
-
-#: ../../install_steps_interactive.pm_.c:832
-#: ../../standalone/adduserdrake_.c:59
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr ""
-"El nom d'usuari només pot contenir lletres en minúscula, números, `-' i `_'"
-
-#: ../../install_steps_interactive.pm_.c:833
-#: ../../standalone/adduserdrake_.c:60
-msgid "This user name is already added"
-msgstr "Aquest nom d'usuari ja s'ha afegit"
-
-#: ../../install_steps_interactive.pm_.c:857
+#: ../../install_steps_interactive.pm_.c:948
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 "
@@ -4691,19 +5240,19 @@ msgstr ""
"Si voleu crear un disc d'arrencada per al vostre sistema, inseriu un disquet "
"a la primera unitat i premeu \"D'acord\"."
-#: ../../install_steps_interactive.pm_.c:873
+#: ../../install_steps_interactive.pm_.c:964
msgid "First floppy drive"
msgstr "Primera unitat de disquet"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:965
msgid "Second floppy drive"
msgstr "Segona unitat de disquet"
-#: ../../install_steps_interactive.pm_.c:875
+#: ../../install_steps_interactive.pm_.c:966
msgid "Skip"
msgstr "Omet"
-#: ../../install_steps_interactive.pm_.c:880
+#: ../../install_steps_interactive.pm_.c:971
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 "
@@ -4727,34 +5276,34 @@ msgstr ""
"imatge de rescat del Mandrake, facilitant molt la recuperació de fallides\n"
"serioses del sistema. Voleu crear un disc d'arrencada per al vostre sistema?"
-#: ../../install_steps_interactive.pm_.c:889
+#: ../../install_steps_interactive.pm_.c:980
msgid "Sorry, no floppy drive available"
msgstr "No hi ha cap unitat de disquet disponible"
-#: ../../install_steps_interactive.pm_.c:892
+#: ../../install_steps_interactive.pm_.c:984
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Escolliu la unitat de disquet que voleu utilitzar per crear el disc "
"d'arrencada"
-#: ../../install_steps_interactive.pm_.c:898
+#: ../../install_steps_interactive.pm_.c:988
#, c-format
msgid "Insert a floppy in drive %s"
msgstr "Inseriu un disquet a la unitat %s"
-#: ../../install_steps_interactive.pm_.c:901
+#: ../../install_steps_interactive.pm_.c:991
msgid "Creating bootdisk"
msgstr "S'estŕ creant el disc d'arrencada"
-#: ../../install_steps_interactive.pm_.c:908
+#: ../../install_steps_interactive.pm_.c:998
msgid "Preparing bootloader"
msgstr "S'estŕ preparant el carregador d'arrencada"
-#: ../../install_steps_interactive.pm_.c:917
+#: ../../install_steps_interactive.pm_.c:1007
msgid "Do you want to use aboot?"
msgstr "Voleu utilitzar l'aboot?"
-#: ../../install_steps_interactive.pm_.c:920
+#: ../../install_steps_interactive.pm_.c:1010
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -4763,120 +5312,61 @@ msgstr ""
"voleu intentar igualment la instalˇlació encara que aixň destrueixi la "
"primera partició?"
-#: ../../install_steps_interactive.pm_.c:929
+#: ../../install_steps_interactive.pm_.c:1019
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"Ha fallat la instalˇlació del carregador d'arrencada. S'ha produďt l'error "
"següent:"
-#: ../../install_steps_interactive.pm_.c:943 ../../standalone/draksec_.c:20
-msgid "Welcome To Crackers"
-msgstr "Benvinguts, crackers"
-
-#: ../../install_steps_interactive.pm_.c:944 ../../standalone/draksec_.c:21
-msgid "Poor"
-msgstr "Pobre"
+#: ../../install_steps_interactive.pm_.c:1027
+msgid ""
+"You may need to change your Open Firmware boot-device to\n"
+" enable the bootloader. If you don't see the bootloader prompt at\n"
+" reboot, hold down Command-Option-O-F at reboot and enter:\n"
+" setenv boot-device $of_boot,\\\\tbxi\n"
+" Then type: shut-down\n"
+"At your next boot you should see the bootloader prompt."
+msgstr ""
+"Potser us caldrŕ canviar el dispositiu d'arrencada Open Firware per\n"
+" habilitar el carregador d'arencada. Si no veieu l'indicador del\n"
+" carregador d'arrencada en tornar a arrencar, premeu Command-Option-O-F\n"
+" en tornar a arrencar i introduďu:\n"
+" setenv boot-device $of_boot,\\\\tbxi\n"
+" Després, escriviu: shut-down\n"
+"En l'arrencada següent heu de veure l'indicador del carregador d'arrencada."
-#: ../../install_steps_interactive.pm_.c:945 ../../standalone/draksec_.c:22
+#: ../../install_steps_interactive.pm_.c:1035 ../../standalone/draksec_.c:23
msgid "Low"
msgstr "Baix"
-#: ../../install_steps_interactive.pm_.c:946 ../../standalone/draksec_.c:23
+#: ../../install_steps_interactive.pm_.c:1036 ../../standalone/draksec_.c:24
msgid "Medium"
msgstr "Mitjŕ"
-#: ../../install_steps_interactive.pm_.c:947 ../../standalone/draksec_.c:24
+#: ../../install_steps_interactive.pm_.c:1037 ../../standalone/draksec_.c:25
msgid "High"
msgstr "Alt"
-#: ../../install_steps_interactive.pm_.c:948 ../../standalone/draksec_.c:25
-msgid "Paranoid"
-msgstr "Paranoic"
-
-#: ../../install_steps_interactive.pm_.c:962
-msgid "Miscellaneous questions"
-msgstr "Preguntes diverses"
-
-#: ../../install_steps_interactive.pm_.c:963
-msgid "(may cause data corruption)"
-msgstr "(pot malmetre les dades)"
-
-#: ../../install_steps_interactive.pm_.c:963
-msgid "Use hard drive optimisations?"
-msgstr "Voleu utilitzar l'optimització del disc dur?"
-
-#: ../../install_steps_interactive.pm_.c:964 ../../standalone/draksec_.c:46
+#: ../../install_steps_interactive.pm_.c:1041 ../../standalone/draksec_.c:49
msgid "Choose security level"
msgstr "Escolliu el nivell de seguretat"
-#: ../../install_steps_interactive.pm_.c:965
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Mida exacta de la RAM, si cal (s'han trobat %d MB)"
-
-#: ../../install_steps_interactive.pm_.c:967
-msgid "Removable media automounting"
-msgstr "Muntatge automŕtic del suport extraďble"
-
-#: ../../install_steps_interactive.pm_.c:969
-msgid "Clean /tmp at each boot"
-msgstr "Buida /tmp en cada arrencada"
-
-#: ../../install_steps_interactive.pm_.c:972
-msgid "Enable multi profiles"
-msgstr "Habilita perfils múltiples"
-
-#: ../../install_steps_interactive.pm_.c:974
-msgid "Enable num lock at startup"
-msgstr "Habilita la tecla Bloc Num en iniciar"
-
-#: ../../install_steps_interactive.pm_.c:977
-msgid "Give the ram size in MB"
-msgstr "Introduďu la mida de la RAM en Mb"
-
-#: ../../install_steps_interactive.pm_.c:979
-msgid "Can't use supermount in high security level"
-msgstr "No es pot utilitzar supermount en un nivell d'alta seguretat"
-
-#: ../../install_steps_interactive.pm_.c:981
-msgid ""
-"beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
-"If you want to be root, you have to login as a user and then use \"su\".\n"
-"More generally, do not expect to use your machine for anything but as a "
-"server.\n"
-"You have been warned."
-msgstr ""
-"Atenció: EN AQUEST NIVELL DE SEGURETAT NO ES POT ENTRAR COM A ROOT A LA "
-"CONSOLA!\n"
-"Si voleu ser root, heu d'entrar com a usuari i aleshores utilitzar \"su\".\n"
-"En general, no espereu utilitzar l'ordinador per a altre cosa que com a "
-"servidor.\n"
-"Esteu avisat."
-
-#: ../../install_steps_interactive.pm_.c:986
-msgid ""
-"Be carefull, having numlock enabled causes a lot of keystrokes to\n"
-"give digits instead of normal letters (eg: pressing `p' gives `6')"
-msgstr ""
-"Aneu amb compte; si teniu BlocNúm habilitat, moltes tecles donaran\n"
-"números en comptes de lletres (p.ex., si premeu la `p' obtindreu un `6')"
-
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1074
msgid "Do you want to generate an auto install floppy for linux replication?"
msgstr ""
"Voleu generar un disquet d'instalˇlació automŕtica per fer cňpies del Linux?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1076
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Inseriu un disquet en blanc a la unitat %s"
-#: ../../install_steps_interactive.pm_.c:1049
-#: ../../install_steps_interactive.pm_.c:1079
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1122
msgid "Creating auto install floppy"
msgstr "S'estŕ creant el diquet d'instalˇlació automŕtica"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1150
msgid ""
"Some steps are not completed.\n"
"\n"
@@ -4886,7 +5376,7 @@ msgstr ""
"\n"
"Segur que voleu sortir ara?"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -4909,6 +5399,37 @@ msgstr ""
"l'últim capítol d'instalˇlació de la Guia Oficial de l'Usuari del\n"
"Linux-Mandrake."
+#: ../../install_steps_interactive.pm_.c:1173
+msgid "Generate auto install floppy"
+msgstr "Genera un disquet per a la instalˇlació automŕtica"
+
+#: ../../install_steps_interactive.pm_.c:1175
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Si es desitja, la instalˇlació automŕtica es pot\n"
+"automatitzar completament, perň en aquest cas\n"
+"prendrŕ el control del disc dur!!\n"
+"(aixň estŕ pensat per a la instalˇlació en una altra caixa).\n"
+"\n"
+"Potser preferireu repetir la instalˇlació.\n"
+
+#: ../../install_steps_interactive.pm_.c:1180
+msgid "Automated"
+msgstr "Automŕtica"
+
+#: ../../install_steps_interactive.pm_.c:1180
+msgid "Replay"
+msgstr "Repeteix"
+
+#: ../../install_steps_interactive.pm_.c:1183
+msgid "Save packages selection"
+msgstr "Desa la selecció de paquets"
+
#: ../../install_steps_newt.pm_.c:22
#, c-format
msgid "Linux-Mandrake Installation %s"
@@ -4920,7 +5441,15 @@ msgid ""
msgstr ""
" <Tab>/<Alt-Tab> entre elements | <Espai> selecciona | <F12> pant. següent"
-#: ../../interactive.pm_.c:273
+#: ../../interactive.pm_.c:65
+msgid "kdesu missing"
+msgstr "El kdesu no hi és"
+
+#: ../../interactive.pm_.c:263
+msgid "Advanced"
+msgstr "Avançat"
+
+#: ../../interactive.pm_.c:286
msgid "Please wait"
msgstr "Si us plau, espereu"
@@ -4949,257 +5478,269 @@ msgstr "La vostra elecció? (predeterminat %s)"
msgid "Your choice? (default %s enter `none' for none) "
msgstr "La vostra elecció? (predeterminat %s introduďu `cap' per a cap) "
-#: ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:135
+#: ../../keyboard.pm_.c:124 ../../keyboard.pm_.c:154
msgid "Czech (QWERTZ)"
msgstr "Txec (QWERTZ)"
-#: ../../keyboard.pm_.c:106 ../../keyboard.pm_.c:119 ../../keyboard.pm_.c:138
+#: ../../keyboard.pm_.c:125 ../../keyboard.pm_.c:138 ../../keyboard.pm_.c:157
msgid "German"
msgstr "Alemany"
-#: ../../keyboard.pm_.c:107
+#: ../../keyboard.pm_.c:126
msgid "Dvorak"
msgstr "Dvorak"
-#: ../../keyboard.pm_.c:108 ../../keyboard.pm_.c:144
+#: ../../keyboard.pm_.c:127 ../../keyboard.pm_.c:163
msgid "Spanish"
msgstr "Espanyol"
-#: ../../keyboard.pm_.c:109 ../../keyboard.pm_.c:145
+#: ../../keyboard.pm_.c:128 ../../keyboard.pm_.c:164
msgid "Finnish"
msgstr "Finčs"
-#: ../../keyboard.pm_.c:110 ../../keyboard.pm_.c:120 ../../keyboard.pm_.c:146
+#: ../../keyboard.pm_.c:129 ../../keyboard.pm_.c:139 ../../keyboard.pm_.c:165
msgid "French"
msgstr "Francčs"
-#: ../../keyboard.pm_.c:111 ../../keyboard.pm_.c:166
+#: ../../keyboard.pm_.c:130 ../../keyboard.pm_.c:186
msgid "Norwegian"
msgstr "Noruec"
-#: ../../keyboard.pm_.c:112
+#: ../../keyboard.pm_.c:131
msgid "Polish"
msgstr "Polončs"
-#: ../../keyboard.pm_.c:113 ../../keyboard.pm_.c:171
+#: ../../keyboard.pm_.c:132 ../../keyboard.pm_.c:191
msgid "Russian"
msgstr "Rus"
-#: ../../keyboard.pm_.c:114 ../../keyboard.pm_.c:182
+#: ../../keyboard.pm_.c:133 ../../keyboard.pm_.c:202
msgid "UK keyboard"
msgstr "Teclat RU"
-#: ../../keyboard.pm_.c:115 ../../keyboard.pm_.c:118 ../../keyboard.pm_.c:183
+#: ../../keyboard.pm_.c:134 ../../keyboard.pm_.c:137 ../../keyboard.pm_.c:203
msgid "US keyboard"
msgstr "Teclat EU"
-#: ../../keyboard.pm_.c:122
+#: ../../keyboard.pm_.c:141
msgid "Armenian (old)"
msgstr "Armeni (antic)"
-#: ../../keyboard.pm_.c:123
+#: ../../keyboard.pm_.c:142
msgid "Armenian (typewriter)"
msgstr "Armeni (mŕquina d'escriure)"
-#: ../../keyboard.pm_.c:124
+#: ../../keyboard.pm_.c:143
msgid "Armenian (phonetic)"
msgstr "Armeni (fončtic)"
-#: ../../keyboard.pm_.c:127
+#: ../../keyboard.pm_.c:146
msgid "Azerbaidjani (latin)"
msgstr "Azerbaidjančs (llatí)"
-#: ../../keyboard.pm_.c:128
+#: ../../keyboard.pm_.c:147
msgid "Azerbaidjani (cyrillic)"
msgstr "Azerbaidjančs (cirílˇlic)"
-#: ../../keyboard.pm_.c:129
+#: ../../keyboard.pm_.c:148
msgid "Belgian"
msgstr "Belga"
-#: ../../keyboard.pm_.c:130
+#: ../../keyboard.pm_.c:149
msgid "Bulgarian"
msgstr "Búlgar"
-#: ../../keyboard.pm_.c:131
+#: ../../keyboard.pm_.c:150
msgid "Brazilian (ABNT-2)"
msgstr "Brasiler (ABNT-2)"
-#: ../../keyboard.pm_.c:132
+#: ../../keyboard.pm_.c:151
msgid "Belarusian"
msgstr "Bielorús"
-#: ../../keyboard.pm_.c:133
+#: ../../keyboard.pm_.c:152
msgid "Swiss (German layout)"
msgstr "Suís (disposició alemanya)"
-#: ../../keyboard.pm_.c:134
+#: ../../keyboard.pm_.c:153
msgid "Swiss (French layout)"
msgstr "Suís (disposició francesa)"
-#: ../../keyboard.pm_.c:136
+#: ../../keyboard.pm_.c:155
msgid "Czech (QWERTY)"
msgstr "Txec (QWERTY)"
-#: ../../keyboard.pm_.c:137
+#: ../../keyboard.pm_.c:156
msgid "Czech (Programmers)"
-msgstr ""
+msgstr "Txec (Programadors)"
-#: ../../keyboard.pm_.c:139
+#: ../../keyboard.pm_.c:158
msgid "German (no dead keys)"
msgstr "Alemany (sense tecles inoperatives)"
-#: ../../keyboard.pm_.c:140
+#: ../../keyboard.pm_.c:159
msgid "Danish"
msgstr "Dančs"
-#: ../../keyboard.pm_.c:141
+#: ../../keyboard.pm_.c:160
msgid "Dvorak (US)"
msgstr "Dvorak (EU)"
-#: ../../keyboard.pm_.c:142
+#: ../../keyboard.pm_.c:161
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Noruec)"
-#: ../../keyboard.pm_.c:143
+#: ../../keyboard.pm_.c:162
msgid "Estonian"
msgstr "Estoniŕ"
-#: ../../keyboard.pm_.c:147
+#: ../../keyboard.pm_.c:166
msgid "Georgian (\"Russian\" layout)"
msgstr "Georgiŕ (disposició \"russa\")"
-#: ../../keyboard.pm_.c:148
+#: ../../keyboard.pm_.c:167
msgid "Georgian (\"Latin\" layout)"
msgstr "Georgiŕ (disposició \"llatina\")"
-#: ../../keyboard.pm_.c:149
+#: ../../keyboard.pm_.c:168
msgid "Greek"
msgstr "Grec"
-#: ../../keyboard.pm_.c:150
+#: ../../keyboard.pm_.c:169
msgid "Hungarian"
msgstr "Hongarčs"
-#: ../../keyboard.pm_.c:151
+#: ../../keyboard.pm_.c:170
msgid "Croatian"
msgstr "Croata"
-#: ../../keyboard.pm_.c:152
+#: ../../keyboard.pm_.c:171
msgid "Israeli"
msgstr "Israeliŕ"
-#: ../../keyboard.pm_.c:153
+#: ../../keyboard.pm_.c:172
msgid "Israeli (Phonetic)"
msgstr "Israeliŕ (fončtic)"
-#: ../../keyboard.pm_.c:154
+#: ../../keyboard.pm_.c:173
msgid "Iranian"
msgstr "Iraniŕ"
-#: ../../keyboard.pm_.c:155
+#: ../../keyboard.pm_.c:174
msgid "Icelandic"
msgstr "Islandčs"
-#: ../../keyboard.pm_.c:156
+#: ../../keyboard.pm_.c:175
msgid "Italian"
msgstr "Italiŕ"
-#: ../../keyboard.pm_.c:157
+#: ../../keyboard.pm_.c:176
msgid "Japanese 106 keys"
msgstr "Japončs de 106 tecles"
-#: ../../keyboard.pm_.c:158
+#: ../../keyboard.pm_.c:177
+msgid "Korean keyboard"
+msgstr "Teclat coreŕ"
+
+#: ../../keyboard.pm_.c:178
msgid "Latin American"
msgstr "Espanyol sud-americŕ"
-#: ../../keyboard.pm_.c:160
+#: ../../keyboard.pm_.c:179
+msgid "Macedonian"
+msgstr "Macedoni"
+
+#: ../../keyboard.pm_.c:180
msgid "Dutch"
msgstr "Holandčs"
-#: ../../keyboard.pm_.c:161
+#: ../../keyboard.pm_.c:181
msgid "Lithuanian AZERTY (old)"
msgstr "Lituŕ AZERTY (antic)"
-#: ../../keyboard.pm_.c:163
+#: ../../keyboard.pm_.c:183
msgid "Lithuanian AZERTY (new)"
msgstr "Lituŕ AZERTY (nou)"
-#: ../../keyboard.pm_.c:164
+#: ../../keyboard.pm_.c:184
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituŕ \"fila de números\" QWERTY"
-#: ../../keyboard.pm_.c:165
+#: ../../keyboard.pm_.c:185
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituŕ \"fončtic\" QWERTY"
-#: ../../keyboard.pm_.c:167
+#: ../../keyboard.pm_.c:187
msgid "Polish (qwerty layout)"
msgstr "Polončs (disposició qwerty)"
-#: ../../keyboard.pm_.c:168
+#: ../../keyboard.pm_.c:188
msgid "Polish (qwertz layout)"
msgstr "Polončs (disposició qwertz)"
-#: ../../keyboard.pm_.c:169
+#: ../../keyboard.pm_.c:189
msgid "Portuguese"
msgstr "Portugučs"
-#: ../../keyboard.pm_.c:170
+#: ../../keyboard.pm_.c:190
msgid "Canadian (Quebec)"
msgstr "Canadenc (Quebec)"
-#: ../../keyboard.pm_.c:172
+#: ../../keyboard.pm_.c:192
msgid "Russian (Yawerty)"
msgstr "Rus (Yawerty)"
-#: ../../keyboard.pm_.c:173
+#: ../../keyboard.pm_.c:193
msgid "Swedish"
msgstr "Suec"
-#: ../../keyboard.pm_.c:174
+#: ../../keyboard.pm_.c:194
msgid "Slovenian"
msgstr "Eslovč"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:195
msgid "Slovakian (QWERTZ)"
msgstr "Eslovac (QWERTZ)"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:196
msgid "Slovakian (QWERTY)"
msgstr "Eslovac (QWERTY)"
-#: ../../keyboard.pm_.c:177
+#: ../../keyboard.pm_.c:197
msgid "Slovakian (Programmers)"
-msgstr ""
+msgstr "Eslovac (Programadors)"
-#: ../../keyboard.pm_.c:178
+#: ../../keyboard.pm_.c:198
msgid "Thai keyboard"
-msgstr "Teclat thai"
+msgstr "Teclat tai"
-#: ../../keyboard.pm_.c:179
+#: ../../keyboard.pm_.c:199
msgid "Turkish (traditional \"F\" model)"
msgstr "Turc (tradicional, model \"F\")"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:200
msgid "Turkish (modern \"Q\" model)"
msgstr "Turc (modern, model \"Q\")"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:201
msgid "Ukrainian"
msgstr "Ucraďnčs"
-#: ../../keyboard.pm_.c:184
+#: ../../keyboard.pm_.c:204
msgid "US keyboard (international)"
msgstr "Teclat EU (internacional)"
-#: ../../keyboard.pm_.c:185
+#: ../../keyboard.pm_.c:205
msgid "Vietnamese \"numeric row\" QWERTY"
-msgstr "Vietnamita \"fila de números\" QWERTY"
+msgstr "Vietnamita \"fila numčrica\" QWERTY"
+
+#: ../../keyboard.pm_.c:206
+msgid "Yugoslavian (latin/cyrillic)"
+msgstr "Iugoslau (llatí/cirílˇlic)"
-#: ../../keyboard.pm_.c:186
-msgid "Yugoslavian (latin layout)"
-msgstr "Iugoslau (disposició llatina)"
+#: ../../lvm.pm_.c:70
+msgid "Remove the logical volumes first\n"
+msgstr "Elimineu primer els volums lňgics\n"
#: ../../mouse.pm_.c:25
msgid "Sun - Mouse"
@@ -5214,19 +5755,18 @@ msgid "Logitech MouseMan+"
msgstr "Logitech MouseMan+"
#: ../../mouse.pm_.c:33
-#, fuzzy
msgid "Generic PS2 Wheel Mouse"
-msgstr "Generic Mouse"
+msgstr "Rató de bola PS2 genčric"
#: ../../mouse.pm_.c:34
msgid "GlidePoint"
msgstr "GlidePoint"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:62
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:58
msgid "Genius NetMouse"
msgstr "Genius NetMouse"
@@ -5234,103 +5774,119 @@ msgstr "Genius NetMouse"
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:43
+#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:67
+msgid "1 button"
+msgstr "1 botó"
+
+#: ../../mouse.pm_.c:44
msgid "Generic"
msgstr "General"
-#: ../../mouse.pm_.c:44
+#: ../../mouse.pm_.c:45
msgid "Wheel"
msgstr "De bola"
-#: ../../mouse.pm_.c:47
+#: ../../mouse.pm_.c:48
msgid "serial"
msgstr "sčrie"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:50
msgid "Generic 2 Button Mouse"
msgstr "Generic 2 Button Mouse"
-#: ../../mouse.pm_.c:50
+#: ../../mouse.pm_.c:51
msgid "Generic 3 Button Mouse"
msgstr "Generic 3 Button Mouse"
-#: ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:52
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:53
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:54
msgid "Mouse Systems"
msgstr "Mouse Systems"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:56
msgid "Logitech CC Series"
msgstr "Logitech CC Series"
-#: ../../mouse.pm_.c:56
+#: ../../mouse.pm_.c:57
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:59
msgid "MM Series"
msgstr "MM Series"
-#: ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:60
msgid "MM HitTablet"
msgstr "MM HitTablet"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:61
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Logitech Mouse (sčrie, tipus C7 antic)"
-#: ../../mouse.pm_.c:64
+#: ../../mouse.pm_.c:65
msgid "busmouse"
msgstr "busmouse"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
msgid "2 buttons"
msgstr "2 botons"
-#: ../../mouse.pm_.c:67
+#: ../../mouse.pm_.c:69
msgid "3 buttons"
msgstr "3 botons"
-#: ../../mouse.pm_.c:70
+#: ../../mouse.pm_.c:72
msgid "none"
msgstr "cap"
-#: ../../mouse.pm_.c:72
+#: ../../mouse.pm_.c:74
msgid "No mouse"
msgstr "Cap ratolí"
-#: ../../my_gtk.pm_.c:243
+#: ../../my_gtk.pm_.c:356
+msgid "Finish"
+msgstr "Finčs"
+
+#: ../../my_gtk.pm_.c:356
msgid "Next ->"
msgstr "Següent ->"
-#: ../../my_gtk.pm_.c:486
+#: ../../my_gtk.pm_.c:357
+msgid "<- Previous"
+msgstr "<- Anterior"
+
+#: ../../my_gtk.pm_.c:616
msgid "Is this correct?"
msgstr "Aixň és correcte?"
-#: ../../netconnect.pm_.c:93 ../../netconnect_new.pm_.c:151
+#: ../../netconnect.pm_.c:141
msgid "Internet configuration"
msgstr "Configuració d'Internet"
-#: ../../netconnect.pm_.c:94 ../../netconnect_new.pm_.c:152
+#: ../../netconnect.pm_.c:142
msgid "Do you want to try to connect to the Internet now?"
msgstr "Voleu intentar connectar-vos a Internet ara?"
-#: ../../netconnect.pm_.c:101 ../../netconnect_new.pm_.c:159
+#: ../../netconnect.pm_.c:146
msgid "Testing your connection..."
msgstr "S'estŕ comprovant la vostra conexió..."
-#: ../../netconnect.pm_.c:106 ../../netconnect_new.pm_.c:164
+#: ../../netconnect.pm_.c:152 ../../standalone/draknet_.c:196
msgid "The system is now connected to Internet."
msgstr "Ara, el sistema estŕ connectat a Internet."
-#: ../../netconnect.pm_.c:107 ../../netconnect_new.pm_.c:165
+#: ../../netconnect.pm_.c:153
+msgid "For Security reason, it will be disconnected now."
+msgstr "Per raons de seguretat, ara es desconnectarŕ."
+
+#: ../../netconnect.pm_.c:154 ../../standalone/draknet_.c:196
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
@@ -5338,15 +5894,18 @@ msgstr ""
"No sembla que el sistema estigui connectat a Internet.\n"
"Intenteu tornar a configurar la connexió."
-#: ../../netconnect.pm_.c:141 ../../netconnect.pm_.c:213
-#: ../../netconnect.pm_.c:232 ../../netconnect.pm_.c:244
-#: ../../netconnect.pm_.c:256 ../../netconnect_new.pm_.c:226
-#: ../../netconnect_new.pm_.c:300 ../../netconnect_new.pm_.c:319
-#: ../../netconnect_new.pm_.c:331 ../../netconnect_new.pm_.c:343
+#: ../../netconnect.pm_.c:159 ../../netconnect.pm_.c:901
+#: ../../netconnect.pm_.c:930 ../../netconnect.pm_.c:1008
+msgid "Network Configuration"
+msgstr "Configuració de xarxa"
+
+#: ../../netconnect.pm_.c:220 ../../netconnect.pm_.c:264
+#: ../../netconnect.pm_.c:274 ../../netconnect.pm_.c:281
+#: ../../netconnect.pm_.c:291
msgid "ISDN Configuration"
msgstr "Configuració de l'XDSI"
-#: ../../netconnect.pm_.c:141 ../../netconnect_new.pm_.c:226
+#: ../../netconnect.pm_.c:220
msgid ""
"Select your provider.\n"
" If it's not in the list, choose Unlisted"
@@ -5354,115 +5913,107 @@ msgstr ""
"Seleccioneu el vostre proveďdor.\n"
" Si no és a la llista, seleccioneu No és a la llista"
-#: ../../netconnect.pm_.c:158 ../../netconnect_new.pm_.c:245
+#: ../../netconnect.pm_.c:234
msgid "Connection Configuration"
msgstr "Configuració de la connexió"
-#: ../../netconnect.pm_.c:159 ../../netconnect_new.pm_.c:246
+#: ../../netconnect.pm_.c:235
msgid "Please fill or check the field below"
msgstr "Si us plau, ompliu o marqueu el camp inferior"
-#: ../../netconnect.pm_.c:161 ../../netconnect_new.pm_.c:248
+#: ../../netconnect.pm_.c:237 ../../standalone/draknet_.c:550
msgid "Card IRQ"
msgstr "Targeta IRQ"
-#: ../../netconnect.pm_.c:162 ../../netconnect_new.pm_.c:249
+#: ../../netconnect.pm_.c:238 ../../standalone/draknet_.c:551
msgid "Card mem (DMA)"
msgstr "Targeta de memňria (DMA)"
-#: ../../netconnect.pm_.c:163 ../../netconnect_new.pm_.c:250
+#: ../../netconnect.pm_.c:239 ../../standalone/draknet_.c:552
msgid "Card IO"
msgstr "Targeta d'E/S"
-#: ../../netconnect.pm_.c:164 ../../netconnect_new.pm_.c:251
+#: ../../netconnect.pm_.c:240 ../../standalone/draknet_.c:553
msgid "Card IO_0"
msgstr "Targeta d'E/S_0"
-#: ../../netconnect.pm_.c:165 ../../netconnect_new.pm_.c:252
+#: ../../netconnect.pm_.c:241 ../../standalone/draknet_.c:554
msgid "Card IO_1"
msgstr "Targeta d'E/S_1"
-#: ../../netconnect.pm_.c:166 ../../netconnect_new.pm_.c:253
+#: ../../netconnect.pm_.c:242 ../../standalone/draknet_.c:555
msgid "Your personal phone number"
msgstr "El vostre telčfon particular"
-#: ../../netconnect.pm_.c:168 ../../netconnect_new.pm_.c:255
+#: ../../netconnect.pm_.c:243 ../../standalone/draknet_.c:556
msgid "Provider name (ex provider.net)"
msgstr "Nom del proveďdor (p.ex. proveidor.net)"
-#: ../../netconnect.pm_.c:169 ../../netconnect_new.pm_.c:256
+#: ../../netconnect.pm_.c:244 ../../standalone/draknet_.c:557
msgid "Provider phone number"
msgstr "Número de telčfon del proveďdor"
-#: ../../netconnect.pm_.c:170 ../../netconnect_new.pm_.c:257
+#: ../../netconnect.pm_.c:245
msgid "Provider dns 1"
msgstr "DNS 1 del proveďdor"
-#: ../../netconnect.pm_.c:171 ../../netconnect_new.pm_.c:258
+#: ../../netconnect.pm_.c:246
msgid "Provider dns 2"
msgstr "DNS 2 del proveďdor"
-#: ../../netconnect.pm_.c:172 ../../netconnect_new.pm_.c:259
+#: ../../netconnect.pm_.c:247 ../../standalone/draknet_.c:562
msgid "Dialing mode"
msgstr "Mode de marcatge"
-#: ../../netconnect.pm_.c:174 ../../netconnect_new.pm_.c:261
+#: ../../netconnect.pm_.c:248 ../../standalone/draknet_.c:560
msgid "Account Login (user name)"
msgstr "Entrada del compte (nom d'usuari)"
-#: ../../netconnect.pm_.c:175 ../../netconnect_new.pm_.c:262
+#: ../../netconnect.pm_.c:249 ../../standalone/draknet_.c:561
msgid "Account Password"
msgstr "Contrasenya del compte"
-#: ../../netconnect.pm_.c:176 ../../netconnect_new.pm_.c:263
-msgid "Confirm Password"
-msgstr "Confirmeu la contrasenya"
-
-#: ../../netconnect.pm_.c:208 ../../netconnect_new.pm_.c:295
+#: ../../netconnect.pm_.c:259
msgid "Europe"
msgstr "Europa"
-#: ../../netconnect.pm_.c:208 ../../netconnect_new.pm_.c:295
+#: ../../netconnect.pm_.c:259
msgid "Europe (EDSS1)"
msgstr "Europa (EDSS1)"
-#: ../../netconnect.pm_.c:210 ../../netconnect_new.pm_.c:297
+#: ../../netconnect.pm_.c:261
msgid "Rest of the world"
msgstr "Resta del món"
-#: ../../netconnect.pm_.c:210 ../../netconnect_new.pm_.c:297
-msgid "Rest of the world - no D-Channel (leased lines)"
-msgstr "Resta del món - cap canal D (línies llogades)"
+#: ../../netconnect.pm_.c:261
+msgid ""
+"Rest of the world \n"
+" no D-Channel (leased lines)"
+msgstr ""
+"Resta del món \n"
+" cap canal D (línies llogades)"
-#: ../../netconnect.pm_.c:214 ../../netconnect_new.pm_.c:301
+#: ../../netconnect.pm_.c:265
msgid "Which protocol do you want to use ?"
msgstr "Quin protocol voleu utilitzar?"
-#: ../../netconnect.pm_.c:224 ../../netconnect_new.pm_.c:311
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../netconnect.pm_.c:226 ../../netconnect_new.pm_.c:313
-msgid "PCI"
-msgstr "PCI"
+#: ../../netconnect.pm_.c:275
+msgid "What kind of card do you have?"
+msgstr "Quin tipus de targeta teniu?"
-#: ../../netconnect.pm_.c:228 ../../netconnect_new.pm_.c:315
+#: ../../netconnect.pm_.c:276
msgid "I don't know"
msgstr "No sé"
-#: ../../netconnect.pm_.c:233 ../../netconnect_new.pm_.c:320
-msgid "What kind of card do you have?"
-msgstr "Quin tipus de targeta teniu?"
-
-#: ../../netconnect.pm_.c:239 ../../netconnect_new.pm_.c:326
-msgid "Continue"
-msgstr "Continua"
+#: ../../netconnect.pm_.c:276
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
-#: ../../netconnect.pm_.c:241 ../../netconnect_new.pm_.c:328
-msgid "Abort"
-msgstr "Interromp"
+#: ../../netconnect.pm_.c:276
+msgid "PCI"
+msgstr "PCI"
-#: ../../netconnect.pm_.c:245 ../../netconnect_new.pm_.c:332
+#: ../../netconnect.pm_.c:282
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -5475,15 +6026,19 @@ msgstr ""
"\n"
"Si teniu una targeta PCMCIA, us en cal saber l'irq i l'io.\n"
-#: ../../netconnect.pm_.c:257 ../../netconnect_new.pm_.c:344
+#: ../../netconnect.pm_.c:286
+msgid "Abort"
+msgstr "Interromp"
+
+#: ../../netconnect.pm_.c:286
+msgid "Continue"
+msgstr "Continua"
+
+#: ../../netconnect.pm_.c:292
msgid "Which is your ISDN card ?"
msgstr "Quina targeta XDSI teniu ?"
-#: ../../netconnect.pm_.c:282
-msgid "I have found an ISDN Card:\n"
-msgstr "He trobat una targeta XDSI:\n"
-
-#: ../../netconnect.pm_.c:288 ../../netconnect_new.pm_.c:367
+#: ../../netconnect.pm_.c:312
msgid ""
"I have detected an ISDN PCI Card, but I don't know the type. Please select "
"one PCI card on the next screen."
@@ -5491,13 +6046,13 @@ msgstr ""
"He detectat una targeta PCI XDSI, perň no en conec el tipus. Si us plau, "
"seleccioneu una targeta PCI a la pantalla següent."
-#: ../../netconnect.pm_.c:300 ../../netconnect_new.pm_.c:379
+#: ../../netconnect.pm_.c:321
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
"No s'ha trobat cap targeta PCI XDSI. Si us plau, seleccioneu-ne una a la "
"pantalla següent"
-#: ../../netconnect.pm_.c:336 ../../netconnect_new.pm_.c:412
+#: ../../netconnect.pm_.c:369
msgid ""
"No ethernet network adapter has been detected on your system.\n"
"I cannot set up this connection type."
@@ -5505,26 +6060,23 @@ msgstr ""
"No s'ha detectat cap adaptador de xarxa ethernet al sistema.\n"
"No puc configurar aquest tipus de connexió."
-#: ../../netconnect.pm_.c:340 ../../netconnect_new.pm_.c:417
-#: ../../standalone/drakgw_.c:222
+#: ../../netconnect.pm_.c:373 ../../standalone/drakgw_.c:232
msgid "Choose the network interface"
msgstr "Escolliu la interfície de xarxa"
-#: ../../netconnect.pm_.c:341 ../../netconnect_new.pm_.c:418
+#: ../../netconnect.pm_.c:374
msgid ""
"Please choose which network adapter you want to use to connect to Internet"
msgstr ""
"Si us plau, seleccioneu quin adaptador de xarxa voleu utilitzar per\n"
"connectar-vos a Internet."
-#: ../../netconnect.pm_.c:356 ../../netconnect.pm_.c:635
-#: ../../netconnect.pm_.c:766 ../../netconnect_new.pm_.c:425
-#: ../../netconnect_new.pm_.c:777 ../../netconnect_new.pm_.c:908
-#: ../../standalone/drakgw_.c:217
+#: ../../netconnect.pm_.c:383 ../../netconnect.pm_.c:697
+#: ../../netconnect.pm_.c:842 ../../standalone/drakgw_.c:223
msgid "Network interface"
msgstr "Interfície de la xarxa"
-#: ../../netconnect.pm_.c:357 ../../netconnect_new.pm_.c:426
+#: ../../netconnect.pm_.c:384
msgid ""
"\n"
"Do you agree?"
@@ -5532,81 +6084,82 @@ msgstr ""
"\n"
"Hi esteu d'acord?"
-#: ../../netconnect.pm_.c:357 ../../netconnect_new.pm_.c:426
+#: ../../netconnect.pm_.c:384
msgid "I'm about to restart the network device:\n"
msgstr "Ara reiniciaré el dispositiu de xarxa:\n"
-#: ../../netconnect.pm_.c:473 ../../netconnect_new.pm_.c:512
+#: ../../netconnect.pm_.c:482
msgid "ADSL configuration"
msgstr "Configuració de l'ADSL"
-#: ../../netconnect.pm_.c:474 ../../netconnect_new.pm_.c:513
+#: ../../netconnect.pm_.c:483
msgid "Do you want to start your connection at boot?"
msgstr "Voleu iniciar la connexió en arrencar?"
-#: ../../netconnect.pm_.c:541 ../../netconnect_new.pm_.c:672
-msgid "Try to find a modem?"
-msgstr "Voleu que intenti trobar un mňdem?"
-
-#: ../../netconnect.pm_.c:551 ../../netconnect_new.pm_.c:677
+#: ../../netconnect.pm_.c:618
msgid "Please choose which serial port your modem is connected to."
msgstr ""
"Si us plau, seleccioneu el port sčrie al qual teniu connectat el mňdem."
-#: ../../netconnect.pm_.c:556 ../../netconnect_new.pm_.c:682
+#: ../../netconnect.pm_.c:623
msgid "Dialup options"
msgstr "Opcions de marcatge"
-#: ../../netconnect.pm_.c:557 ../../netconnect_new.pm_.c:683
+#: ../../netconnect.pm_.c:624 ../../standalone/draknet_.c:564
msgid "Connection name"
msgstr "Nom de la connexió"
-#: ../../netconnect.pm_.c:558 ../../netconnect_new.pm_.c:684
+#: ../../netconnect.pm_.c:625 ../../standalone/draknet_.c:565
msgid "Phone number"
msgstr "Número de telčfon"
-#: ../../netconnect.pm_.c:559 ../../netconnect_new.pm_.c:685
+#: ../../netconnect.pm_.c:626 ../../standalone/draknet_.c:566
msgid "Login ID"
msgstr "ID d'entrada"
-#: ../../netconnect.pm_.c:561 ../../netconnect_new.pm_.c:687
+#: ../../netconnect.pm_.c:628 ../../standalone/draknet_.c:568
msgid "Authentication"
msgstr "Autenticació"
-#: ../../netconnect.pm_.c:561 ../../netconnect_new.pm_.c:687
+#: ../../netconnect.pm_.c:628 ../../standalone/draknet_.c:568
msgid "PAP"
msgstr "PAP"
-#: ../../netconnect.pm_.c:561 ../../netconnect_new.pm_.c:687
+#: ../../netconnect.pm_.c:628 ../../standalone/draknet_.c:568
msgid "Script-based"
msgstr "Basat en script"
-#: ../../netconnect.pm_.c:561 ../../netconnect_new.pm_.c:687
+#: ../../netconnect.pm_.c:628 ../../standalone/draknet_.c:568
msgid "Terminal-based"
msgstr "Basat en terminal"
-#: ../../netconnect.pm_.c:562 ../../netconnect_new.pm_.c:688
+#: ../../netconnect.pm_.c:629 ../../standalone/draknet_.c:569
msgid "Domain name"
msgstr "Nom de domini"
-#: ../../netconnect.pm_.c:564 ../../netconnect_new.pm_.c:690
-msgid "First DNS Server"
-msgstr "Servidor DNS primari"
+#: ../../netconnect.pm_.c:630 ../../standalone/draknet_.c:570
+msgid "First DNS Server (optional)"
+msgstr "Primer servidor DNS (opcional)"
+
+#: ../../netconnect.pm_.c:631 ../../standalone/draknet_.c:571
+msgid "Second DNS Server (optional)"
+msgstr "Segon servidor DNS (opcional)"
-#: ../../netconnect.pm_.c:565 ../../netconnect_new.pm_.c:691
-msgid "Second DNS Server"
-msgstr "Servidor DNS secundari"
+#: ../../netconnect.pm_.c:698
+msgid ""
+"I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"
+msgstr ""
+"Ara reiniciaré el dispositiu de xarxa $netc->{NET_DEVICE}. Hi esteu d'acord?"
-#: ../../netconnect.pm_.c:594 ../../netconnect_new.pm_.c:736
+#: ../../netconnect.pm_.c:742
msgid ""
"\n"
-"You can connect to Internet or reconfigure your connection."
+"You can disconnect or reconfigure your connection."
msgstr ""
"\n"
-"Podeu connectar-vos a Internet o tornar a configurar la connexió."
+"Podeu desconnectar-vos o tornar a configurar la connexió."
-#: ../../netconnect.pm_.c:594 ../../netconnect.pm_.c:598
-#: ../../netconnect_new.pm_.c:736 ../../netconnect_new.pm_.c:740
+#: ../../netconnect.pm_.c:742 ../../netconnect.pm_.c:745
msgid ""
"\n"
"You can reconfigure your connection."
@@ -5614,197 +6167,220 @@ msgstr ""
"\n"
"Podeu tornar a configurar la connexió."
-#: ../../netconnect.pm_.c:594 ../../netconnect_new.pm_.c:736
-msgid "You are not currently connected to Internet."
-msgstr "Ara mateix no esteu connectat a Internet."
+#: ../../netconnect.pm_.c:742
+msgid "You are currently connected to internet."
+msgstr "Ara mateix esteu connectat a Internet."
-#: ../../netconnect.pm_.c:598 ../../netconnect_new.pm_.c:740
+#: ../../netconnect.pm_.c:745
msgid ""
"\n"
-"You can disconnect or reconfigure your connection."
+"You can connect to Internet or reconfigure your connection."
msgstr ""
"\n"
-"Podeu desconnectar-vos o tornar a configurar la connexió."
+"Podeu connectar-vos a Internet o tornar a configurar la connexió."
-#: ../../netconnect.pm_.c:598 ../../netconnect_new.pm_.c:740
-msgid "You are currently connected to internet."
-msgstr "Ara mateix esteu connectat a Internet."
+#: ../../netconnect.pm_.c:745
+msgid "You are not currently connected to Internet."
+msgstr "Ara mateix no esteu connectat a Internet."
-#: ../../netconnect.pm_.c:602 ../../netconnect_new.pm_.c:744
+#: ../../netconnect.pm_.c:749 ../../standalone/net_monitor_.c:81
msgid "Connect to Internet"
msgstr "Connecta't a Internet"
-#: ../../netconnect.pm_.c:604 ../../netconnect_new.pm_.c:746
+#: ../../netconnect.pm_.c:751
msgid "Disconnect from Internet"
msgstr "Desconnecta't d'Internet"
-#: ../../netconnect.pm_.c:606 ../../netconnect_new.pm_.c:748
+#: ../../netconnect.pm_.c:753
msgid "Configure network connection (LAN or Internet)"
msgstr "Configura la connexió de xarxa (LAN o Internet)"
-#: ../../netconnect.pm_.c:609 ../../netconnect_new.pm_.c:751
+#: ../../netconnect.pm_.c:756
msgid "Internet connection & configuration"
msgstr "Connexió i configuració d'Internet"
-#: ../../netconnect.pm_.c:636 ../../netconnect.pm_.c:767
-#: ../../netconnect_new.pm_.c:778 ../../netconnect_new.pm_.c:909
-msgid ""
-"I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"
-msgstr ""
-"Ara reiniciaré el dispositiu de xarxa $netc->{NET_DEVICE}. Hi esteu d'acord?"
-
-#: ../../netconnect.pm_.c:653 ../../netconnect_new.pm_.c:795
-msgid "Configure a normal modem connection"
-msgstr "Configura una connexió normal per mňdem"
-
-#: ../../netconnect.pm_.c:673 ../../netconnect_new.pm_.c:815
-msgid "Configure an ISDN connection"
-msgstr "Configura una connexió per XDSI"
-
-#: ../../netconnect.pm_.c:678 ../../netconnect_new.pm_.c:820
-msgid "Internal ISDN card"
-msgstr "Targeta XDSI interna"
+#: ../../netconnect.pm_.c:808 ../../netconnect.pm_.c:957
+#: ../../netconnect.pm_.c:967 ../../netconnect.pm_.c:982
+msgid "Network Configuration Wizard"
+msgstr "Assistent de configuració de xarxa"
-#: ../../netconnect.pm_.c:680 ../../netconnect_new.pm_.c:822
+#: ../../netconnect.pm_.c:809
msgid "External ISDN modem"
msgstr "Mňdem XDSI extern"
-#: ../../netconnect.pm_.c:683 ../../netconnect.pm_.c:717
-#: ../../netconnect.pm_.c:729 ../../netconnect.pm_.c:753
-#: ../../netconnect.pm_.c:798 ../../netconnect_new.pm_.c:825
-#: ../../netconnect_new.pm_.c:859 ../../netconnect_new.pm_.c:871
-#: ../../netconnect_new.pm_.c:895 ../../netconnect_new.pm_.c:940
-msgid "Connect to the Internet"
-msgstr "Connecta't a internet"
+#: ../../netconnect.pm_.c:809
+msgid "Internal ISDN card"
+msgstr "Targeta XDSI interna"
-#: ../../netconnect.pm_.c:684 ../../netconnect_new.pm_.c:826
+#: ../../netconnect.pm_.c:809
msgid "What kind is your ISDN connection?"
msgstr "Quin tipus de connexió XDSI teniu?"
-#: ../../netconnect.pm_.c:703 ../../netconnect_new.pm_.c:845
-msgid "Configure a DSL (or ADSL) connection"
-msgstr "Configura una connexió per DSL (o ASDL)"
-
-#: ../../netconnect.pm_.c:712 ../../netconnect_new.pm_.c:854
-msgid "France"
-msgstr "França"
-
-#: ../../netconnect.pm_.c:714 ../../netconnect_new.pm_.c:856
-msgid "Other countries"
-msgstr "Altres paďsos"
-
-#: ../../netconnect.pm_.c:718 ../../netconnect_new.pm_.c:860
-msgid "In which country are you located ?"
-msgstr "A quin país us trobeu?"
-
-#: ../../netconnect.pm_.c:724 ../../netconnect_new.pm_.c:866
-msgid "Alcatel modem"
-msgstr "Mňdem Alcatel"
-
-#: ../../netconnect.pm_.c:726 ../../netconnect_new.pm_.c:868
-msgid "ECI modem"
-msgstr "Mňdem ECI"
+#: ../../netconnect.pm_.c:830 ../../netconnect.pm_.c:879
+msgid "Connect to the Internet"
+msgstr "Connecta't a internet"
-#: ../../netconnect.pm_.c:730 ../../netconnect_new.pm_.c:872
-msgid "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
+#: ../../netconnect.pm_.c:831
+msgid ""
+"The most common way to connect with adsl is pppoe.\n"
+"Some connections use pptp, a few ones use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
msgstr ""
-"Si el vostre mňdem adsl és un mňdem Alcatel, seleccioneu Alcatel. Si no, ECI."
+"La manera més habitual de connectar amb ADSL és pppoe.\n"
+"Algunes connexions utilitzen pptp, unes poques utilitzen dhcp.\n"
+"Si no ho sabeu, escolliu 'utilitza pppoe'"
+
+#: ../../netconnect.pm_.c:833
+msgid "use dhcp"
+msgstr "utilitza dhcp"
-#: ../../netconnect.pm_.c:748 ../../netconnect_new.pm_.c:890
+#: ../../netconnect.pm_.c:833
msgid "use pppoe"
msgstr "utilitza pppoe"
-#: ../../netconnect.pm_.c:750 ../../netconnect_new.pm_.c:892
-msgid "don't use pppoe"
-msgstr "no utilitzis pppoe"
-
-#: ../../netconnect.pm_.c:754 ../../netconnect_new.pm_.c:896
-msgid ""
-"The most common way to connect with adsl is dhcp + pppoe.\n"
-"However, some connections only use dhcp.\n"
-"If you don't know, choose 'use pppoe'"
-msgstr ""
-"La manera més habitual de connectar amb adsl és dhcp + pppoe.\n"
-"No obstant aixň, hi ha connexions que utilitzen només dhcp.\n"
-"Si no ho sabeu, escolliu 'utilitza pppoe'"
+#: ../../netconnect.pm_.c:833
+msgid "use pptp"
+msgstr "utilitza pptp"
-#: ../../netconnect.pm_.c:777 ../../netconnect_new.pm_.c:919
-msgid "Configure a cable connection"
-msgstr "Configura una connexió per cable"
+#: ../../netconnect.pm_.c:843
+#, c-format
+msgid "I'm about to restart the network device %s. Do you agree?"
+msgstr "Ara reiniciaré el dispositiu de xarxa %s. Hi esteu d'acord?"
-#: ../../netconnect.pm_.c:799 ../../netconnect_new.pm_.c:941
+#: ../../netconnect.pm_.c:880
msgid ""
"Which dhcp client do you want to use?\n"
-"Default is dhcpd"
+"Default is dhcpcd"
msgstr ""
"Quin client dhcp voleu utilitzar?\n"
-"El predeterminat és dhcpd"
+"El predeterminat és dhcpcd"
-#: ../../netconnect.pm_.c:812 ../../netconnect_new.pm_.c:954
-msgid "Disable Internet Connection"
-msgstr "Inhabilita la connexió a Internet"
-
-#: ../../netconnect.pm_.c:823 ../../netconnect_new.pm_.c:965
-msgid "Configure local network"
-msgstr "Configura la xarxa local"
-
-#: ../../netconnect.pm_.c:827 ../../netconnect_new.pm_.c:969
+#: ../../netconnect.pm_.c:897
msgid "Network configuration"
msgstr "Configuració de xarxa"
-#: ../../netconnect.pm_.c:828 ../../netconnect_new.pm_.c:970
+#: ../../netconnect.pm_.c:898
msgid "Do you want to restart the network"
msgstr "Voleu reiniciar la xarxa"
-#: ../../netconnect.pm_.c:836 ../../netconnect_new.pm_.c:978
-msgid "Disable networking"
-msgstr "Inhabilita el sistema de xarxa"
+#: ../../netconnect.pm_.c:901
+#, c-format
+msgid ""
+"A problem occured while restarting the network: \n"
+"\n"
+"%s"
+msgstr ""
+"S'ha produďt un problema en reiniciar la xarxa: \n"
+"\n"
+"%s"
-#: ../../netconnect.pm_.c:846 ../../netconnect_new.pm_.c:988
-msgid "Configure the Internet connection / Configure local Network"
-msgstr "Configura la connexió a Internet / Configura la xarxa local"
+#: ../../netconnect.pm_.c:931
+msgid ""
+"Because you are doing a network installation, your network is already "
+"configured.\n"
+"Click on Ok to keep your configuration, or cancel to reconfigure your "
+"Internet & Network connection.\n"
+msgstr ""
+"Atčs que esteu realitzant una instalˇlació de xarxa, ja teniu la xarxa "
+"configurada.\n"
+"Feu clic a D'acord per conservar la configuració, o a Cancelˇla per tornar a "
+"configurar la connexió a Internet i xarxa.\n"
-#: ../../netconnect.pm_.c:847 ../../netconnect_new.pm_.c:989
+#: ../../netconnect.pm_.c:958
msgid ""
-"Local networking has already been configured.\n"
-"Do you want to:"
+"Welcome to The Network Configuration Wizard\n"
+"\n"
+"We are about to configure your internet/network connection.\n"
+"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
-"La xarxa local ja s'ha configurat.\n"
-"Voleu:"
+"Benvingut a l'Auxiliar de configuració a xarxa\n"
+"\n"
+"Ara configurarem la connexió a Internet/xarxa.\n"
+"Si no voleu utilitzar la detecció automŕtica, desactiveu el quadre de "
+"verificació.\n"
+
+#: ../../netconnect.pm_.c:960
+msgid "Choose the profile to configure"
+msgstr "Escolliu el perfil per configurar"
+
+#: ../../netconnect.pm_.c:961
+msgid "Use auto detection"
+msgstr "Utilitza la detecció automŕtica"
-#: ../../netconnect.pm_.c:848 ../../netconnect_new.pm_.c:990
+#: ../../netconnect.pm_.c:967 ../../printerdrake.pm_.c:19
+msgid "Detecting devices..."
+msgstr "S'estan detectant els dispositius..."
+
+#: ../../netconnect.pm_.c:974
+msgid "Normal modem connection"
+msgstr "Connexió normal per mňdem"
+
+#: ../../netconnect.pm_.c:974
+#, c-format
+msgid "detected on port %s"
+msgstr "detectat al port %s"
+
+#: ../../netconnect.pm_.c:975
+msgid "ISDN connection"
+msgstr "Connexió XDSI"
+
+#: ../../netconnect.pm_.c:975
+#, c-format
+msgid "detected %s"
+msgstr "s'ha detectat %s"
+
+#: ../../netconnect.pm_.c:976
+msgid "DSL (or ADSL) connection"
+msgstr "Connexió per DSL (o ADSL)"
+
+#: ../../netconnect.pm_.c:976
+#, c-format
+msgid "detected on interface %s"
+msgstr "detectat a la interfície %s"
+
+#: ../../netconnect.pm_.c:977
+msgid "Cable connection"
+msgstr "Connexió de cable"
+
+#: ../../netconnect.pm_.c:978
+msgid "LAN connection"
+msgstr "Connexió LAN"
+
+#: ../../netconnect.pm_.c:978
+msgid "ethernet card(s) detected"
+msgstr "s'han detectat una o diverses targetes Ethernet"
+
+#: ../../netconnect.pm_.c:983
msgid "How do you want to connect to the Internet?"
msgstr "Com us voleu connectar a Internet?"
-#: ../../netconnect.pm_.c:870 ../../netconnect_new.pm_.c:1012
-msgid "Network Configuration"
-msgstr "Configuració de xarxa"
-
-#: ../../netconnect.pm_.c:871 ../../netconnect_new.pm_.c:1013
+#: ../../netconnect.pm_.c:1000
msgid ""
-"Now that your Internet connection is configured,\n"
-"your computer can be configured to share its Internet connection.\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN).\n"
+"Congratulation, The network and internet configuration is finished.\n"
"\n"
-"Would you like to setup the Internet Connection Sharing?\n"
+"The configuration will now be applied to your system."
msgstr ""
-"Ara que ja teniu configurada la connexió a Internet,\n"
-"podeu configurar l'ordinador per tal que la comparteixi.\n"
-"Nota: per configurar una xarxa d'ŕrea local (LAN), us cal un adaptador de "
-"xarxa dedicat.\n"
+"Felicitats, la configuració de xarxa i Internet ha finalitzat.\n"
"\n"
-"Voleu configurar la connexió a Internet compartida?\n"
+"Ara s'aplicarŕ la configuració al sistema."
+
+#: ../../netconnect.pm_.c:1003
+msgid ""
+"After that is done, we recommend you to restart your X\n"
+"environnement to avoid hostname changing problem."
+msgstr ""
+"Després d'aixň, és recomanable que reinicieu l'entorn X per\n"
+"evitar problemes deguts al canvi de nom de l'ordinador central."
#: ../../network.pm_.c:253
msgid "no network card found"
msgstr "no s'ha trobat cap targeta de xarxa"
-#: ../../network.pm_.c:273 ../../network.pm_.c:340
+#: ../../network.pm_.c:277 ../../network.pm_.c:387
msgid "Configuring network"
msgstr "S'estŕ configurant la xarxa"
-#: ../../network.pm_.c:274
+#: ../../network.pm_.c:278
msgid ""
"Please enter your host name if you know it.\n"
"Some DHCP servers require the hostname to work.\n"
@@ -5816,22 +6392,22 @@ msgstr ""
"El nom ha de ser complet,\n"
"com ara ``mybox.mylab.myco.com''."
-#: ../../network.pm_.c:278 ../../network.pm_.c:345
+#: ../../network.pm_.c:282 ../../network.pm_.c:392
msgid "Host name"
msgstr "Nom de l'ordinador central"
-#: ../../network.pm_.c:297
+#: ../../network.pm_.c:319
msgid ""
"WARNING: This device has been previously configured to connect to the "
"Internet.\n"
-"Simply press OK to keep this device configured.\n"
+"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
msgstr ""
"ATENCIÓ: Aquest dispositiu ja es va configurar per connectar-se a Internet.\n"
-"Només cal que premeu D'acord per conservar-lo configurat.\n"
+"Només cal que accepteu mantenir-lo configurat.\n"
"Si modifiqueu els camps inferiors, sobreescriureu aquesta configuració."
-#: ../../network.pm_.c:302
+#: ../../network.pm_.c:324
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -5841,33 +6417,38 @@ msgstr ""
"S'ha d'introduir cada element com a una adreça IP amb notació decimal amb\n"
"punts (per exemple, 1.2.3.4)."
-#: ../../network.pm_.c:311 ../../network.pm_.c:312
+#: ../../network.pm_.c:333 ../../network.pm_.c:334
#, c-format
msgid "Configuring network device %s"
msgstr "S'estŕ configurant el dispositiu de xarxa %s"
-#: ../../network.pm_.c:314
-msgid "Automatic IP"
-msgstr "IP automŕtic"
+#: ../../network.pm_.c:334
+msgid " (driver $module)"
+msgstr " (programa de control $module)"
-#: ../../network.pm_.c:314
+#: ../../network.pm_.c:336 ../../standalone/draknet_.c:231
+#: ../../standalone/draknet_.c:425
msgid "IP address"
msgstr "Adreça IP"
-#: ../../network.pm_.c:314
+#: ../../network.pm_.c:337 ../../standalone/draknet_.c:426
msgid "Netmask"
msgstr "Submŕscara de la xarxa"
-#: ../../network.pm_.c:315
+#: ../../network.pm_.c:338
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network.pm_.c:321 ../../printerdrake.pm_.c:98
-#: ../../printerdrake.pm_.c:420
+#: ../../network.pm_.c:338
+msgid "Automatic IP"
+msgstr "IP automŕtic"
+
+#: ../../network.pm_.c:359 ../../printerdrake.pm_.c:102
+#: ../../printerdrake.pm_.c:425
msgid "IP address should be in format 1.2.3.4"
msgstr "L'adreça IP ha d'estar amb el format 1.2.3.4"
-#: ../../network.pm_.c:341
+#: ../../network.pm_.c:388
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
@@ -5879,43 +6460,43 @@ msgstr ""
"``mybox.mylab.myco.com''.\n"
"També podeu introduir l'adreça IP de la passarelˇla, si en teniu una"
-#: ../../network.pm_.c:346
+#: ../../network.pm_.c:393
msgid "DNS server"
msgstr "servidor DNS"
-#: ../../network.pm_.c:347
+#: ../../network.pm_.c:394 ../../standalone/draknet_.c:563
msgid "Gateway"
msgstr "Passarelˇla"
-#: ../../network.pm_.c:348
+#: ../../network.pm_.c:396
msgid "Gateway device"
msgstr "Dispositiu de la passarelˇla"
-#: ../../network.pm_.c:358
+#: ../../network.pm_.c:407
msgid "Proxies configuration"
msgstr "Configuració dels proxys"
-#: ../../network.pm_.c:359
+#: ../../network.pm_.c:408
msgid "HTTP proxy"
msgstr "Proxy HTTP"
-#: ../../network.pm_.c:360
+#: ../../network.pm_.c:409
msgid "FTP proxy"
msgstr "Proxy FTP"
-#: ../../network.pm_.c:366
+#: ../../network.pm_.c:412
msgid "Proxy should be http://..."
msgstr "El proxy ha de ser http://..."
-#: ../../network.pm_.c:367
+#: ../../network.pm_.c:413
msgid "Proxy should be ftp://..."
msgstr "El proxy ha de ser ftp://..."
-#: ../../partition_table.pm_.c:540
+#: ../../partition_table.pm_.c:560
msgid "Extended partition not supported on this platform"
msgstr "Aquesta plataforma no suporta particions esteses"
-#: ../../partition_table.pm_.c:558
+#: ../../partition_table.pm_.c:578
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -5925,117 +6506,98 @@ msgstr ""
"L'única solució és moure les particions primŕries per fer que el forat quedi "
"contigu a les particions ampliades"
-#: ../../partition_table.pm_.c:651
+#: ../../partition_table.pm_.c:672
#, c-format
msgid "Error reading file %s"
msgstr "S'ha produďt un error en llegir el fitxer %s"
-#: ../../partition_table.pm_.c:658
+#: ../../partition_table.pm_.c:679
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Ha fallat la restauració del fitxer %s: %s"
-#: ../../partition_table.pm_.c:660
+#: ../../partition_table.pm_.c:681
msgid "Bad backup file"
msgstr "Fitxer de cňpia de seguretat incorrecte"
-#: ../../partition_table.pm_.c:681
+#: ../../partition_table.pm_.c:703
#, c-format
msgid "Error writing to file %s"
msgstr "S'ha produďt un error en escriure al fitxer %s"
-#: ../../pkgs.pm_.c:20
-msgid "mandatory"
-msgstr "obligatori"
+#: ../../partition_table_raw.pm_.c:161
+msgid ""
+"Something bad is happening on your 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 trash"
+msgstr ""
+"Alguna cosa no va bé en la vostra unitat. \n"
+"Ha fallat una comprovació de la integritat de les dades. \n"
+"Aixň vol dir que qualsevol cosa que s'escrigui al disc acabarŕ feta malbé"
-#: ../../pkgs.pm_.c:21
+#: ../../pkgs.pm_.c:24
msgid "must have"
msgstr "ha de tenir"
-#: ../../pkgs.pm_.c:22
+#: ../../pkgs.pm_.c:25
msgid "important"
msgstr "important"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "very nice"
msgstr "molt bonic"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "nice"
msgstr "bonic"
-#: ../../pkgs.pm_.c:26 ../../pkgs.pm_.c:27
-msgid "interesting"
-msgstr "interessant"
-
-#: ../../pkgs.pm_.c:28 ../../pkgs.pm_.c:29 ../../pkgs.pm_.c:30
-#: ../../pkgs.pm_.c:31
+#: ../../pkgs.pm_.c:28
msgid "maybe"
msgstr "potser"
-#: ../../pkgs.pm_.c:34
-msgid "i18n (important)"
-msgstr "i18n (important)"
-
-#: ../../pkgs.pm_.c:35
-msgid "i18n (very nice)"
-msgstr "i18n (molt bonic)"
-
-#: ../../pkgs.pm_.c:36
-msgid "i18n (nice)"
-msgstr "i18n (bonic)"
-
-#: ../../printer.pm_.c:19
+#: ../../printer.pm_.c:20
msgid "Local printer"
msgstr "Impressora local"
-#: ../../printer.pm_.c:20
+#: ../../printer.pm_.c:21
msgid "Remote printer"
msgstr "Impressora remota"
-#: ../../printer.pm_.c:21 ../../printerdrake.pm_.c:410
-msgid "Remote CUPS server"
-msgstr "Servidor CUPS remot"
-
-#: ../../printer.pm_.c:22
+#: ../../printer.pm_.c:23
msgid "Remote lpd server"
msgstr "Servidor lpd remot"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:24
msgid "Network printer (socket)"
msgstr "Impressora de xarxa (sňcol)"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:25
msgid "SMB/Windows 95/98/NT"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:26
msgid "NetWare"
msgstr "NetWare"
-#: ../../printer.pm_.c:26 ../../printerdrake.pm_.c:154
-#: ../../printerdrake.pm_.c:156
+#: ../../printer.pm_.c:27 ../../printerdrake.pm_.c:158
+#: ../../printerdrake.pm_.c:160
msgid "Printer Device URI"
msgstr "Dispositiu URI d'impressora"
#: ../../printerdrake.pm_.c:19
-msgid "Detecting devices..."
-msgstr "S'estan detectant els dispositius..."
-
-#: ../../printerdrake.pm_.c:19
msgid "Test ports"
msgstr "Ports de comprovació"
-#: ../../printerdrake.pm_.c:35
+#: ../../printerdrake.pm_.c:40
#, c-format
msgid "A printer, model \"%s\", has been detected on "
msgstr "S'ha detectat una impressora, model \"%s\", a"
-#: ../../printerdrake.pm_.c:48
+#: ../../printerdrake.pm_.c:52
msgid "Local Printer Device"
msgstr "Dispositiu de la impressora local"
-#: ../../printerdrake.pm_.c:49
+#: ../../printerdrake.pm_.c:53
msgid ""
"What device is your printer connected to \n"
"(note that /dev/lp0 is equivalent to LPT1:)?\n"
@@ -6043,15 +6605,15 @@ msgstr ""
"A quin dispositiu estŕ connectada la vostra impressora?\n"
"(tingueu en compte que /dev/lp0 equival a LPT1:)\n"
-#: ../../printerdrake.pm_.c:51
+#: ../../printerdrake.pm_.c:55
msgid "Printer Device"
msgstr "Dispositiu d'impressora"
-#: ../../printerdrake.pm_.c:70
+#: ../../printerdrake.pm_.c:74
msgid "Remote lpd Printer Options"
msgstr "Opcions de la impressora lpd remota"
-#: ../../printerdrake.pm_.c:71
+#: ../../printerdrake.pm_.c:75
msgid ""
"To use a remote lpd print queue, you need to supply\n"
"the hostname of the printer server and the queue name\n"
@@ -6061,19 +6623,19 @@ msgstr ""
"el nom de l'ordinador central del servidor de la impressora i el nom de la\n"
"cua d'aquest servidor on s'hi han de situar les tasques."
-#: ../../printerdrake.pm_.c:74
+#: ../../printerdrake.pm_.c:78
msgid "Remote hostname"
msgstr "Nom de l'ordinador central remot"
-#: ../../printerdrake.pm_.c:75
+#: ../../printerdrake.pm_.c:79
msgid "Remote queue"
msgstr "Cua remota"
-#: ../../printerdrake.pm_.c:84
+#: ../../printerdrake.pm_.c:88
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Opcions de la impressora SMB (Windows 9x/NT)"
-#: ../../printerdrake.pm_.c:85
+#: ../../printerdrake.pm_.c:89
msgid ""
"To print to a SMB printer, you need to provide the\n"
"SMB host name (Note! It may be different from its\n"
@@ -6088,27 +6650,27 @@ msgstr ""
"de compartició de la impressora a quč voleu accedir i el nom d'usuari,\n"
"contrasenya i informació de grup si són necessaris."
-#: ../../printerdrake.pm_.c:90
+#: ../../printerdrake.pm_.c:94
msgid "SMB server host"
msgstr "Ordinador central del servidor SMB"
-#: ../../printerdrake.pm_.c:91
+#: ../../printerdrake.pm_.c:95
msgid "SMB server IP"
msgstr "IP del servidor SMB"
-#: ../../printerdrake.pm_.c:92
+#: ../../printerdrake.pm_.c:96
msgid "Share name"
msgstr "Nom de compartició"
-#: ../../printerdrake.pm_.c:95
+#: ../../printerdrake.pm_.c:99
msgid "Workgroup"
msgstr "Grup de treball"
-#: ../../printerdrake.pm_.c:120
+#: ../../printerdrake.pm_.c:124
msgid "NetWare Printer Options"
msgstr "Opcions de la impressora NetWare"
-#: ../../printerdrake.pm_.c:121
+#: ../../printerdrake.pm_.c:125
msgid ""
"To print to a NetWare printer, you need to provide the\n"
"NetWare print server name (Note! it may be different from its\n"
@@ -6122,19 +6684,19 @@ msgstr ""
"la impressora a quč voleu accedir i el nom d'usuari i contrasenya si són\n"
"necessaris."
-#: ../../printerdrake.pm_.c:125
+#: ../../printerdrake.pm_.c:129
msgid "Printer Server"
msgstr "Servidor de la impressora"
-#: ../../printerdrake.pm_.c:126
+#: ../../printerdrake.pm_.c:130
msgid "Print Queue Name"
msgstr "Nom de la cua d'impressió"
-#: ../../printerdrake.pm_.c:138
+#: ../../printerdrake.pm_.c:142
msgid "Socket Printer Options"
msgstr "Opcions de la impressora de sňcol"
-#: ../../printerdrake.pm_.c:139
+#: ../../printerdrake.pm_.c:143
msgid ""
"To print to a socket printer, you need to provide the\n"
"hostname of the printer and optionally the port number."
@@ -6142,31 +6704,31 @@ msgstr ""
"Per imprimir a una impressora de sňcol, heu d'indicar el nom de l'ordinador\n"
"central de la impressora i, opcionalment, el número de port."
-#: ../../printerdrake.pm_.c:141
+#: ../../printerdrake.pm_.c:145
msgid "Printer Hostname"
msgstr "Nom de l'ordinador central de la impressora"
-#: ../../printerdrake.pm_.c:142 ../../printerdrake.pm_.c:417
+#: ../../printerdrake.pm_.c:146 ../../printerdrake.pm_.c:422
msgid "Port"
msgstr "Port"
-#: ../../printerdrake.pm_.c:155
+#: ../../printerdrake.pm_.c:159
msgid "You can specify directly the URI to access the printer with CUPS."
msgstr "Podeu indicar directament l'URI per accedir a la impressora amb CUPS."
-#: ../../printerdrake.pm_.c:188 ../../printerdrake.pm_.c:240
+#: ../../printerdrake.pm_.c:192 ../../printerdrake.pm_.c:244
msgid "What type of printer do you have?"
msgstr "Quin tipus d'impressora teniu?"
-#: ../../printerdrake.pm_.c:200 ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:204 ../../printerdrake.pm_.c:305
msgid "Do you want to test printing?"
msgstr "Voleu comprovar la impressió?"
-#: ../../printerdrake.pm_.c:203 ../../printerdrake.pm_.c:318
+#: ../../printerdrake.pm_.c:207 ../../printerdrake.pm_.c:316
msgid "Printing test page(s)..."
msgstr "S'esta(n) imprimint la(es) pŕgina(es) de prova... "
-#: ../../printerdrake.pm_.c:210 ../../printerdrake.pm_.c:326
+#: ../../printerdrake.pm_.c:214 ../../printerdrake.pm_.c:324
#, c-format
msgid ""
"Test page(s) have been sent to the printer daemon.\n"
@@ -6183,7 +6745,7 @@ msgstr ""
"\n"
"Funciona correctament?"
-#: ../../printerdrake.pm_.c:214 ../../printerdrake.pm_.c:330
+#: ../../printerdrake.pm_.c:218 ../../printerdrake.pm_.c:328
msgid ""
"Test page(s) have been sent to the printer daemon.\n"
"This may take a little time before printer start.\n"
@@ -6193,83 +6755,79 @@ msgstr ""
"Degut a aixň, pot passar un cert temps abans no comenci la impressió.\n"
"Funciona correctament?"
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:234
msgid "Yes, print ASCII test page"
msgstr "Sí, imprimeix una pŕgina ASCII de prova"
-#: ../../printerdrake.pm_.c:231
+#: ../../printerdrake.pm_.c:235
msgid "Yes, print PostScript test page"
msgstr "Sí, imprimeix una pŕgina PostScript de prova"
-#: ../../printerdrake.pm_.c:232
+#: ../../printerdrake.pm_.c:236
msgid "Yes, print both test pages"
msgstr "Sí, imprimeix ambdues pŕgines de prova"
-#: ../../printerdrake.pm_.c:239
+#: ../../printerdrake.pm_.c:243
msgid "Configure Printer"
msgstr "Configura la impressora"
-#: ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:273
msgid "Printer options"
msgstr "Opcions de la impressora"
-#: ../../printerdrake.pm_.c:273
+#: ../../printerdrake.pm_.c:274
msgid "Paper Size"
msgstr "Mida del paper"
-#: ../../printerdrake.pm_.c:274
+#: ../../printerdrake.pm_.c:275
msgid "Eject page after job?"
msgstr "Voleu expulsar la pŕgina després de la tasca?"
-#: ../../printerdrake.pm_.c:279
+#: ../../printerdrake.pm_.c:280
msgid "Uniprint driver options"
msgstr "Opcions del programa de control Uniprint"
-#: ../../printerdrake.pm_.c:280
+#: ../../printerdrake.pm_.c:281
msgid "Color depth options"
msgstr "Opcions de profunditat del color"
-#: ../../printerdrake.pm_.c:282
+#: ../../printerdrake.pm_.c:283
msgid "Print text as PostScript?"
msgstr "Voleu imprimir el text com a PostScript?"
-#: ../../printerdrake.pm_.c:283
-msgid "Reverse page order"
-msgstr "Inverteix l'ordre de les pŕgines"
-
#: ../../printerdrake.pm_.c:285
msgid "Fix stair-stepping text?"
msgstr "Voleu ajustar el text 'stair-stepping'?"
-#: ../../printerdrake.pm_.c:288
+#: ../../printerdrake.pm_.c:287
msgid "Number of pages per output pages"
msgstr "Nombre de pŕgines per pŕgines de sortida"
-#: ../../printerdrake.pm_.c:289
+#: ../../printerdrake.pm_.c:288
msgid "Right/Left margins in points (1/72 of inch)"
msgstr "Marges dret/esquerra en punts (1/72 de polzada)"
-#: ../../printerdrake.pm_.c:290
+#: ../../printerdrake.pm_.c:289
msgid "Top/Bottom margins in points (1/72 of inch)"
msgstr "Marges superior/inferior en punts (1/72 de polzada)"
-#: ../../printerdrake.pm_.c:293
+#: ../../printerdrake.pm_.c:291
msgid "Extra GhostScript options"
msgstr "opcions addicionals del GhostScript"
-#: ../../printerdrake.pm_.c:296
+#: ../../printerdrake.pm_.c:293
msgid "Extra Text options"
msgstr "Opcions addicionals per al text"
-#: ../../printerdrake.pm_.c:346
-msgid "Printer"
-msgstr "Impressora"
+#: ../../printerdrake.pm_.c:295
+msgid "Reverse page order"
+msgstr "Inverteix l'ordre de les pŕgines"
-#: ../../printerdrake.pm_.c:347
+#: ../../printerdrake.pm_.c:345
msgid "Would you like to configure a printer?"
msgstr "Voleu configurar una impressora?"
-#: ../../printerdrake.pm_.c:350
+#: ../../printerdrake.pm_.c:351
msgid ""
"Here are the following print queues.\n"
"You can add some more or change the existing ones."
@@ -6277,28 +6835,28 @@ msgstr ""
"Aquestes són les cues d'impressió següents.\n"
"Podeu afegir-ne algunes més o canviar-ne les existents."
-#: ../../printerdrake.pm_.c:365
+#: ../../printerdrake.pm_.c:370
msgid "CUPS starting"
msgstr "S'estŕ iniciant el CUPS"
-#: ../../printerdrake.pm_.c:365
+#: ../../printerdrake.pm_.c:370
msgid "Reading CUPS drivers database..."
msgstr "S'estŕ llegint la base de dades de controladors CUPS..."
-#: ../../printerdrake.pm_.c:379 ../../printerdrake.pm_.c:444
-#: ../../printerdrake.pm_.c:457 ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:384 ../../printerdrake.pm_.c:450
+#: ../../printerdrake.pm_.c:471 ../../printerdrake.pm_.c:479
msgid "Select Printer Connection"
msgstr "Seleccioneu la connexió de la impressora"
-#: ../../printerdrake.pm_.c:380 ../../printerdrake.pm_.c:458
+#: ../../printerdrake.pm_.c:385 ../../printerdrake.pm_.c:472
msgid "How is the printer connected?"
msgstr "Com estŕ connectada la impressora?"
-#: ../../printerdrake.pm_.c:387
+#: ../../printerdrake.pm_.c:392
msgid "Select Remote Printer Connection"
msgstr "Seleccioneu la connexió de la impressora remota"
-#: ../../printerdrake.pm_.c:388
+#: ../../printerdrake.pm_.c:393
msgid ""
"With a remote CUPS server, you do not have to configure\n"
"any printer here; printers will be automatically detected.\n"
@@ -6308,8 +6866,7 @@ msgstr ""
"impressora; les impressores es detectaran automŕticament.\n"
"En cas de dubte, seleccioneu \"Servidor CUPS remot\"."
-#: ../../printerdrake.pm_.c:411
-#, fuzzy
+#: ../../printerdrake.pm_.c:416
msgid ""
"With a remote CUPS server, you do not have to configure\n"
"any printer here; printers will be automatically detected\n"
@@ -6318,23 +6875,31 @@ msgid ""
"and optionally the port number."
msgstr ""
"Amb un servidor CUPS remot, aquí no us cal configurar cap\n"
-"impressora; les impressores es detectaran automŕticament.\n"
-"En cas de dubte, seleccioneu \"Servidor CUPS remot\"."
+"impressora; les impressores es detectaran automŕticament,\n"
+"tret que tingueu un servidor en una altra xarxa; en aquest\n"
+"cas, heu d'indicar l'adreça IP, i opcionalment el número de\n"
+"port, al servidor CUPS."
-#: ../../printerdrake.pm_.c:416
-#, fuzzy
+#: ../../printerdrake.pm_.c:421
msgid "CUPS server IP"
-msgstr "IP del servidor SMB"
+msgstr "IP del servidor CUPS"
-#: ../../printerdrake.pm_.c:424
+#: ../../printerdrake.pm_.c:429
msgid "Port number should be numeric"
-msgstr ""
+msgstr "El número de port ha de ser numčric"
-#: ../../printerdrake.pm_.c:445 ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:451 ../../printerdrake.pm_.c:480
msgid "Remove queue"
msgstr "Elimina la cua"
-#: ../../printerdrake.pm_.c:446
+#: ../../printerdrake.pm_.c:454
+msgid ""
+"Name of printer should contains only letters, numbers and the underscore"
+msgstr ""
+"El nom de la impressora només pot constar de lletres, números i el carŕcter "
+"de subratllat"
+
+#: ../../printerdrake.pm_.c:461
msgid ""
"Every printer need a name (for example lp).\n"
"Other parameters such as the description of the printer or its location\n"
@@ -6346,19 +6911,19 @@ msgstr ""
"o la seva ubicació. Quin nom cal utilitzar per a aquesta impressora, i com\n"
"estŕ connectada?"
-#: ../../printerdrake.pm_.c:450
+#: ../../printerdrake.pm_.c:465
msgid "Name of printer"
msgstr "Nom de la impressora"
-#: ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:466
msgid "Description"
msgstr "Descripció"
-#: ../../printerdrake.pm_.c:452
+#: ../../printerdrake.pm_.c:467
msgid "Location"
msgstr "Ubicació"
-#: ../../printerdrake.pm_.c:465
+#: ../../printerdrake.pm_.c:482
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"
@@ -6370,45 +6935,49 @@ msgstr ""
"directori cal utilitzar per a aquesta cua, i com estŕ connectada la "
"impressora?"
-#: ../../printerdrake.pm_.c:468
+#: ../../printerdrake.pm_.c:489
msgid "Name of queue"
msgstr "Nom de la cua"
-#: ../../printerdrake.pm_.c:469
+#: ../../printerdrake.pm_.c:490
msgid "Spool directory"
msgstr "Directori d'spool"
-#: ../../printerdrake.pm_.c:470
+#: ../../printerdrake.pm_.c:491
msgid "Printer Connection"
msgstr "Connexió de la impressora"
-#: ../../raid.pm_.c:32
+#: ../../raid.pm_.c:33
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "No es pot afegir una partició a un RAID _formatat_ md%d"
-#: ../../raid.pm_.c:102
+#: ../../raid.pm_.c:103
msgid "Can't write file $file"
msgstr "No es pot escriure al fitxer $file"
-#: ../../raid.pm_.c:127
+#: ../../raid.pm_.c:128
msgid "mkraid failed"
msgstr "l'mkraid ha fallit"
-#: ../../raid.pm_.c:127
+#: ../../raid.pm_.c:128
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "l'mkraid ha fallit (potser manquen eines del RAID?)"
-#: ../../raid.pm_.c:143
+#: ../../raid.pm_.c:144
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "No hi ha prou particions per al nivell RAID %d\n"
-#: ../../services.pm_.c:15
+#: ../../services.pm_.c:16
+msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
+msgstr ""
+
+#: ../../services.pm_.c:17
msgid "Anacron a periodic command scheduler."
msgstr "Anacron, un programador d'ordres periňdiques."
-#: ../../services.pm_.c:16
+#: ../../services.pm_.c:18
msgid ""
"apmd is used for monitoring batery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
@@ -6417,7 +6986,7 @@ msgstr ""
"mitjançant el registre del sistema.\n"
"També es pot utilitzar per apagar l'ordinador quan queda poca bateria."
-#: ../../services.pm_.c:18
+#: ../../services.pm_.c:20
msgid ""
"Runs commands scheduled by the at command at the time specified when\n"
"at was run, and runs batch commands when the load average is low enough."
@@ -6426,7 +6995,7 @@ msgstr ""
"especificar en executar 'at', i executa les ordres 'batch' quan la\n"
"mitjana de cŕrrega és prou baixa."
-#: ../../services.pm_.c:20
+#: ../../services.pm_.c:22
msgid ""
"cron is a standard UNIX program that runs user-specified programs\n"
"at periodic scheduled times. vixie cron adds a number of features to the "
@@ -6438,7 +7007,7 @@ msgstr ""
"característiques al cron bŕsic, incloent seguretat millorada i opcions\n"
"de configuració més potents."
-#: ../../services.pm_.c:23
+#: ../../services.pm_.c:25
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
@@ -6449,7 +7018,13 @@ msgstr ""
"el Midnight Commander. També permet operacions de tallar i enganxar amb el "
"ratolí, i inclou suport de menús desplegables a la consola."
-#: ../../services.pm_.c:26
+#: ../../services.pm_.c:28
+msgid ""
+"HardDrake runs a hardware probe, and optionally configures\n"
+"new/changed hardware."
+msgstr ""
+
+#: ../../services.pm_.c:30
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files\n"
"and CGI."
@@ -6457,7 +7032,7 @@ msgstr ""
"L'Apache és un servidor de World Wide Web. S'utilitza per servir fitxers\n"
"HTML i CGI."
-#: ../../services.pm_.c:28
+#: ../../services.pm_.c:32
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
@@ -6472,7 +7047,13 @@ msgstr ""
"d'iniciar molts serveis, incloent el telnet, l'ftp, l'rsh i l'rlogin. Si\n"
"s'inhabilita l'inetd s'inhabiliten tots els serveis de quč és responsable."
-#: ../../services.pm_.c:32
+#: ../../services.pm_.c:36
+msgid ""
+"Launch packet filtering for Linux kernel 2.2 series, to set\n"
+"up a firewall to protect your machine from network attacks."
+msgstr ""
+
+#: ../../services.pm_.c:38
msgid ""
"This package loads the selected keyboard map as set in\n"
"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
@@ -6483,7 +7064,23 @@ msgstr ""
"kbdconfig.\n"
"Per a la majoria d'ordinadors, s'ha de deixar habilitat."
-#: ../../services.pm_.c:35
+#: ../../services.pm_.c:41
+msgid ""
+"Automatic regeneration of kernel header in /boot for\n"
+"/usr/include/linux/{autoconf,version}.h"
+msgstr ""
+
+#: ../../services.pm_.c:43
+msgid "Automatic detection and configuration of hardware at boot."
+msgstr ""
+
+#: ../../services.pm_.c:44
+msgid ""
+"Linuxconf will sometimes arrange to perform various tasks\n"
+"at boot-time to maintain the system configuration."
+msgstr ""
+
+#: ../../services.pm_.c:46
msgid ""
"lpd is the print daemon required for lpr to work properly. It is\n"
"basically a server that arbitrates print jobs to printer(s)."
@@ -6492,7 +7089,13 @@ msgstr ""
"correctament. Bŕsicament, es tracta d'un servidor que assigna les\n"
"tasques d'impressió a la(es) impressora(es)."
-#: ../../services.pm_.c:37
+#: ../../services.pm_.c:48
+msgid ""
+"Linux Virtual Server, used to build a high-performance and highly\n"
+"available server."
+msgstr ""
+
+#: ../../services.pm_.c:50
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
"host names to IP addresses."
@@ -6500,7 +7103,7 @@ msgstr ""
"named (BIND) és un servidor de noms de domini (DNS) que s'utiilitza\n"
"per convertir noms d'ordinadors centrals en adreces IP."
-#: ../../services.pm_.c:39
+#: ../../services.pm_.c:52
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
@@ -6508,7 +7111,7 @@ msgstr ""
"Munta i desmunta tots els punts de muntatge dels sistemes de fitxers\n"
"de xarxa (NFS), SMB (gestor de xarxes d'ŕrea local/Windows) i NCP (NetWare)."
-#: ../../services.pm_.c:41
+#: ../../services.pm_.c:54
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
@@ -6516,7 +7119,7 @@ msgstr ""
"Activa/Desactiva totes les interfícies de xarxa configurades per\n"
"iniciar-se durant l'arrencada."
-#: ../../services.pm_.c:43
+#: ../../services.pm_.c:56
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
"This service provides NFS server functionality, which is configured via the\n"
@@ -6526,7 +7129,7 @@ msgstr ""
"Aquest servei proporciona la funcionalitat del servidor NFS, que es\n"
"configura mitjançant el fitxer /etc/exports."
-#: ../../services.pm_.c:46
+#: ../../services.pm_.c:59
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP\n"
"networks. This service provides NFS file locking functionality."
@@ -6534,7 +7137,17 @@ msgstr ""
"L'NFS és un popular protocol de compartició de fitxers en xarxes TCP/IP\n"
"Aquest servei proporciona la funcionalitat de blocatge del fitxer NFS."
-#: ../../services.pm_.c:48
+#: ../../services.pm_.c:61
+msgid ""
+"Automatically switch on numlock key locker under console\n"
+"and XFree at boot."
+msgstr ""
+
+#: ../../services.pm_.c:63
+msgid "Support the OKI 4w and compatible winprinters."
+msgstr ""
+
+#: ../../services.pm_.c:64
msgid ""
"PCMCIA support is usually to support things like ethernet and\n"
"modems in laptops. It won't get started unless configured so it is safe to "
@@ -6545,7 +7158,7 @@ msgstr ""
"i els mňdems en portŕtils. No s'iniciarŕ tret que es configuri, de manera\n"
"que no hi ha problema per instalˇlar-lo en ordinadors que no el necessiten."
-#: ../../services.pm_.c:51
+#: ../../services.pm_.c:67
msgid ""
"The portmapper manages RPC connections, which are used by\n"
"protocols such as NFS and NIS. The portmap server must be running on "
@@ -6557,7 +7170,7 @@ msgstr ""
"executant en ordinadors que actuen com a servidors per a protocols que\n"
"utilitzen el mecanisme RPC."
-#: ../../services.pm_.c:54
+#: ../../services.pm_.c:70
msgid ""
"Postfix is a Mail Transport Agent, which is the program that\n"
"moves mail from one machine to another."
@@ -6565,7 +7178,7 @@ msgstr ""
"El Postfix és un agent de transport de correu, que és el programa que\n"
"passa el correu d'un ordinador a un altre."
-#: ../../services.pm_.c:56
+#: ../../services.pm_.c:72
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
@@ -6573,7 +7186,13 @@ msgstr ""
"Desa i recupera el generador d'entropia del sistema per a\n"
"la generació de nombres aleatoris d'una més alta qualitat."
-#: ../../services.pm_.c:58
+#: ../../services.pm_.c:74
+msgid ""
+"Assign raw devices to block devices (such as hard drive\n"
+"partitions), for the use of applications such as Oracle"
+msgstr ""
+
+#: ../../services.pm_.c:76
msgid ""
"The routed daemon allows for automatic IP router table updated via\n"
"the RIP protocol. While RIP is widely used on small networks, more complex\n"
@@ -6584,7 +7203,7 @@ msgstr ""
"ŕmpliament en xarxes petites, les xarxes complexes necessiten protocols\n"
"d'encaminament més complexs."
-#: ../../services.pm_.c:61
+#: ../../services.pm_.c:79
msgid ""
"The rstat protocol allows users on a network to retrieve\n"
"performance metrics for any machine on that network."
@@ -6592,7 +7211,7 @@ msgstr ""
"El protocol rstat permet que els usuaris d'una xarxa recuperin\n"
"mčtrics de funcionament de qualsevol ordinador de la mateixa."
-#: ../../services.pm_.c:63
+#: ../../services.pm_.c:81
msgid ""
"The rusers protocol allows users on a network to identify who is\n"
"logged in on other responding machines."
@@ -6600,7 +7219,7 @@ msgstr ""
"El protocol rusers permet que els usuaris d'una xarxa identifiquin\n"
"qui estŕ connectat en altres ordinadors de la mateixa."
-#: ../../services.pm_.c:65
+#: ../../services.pm_.c:83
msgid ""
"The rwho protocol lets remote users get a list of all of the users\n"
"logged into a machine running the rwho daemon (similiar to finger)."
@@ -6609,7 +7228,12 @@ msgstr ""
"de tots els usuaris que están connectats a un ordinador que estŕ\n"
"executant el procés rwho (similar al finger)."
-#: ../../services.pm_.c:67
+#: ../../services.pm_.c:85
+#, fuzzy
+msgid "Launch the sound system on your machine"
+msgstr "Executa el sistema X-Window en iniciar"
+
+#: ../../services.pm_.c:86
msgid ""
"Syslog is the facility by which many daemons use to log messages\n"
"to various system log files. It is a good idea to always run syslog."
@@ -6618,20 +7242,45 @@ msgstr ""
"missatges en diversos fitxers de registre del sistema. És aconsellable\n"
"executar-lo sempre."
-#: ../../services.pm_.c:69
-msgid "This startup script try to load your modules for your usb mouse."
-msgstr "Aquest script d'inici intenta carregar els mňduls del ratolí USB."
+#: ../../services.pm_.c:88
+msgid "Load the drivers for your usb devices."
+msgstr ""
-#: ../../services.pm_.c:70
-msgid "Starts and stops the X Font Server at boot time and shutdown."
+#: ../../services.pm_.c:89
+#, fuzzy
+msgid "Starts the X Font Server (this is mandatory for XFree to run)."
msgstr "Inicia i atura l'X Font Server en arrencar i apagar l'ordinador."
-#: ../../services.pm_.c:99
+#: ../../services.pm_.c:118
msgid "Choose which services should be automatically started at boot time"
msgstr ""
"Escolliu els serveis que s'han d'iniciar automŕticament durant l'arrencada"
-#: ../../standalone/diskdrake_.c:61
+#: ../../services.pm_.c:137
+msgid "running"
+msgstr "s'estŕ executant"
+
+#: ../../services.pm_.c:137
+msgid "stopped"
+msgstr "aturat"
+
+#: ../../services.pm_.c:151
+msgid "Services and deamons"
+msgstr "Serveis i dimonis"
+
+#: ../../services.pm_.c:156
+msgid ""
+"No additionnal information\n"
+"about this service, sorry."
+msgstr ""
+"Malauradament no hi ha més informació\n"
+"sobre aquest servei."
+
+#: ../../services.pm_.c:163
+msgid "On boot"
+msgstr "En arrencar"
+
+#: ../../standalone/diskdrake_.c:67
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
"I'll try to go on blanking bad partitions"
@@ -6639,31 +7288,15 @@ msgstr ""
"No puc llegir la vostra taula de particions, estŕ massa malmesa per a mi :(\n"
"Intentaré seguir buidant les particions incorrectes"
-#: ../../standalone/drakboot_.c:25
-msgid "Configure LILO/GRUB"
-msgstr "Configura el LILO/GRUB"
-
-#: ../../standalone/drakboot_.c:26
-msgid "Create a boot floppy"
-msgstr "Crea un disquet d'arrencada"
-
-#: ../../standalone/drakboot_.c:28
-msgid "Format floppy"
-msgstr "Formata el disquet"
-
-#: ../../standalone/drakboot_.c:40
-msgid "Choice"
-msgstr "Elecció"
-
-#: ../../standalone/drakboot_.c:59
-msgid "Installation of LILO failed. The following error occured:"
-msgstr "Ha fallat la instalˇlació del LILO. S'ha produďt l'error següent:"
+#: ../../standalone/drakgw_.c:37 ../../standalone/drakgw_.c:180
+msgid "Internet Connection Sharing"
+msgstr "Connexió a Internet compartida"
-#: ../../standalone/drakgw_.c:103
+#: ../../standalone/drakgw_.c:118
msgid "Internet Connection Sharing currently enabled"
msgstr "La connexió a Internet compartida estŕ habilitada"
-#: ../../standalone/drakgw_.c:104
+#: ../../standalone/drakgw_.c:119
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently enabled.\n"
@@ -6675,24 +7308,31 @@ msgstr ""
"\n"
"Quč voleu fer?"
-#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:108
+#: ../../standalone/drakgw_.c:123
msgid "disable"
msgstr "inhabilita"
-#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:118
-#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:137
+#: ../../standalone/drakgw_.c:123 ../../standalone/drakgw_.c:148
msgid "dismiss"
msgstr "deixa-ho córrer"
-#: ../../standalone/drakgw_.c:107 ../../standalone/drakgw_.c:126
+#: ../../standalone/drakgw_.c:123 ../../standalone/drakgw_.c:148
msgid "reconfigure"
msgstr "torna a configurar"
-#: ../../standalone/drakgw_.c:122
+#: ../../standalone/drakgw_.c:126
+msgid "Disabling servers..."
+msgstr "S'estan inhabilitant els servidors..."
+
+#: ../../standalone/drakgw_.c:134
+msgid "Internet connection sharing is now disabled."
+msgstr "Ara, la compartició de la connexió a Internet estŕ inhabilitada."
+
+#: ../../standalone/drakgw_.c:143
msgid "Internet Connection Sharing currently disabled"
msgstr "La connexió a Internet compartida estŕ inhabilitada"
-#: ../../standalone/drakgw_.c:123
+#: ../../standalone/drakgw_.c:144
msgid ""
"The setup of Internet connection sharing has already been done.\n"
"It's currently disabled.\n"
@@ -6704,44 +7344,58 @@ msgstr ""
"\n"
"Quč voleu fer?"
-#: ../../standalone/drakgw_.c:126 ../../standalone/drakgw_.c:127
+#: ../../standalone/drakgw_.c:148
msgid "enable"
msgstr "habilita"
-#: ../../standalone/drakgw_.c:141
+#: ../../standalone/drakgw_.c:155
+msgid "Enabling servers..."
+msgstr "S'estan habilitant els servidors..."
+
+#: ../../standalone/drakgw_.c:160
+msgid "Internet connection sharing is now enabled."
+msgstr "Ara, la connexió compartida a Internet estŕ habilitada."
+
+#: ../../standalone/drakgw_.c:168
msgid "Config file content could not be interpreted."
msgstr "No s'ha pogut interpretar el contingut del fitxer de configuració."
-#: ../../standalone/drakgw_.c:151
-msgid "Internet Connection Sharing"
-msgstr "Connexió a Internet compartida"
+#: ../../standalone/drakgw_.c:168
+msgid "Unrecognized config file"
+msgstr "Fitxer de configuració no reconegut"
-#: ../../standalone/drakgw_.c:152
+#: ../../standalone/drakgw_.c:181
msgid ""
-"Your computer can be configured to share its Internet connection.\n"
+"You are about to configure your computer to share its Internet connection.\n"
+"With that feature, other computers on your local network will be able to use "
+"this computer's Internet connection.\n"
"\n"
"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN).\n"
-"\n"
-"Would you like to setup the Internet Connection Sharing?"
+"(LAN)."
msgstr ""
-"Podeu configurar l'ordinador per tal que comparteixi la connexió a "
+"Ara configurareu l'ordinador per tal que comparteixi la connexió a "
"Internet.\n"
+"Amb aquesta característica, altres ordinadors de la vostra xarxa local\n"
+"podran utilitzar la connexió a Internet d'aquest ordinador.\n"
"\n"
"Nota: per configurar una xarxa d'ŕrea local (LAN), us cal un adaptador de "
-"xarxa dedicat.\n"
-"\n"
-"Voleu configurar la connexió a Internet compartida?"
+"xarxa dedicat."
+
+#: ../../standalone/drakgw_.c:207
+#, c-format
+msgid "Interface %s (using module %s)"
+msgstr "Interfície %s (utilitzant el mňdul %s)"
-#: ../../standalone/drakgw_.c:177
-msgid "using module"
-msgstr "s'estŕ utilitzant el mňdul"
+#: ../../standalone/drakgw_.c:208
+#, c-format
+msgid "Interface %s"
+msgstr "Interfície %s"
-#: ../../standalone/drakgw_.c:210
+#: ../../standalone/drakgw_.c:216
msgid "No network adapter on your system!"
msgstr "No teniu cap adaptador de xarxa al sistema!"
-#: ../../standalone/drakgw_.c:211
+#: ../../standalone/drakgw_.c:217
msgid ""
"No ethernet network adapter has been detected on your system. Please run the "
"hardware configuration tool."
@@ -6749,21 +7403,22 @@ msgstr ""
"No s'ha detectat cap adaptador de xarxa ethernet al sistema. Si us plau, "
"executeu l'eina de configuració de maquinari."
-#: ../../standalone/drakgw_.c:218
+#: ../../standalone/drakgw_.c:224
+#, c-format
msgid ""
"There is only one configured network adapter on your system:\n"
"\n"
-"$interface\n"
+"%s\n"
"\n"
-"Would you like to setup your Local Area Network with that adapter?"
+"I am about to setup your Local Area Network with that adapter."
msgstr ""
"Només teniu un adaptador de xarxa configurat al sistema:\n"
"\n"
-"$interface\n"
+"%s\n"
"\n"
-"Voleu configurar la vostra xarxa d'ŕrea local amb aquest adaptador?"
+"Ara configuraré la vostra xarxa d'ŕrea local amb aquest adaptador."
-#: ../../standalone/drakgw_.c:223
+#: ../../standalone/drakgw_.c:233
msgid ""
"Please choose what network adapter will be connected to your Local Area "
"Network."
@@ -6771,52 +7426,49 @@ msgstr ""
"Si us plau, escolliu l'adaptador de xarxa que es connectarŕ\n"
"a la vostra xarxa d'ŕrea local."
-#: ../../standalone/drakgw_.c:233
+#: ../../standalone/drakgw_.c:242
msgid ""
-"Warning, the network adapter is already configured.\n"
-"Would you like to reconfigure?"
+"Warning, the network adapter is already configured. I will reconfigure it."
msgstr ""
-"Compte, l'adaptador de xarxa ja estŕ configurat.\n"
-"El voleu tornar a configurar?"
+"Compte, l'adaptador de xarxa ja estŕ configurat. El tornaré a configurar."
-#: ../../standalone/drakgw_.c:258
+#: ../../standalone/drakgw_.c:253
msgid "Potential LAN address conflict found in current config of $_!\n"
msgstr ""
"S'ha trobat un conflicte potencial d'adreça LAN en la configuració actual de "
"$_!\n"
-#: ../../standalone/drakgw_.c:268
+#: ../../standalone/drakgw_.c:261 ../../standalone/drakgw_.c:267
msgid "Firewalling configuration detected!"
msgstr "S'ha detectat la configuració del sistema de tallafocs!"
-#: ../../standalone/drakgw_.c:269
+#: ../../standalone/drakgw_.c:262 ../../standalone/drakgw_.c:268
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
-"need some manual fix after installation. Proceed?"
+"need some manual fix after installation."
msgstr ""
"Atenció! S'ha detectat una configuració existent del sistema de tallafocs. "
-"Potser us caldrŕ fer algun ajustament manual després de la instalˇlació. "
-"Voleu continuar?"
+"Potser us caldrŕ fer algun ajustament manual després de la instalˇlació."
+
+#: ../../standalone/drakgw_.c:276
+msgid "Configuring..."
+msgstr "S'estŕ configurant..."
-#: ../../standalone/drakgw_.c:282
+#: ../../standalone/drakgw_.c:277
msgid "Configuring scripts, installing software, starting servers..."
msgstr ""
"S'estan configurant les seqüčncies, instalˇlant el programari, iniciant els "
"servidors..."
-#: ../../standalone/drakgw_.c:282
-msgid "Configuring..."
-msgstr "S'estŕ configurant..."
-
-#: ../../standalone/drakgw_.c:313
-msgid "Problems installing package $bin2rpm{$_}"
-msgstr "Hi ha hagut problemes en instalˇlar el paquet $bin2rpm{$_}"
+#: ../../standalone/drakgw_.c:307
+msgid "Problems installing package $_"
+msgstr "Hi ha hagut problemes en instalˇlar el paquet $_"
-#: ../../standalone/drakgw_.c:504
+#: ../../standalone/drakgw_.c:590
msgid "Congratulations!"
msgstr "Felicitats!"
-#: ../../standalone/drakgw_.c:505
+#: ../../standalone/drakgw_.c:591
msgid ""
"Everything has been configured.\n"
"You may now share Internet connection with other computers on your Local "
@@ -6827,7 +7479,256 @@ msgstr ""
"vostra xarxa d'ŕrea local utilitzant la configuració automŕtica de xarxa "
"(DHCP)."
-#: ../../standalone/draksec_.c:28
+#: ../../standalone/drakgw_.c:608
+msgid "The setup has already been done, but it's currently disabled."
+msgstr "La configuració ja s'ha realitzat, perň ara estŕ inhabilitada."
+
+#: ../../standalone/drakgw_.c:609
+msgid "The setup has already been done, and it's currently enabled."
+msgstr "La configuració ja s'ha realitzat i ara estŕ habilitada."
+
+#: ../../standalone/drakgw_.c:610
+msgid "No Internet Connection Sharing has ever been configured."
+msgstr "No s'ha configurat mai cap connexió compartida a Internet."
+
+#: ../../standalone/drakgw_.c:615
+msgid "Internet connection sharing configuration"
+msgstr "Configuració de la compartició de la connexió a Internet"
+
+#: ../../standalone/drakgw_.c:622
+#, c-format
+msgid ""
+"Welcome to the Internet Connection Sharing utility!\n"
+"\n"
+"%s\n"
+"\n"
+"Click on Configure to launch the setup wizard."
+msgstr ""
+"Benvingut a la utilitat de compartició de la connexió a Internet!\n"
+"\n"
+"%s\n"
+"\n"
+"Feu clic a Configura per executar l'auxiliar de configuració."
+
+#: ../../standalone/draknet_.c:59
+#, c-format
+msgid "Network configuration (%d adapters)"
+msgstr "Configuració de xarxa (%d adaptadors)"
+
+#: ../../standalone/draknet_.c:66 ../../standalone/draknet_.c:537
+msgid "Profile: "
+msgstr "Perfil: "
+
+#: ../../standalone/draknet_.c:74
+msgid "Del profile..."
+msgstr "Suprimeix el perfil..."
+
+#: ../../standalone/draknet_.c:80
+msgid "Profile to delete:"
+msgstr "Perfil a suprimir:"
+
+#: ../../standalone/draknet_.c:108
+msgid "New profile..."
+msgstr "Perfil nou..."
+
+#: ../../standalone/draknet_.c:114
+msgid "Name of the profile to create:"
+msgstr "Nom del perfil a crear:"
+
+#: ../../standalone/draknet_.c:140
+msgid "Hostname: "
+msgstr "Nom de l'ordinador central: "
+
+#: ../../standalone/draknet_.c:147
+msgid "Internet access"
+msgstr "Accés a Internet"
+
+#: ../../standalone/draknet_.c:160
+msgid "Type:"
+msgstr "Tipus:"
+
+#: ../../standalone/draknet_.c:163 ../../standalone/draknet_.c:354
+msgid "Gateway:"
+msgstr "Passarelˇla:"
+
+#: ../../standalone/draknet_.c:163 ../../standalone/draknet_.c:354
+msgid "Interface:"
+msgstr "Intefície:"
+
+#: ../../standalone/draknet_.c:168
+msgid "Status:"
+msgstr "Estat:"
+
+#: ../../standalone/draknet_.c:170 ../../standalone/draknet_.c:357
+#: ../../standalone/net_monitor_.c:122 ../../standalone/net_monitor_.c:224
+msgid "Connected"
+msgstr "Connectat"
+
+#: ../../standalone/draknet_.c:170 ../../standalone/draknet_.c:357
+#: ../../standalone/net_monitor_.c:83 ../../standalone/net_monitor_.c:122
+#: ../../standalone/net_monitor_.c:224
+msgid "Not connected"
+msgstr "Sense connexió"
+
+#: ../../standalone/draknet_.c:173 ../../standalone/draknet_.c:358
+msgid "Connect..."
+msgstr "Connecta..."
+
+#: ../../standalone/draknet_.c:173 ../../standalone/draknet_.c:358
+msgid "Disconnect..."
+msgstr "Desconnecta..."
+
+#: ../../standalone/draknet_.c:191
+#, fuzzy
+msgid "Starting your connection..."
+msgstr "S'estŕ comprovant la vostra conexió..."
+
+#: ../../standalone/draknet_.c:199
+msgid "Closing your connection..."
+msgstr "S'estŕ tancant la connexió..."
+
+#: ../../standalone/draknet_.c:204
+msgid ""
+"The connection is not closed.\n"
+"Try to do it manually by running\n"
+"/etc/sysconfig/network-scripts/net_cnx_down\n"
+"in root."
+msgstr ""
+"La connexió no estŕ tancada.\n"
+"Intenteu fer-ho manualment executant\n"
+"/etc/sysconfig/network-scripts/net_cnx_down\n"
+"a root."
+
+#: ../../standalone/draknet_.c:207
+msgid "The system is now disconnected."
+msgstr "Ara, el sistema estŕ desconnectat."
+
+#: ../../standalone/draknet_.c:219
+msgid "Configure Internet Access..."
+msgstr "Configura l'accés a Internet..."
+
+#: ../../standalone/draknet_.c:226 ../../standalone/draknet_.c:409
+msgid "LAN configuration"
+msgstr "Configuració de la LAN"
+
+#: ../../standalone/draknet_.c:231
+msgid "Adapter"
+msgstr "Adaptador"
+
+#: ../../standalone/draknet_.c:231
+msgid "Driver"
+msgstr "Programa de control"
+
+#: ../../standalone/draknet_.c:231
+msgid "Interface"
+msgstr "Interfície"
+
+#: ../../standalone/draknet_.c:231
+msgid "Protocol"
+msgstr "Protocol"
+
+#: ../../standalone/draknet_.c:250
+msgid "Configure Local Area Network..."
+msgstr "Configura la xarxa d'ŕrea local..."
+
+#: ../../standalone/draknet_.c:283
+msgid "Normal Mode"
+msgstr "Mode normal"
+
+#: ../../standalone/draknet_.c:288
+msgid "Apply"
+msgstr "Aplica"
+
+#: ../../standalone/draknet_.c:307
+msgid "Please Wait... Applying the configuration"
+msgstr "Si us plau, espereu... s'estŕ aplicant la configuració"
+
+#: ../../standalone/draknet_.c:389
+msgid ""
+"You don't have any configured interface.\n"
+"Configure them first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/draknet_.c:413
+msgid "LAN Configuration"
+msgstr "Configuració de la LAN"
+
+#: ../../standalone/draknet_.c:421
+#, c-format
+msgid "Adapter %s: %s"
+msgstr "Adaptador %s: %s"
+
+#: ../../standalone/draknet_.c:427
+msgid "Boot Protocol"
+msgstr "Protocol d'arrencada"
+
+#: ../../standalone/draknet_.c:428
+msgid "Started on boot"
+msgstr "Iniciat en l'arrencada"
+
+#: ../../standalone/draknet_.c:429
+msgid "DHCP client"
+msgstr "Client DHCP"
+
+#: ../../standalone/draknet_.c:464 ../../standalone/draknet_.c:468
+msgid "Disable"
+msgstr "Inhabilita"
+
+#: ../../standalone/draknet_.c:464 ../../standalone/draknet_.c:468
+msgid "Enable"
+msgstr "Habilita"
+
+#: ../../standalone/draknet_.c:502
+msgid ""
+"You don't have any internet connection.\n"
+"Create one first by clicking on 'Configure'"
+msgstr ""
+
+#: ../../standalone/draknet_.c:526
+msgid "Internet connection configuration"
+msgstr "Configuració de la connexió a Internet"
+
+#: ../../standalone/draknet_.c:530
+msgid "Internet Connection Configuration"
+msgstr "Configuració de la connexió a Internet"
+
+#: ../../standalone/draknet_.c:539
+msgid "Connection type: "
+msgstr "Tipus de connexió: "
+
+#: ../../standalone/draknet_.c:545
+msgid "Parameters"
+msgstr "Parŕmetres"
+
+#: ../../standalone/draknet_.c:558
+msgid "Provider dns 1 (optional)"
+msgstr "DNS 1 del proveďdor (opcional)"
+
+#: ../../standalone/draknet_.c:559
+msgid "Provider dns 2 (optional)"
+msgstr "DNS 2 del proveďdor (opcional)"
+
+#: ../../standalone/draknet_.c:572
+msgid "Ethernet Card"
+msgstr "Targeta Ethernet"
+
+#: ../../standalone/draknet_.c:573
+msgid "DHCP Client"
+msgstr "Client DHCP"
+
+#: ../../standalone/draksec_.c:21
+msgid "Welcome To Crackers"
+msgstr "Benvinguts, crackers"
+
+#: ../../standalone/draksec_.c:22
+msgid "Poor"
+msgstr "Pobre"
+
+#: ../../standalone/draksec_.c:26
+msgid "Paranoid"
+msgstr "Paranoic"
+
+#: ../../standalone/draksec_.c:29
msgid ""
"This level is to be used with care. It makes your system more easy to use,\n"
"but very sensitive: it must not be used for a machine connected to others\n"
@@ -6838,7 +7739,7 @@ msgstr ""
"d'utilitzar, perň també molt sensible: no s'ha d'utilitzar en un ordinador\n"
"connectat a d'altres o a Internet. No s'hi accedeix mitjançant contrasenya."
-#: ../../standalone/draksec_.c:31
+#: ../../standalone/draksec_.c:32
msgid ""
"Password are now enabled, but use as a networked computer is still not "
"recommended."
@@ -6846,7 +7747,7 @@ msgstr ""
"Ara, la contrasenya estŕ habilitada, perň l'ús com a ordinador de xarxa "
"segueix sense ser recomanable."
-#: ../../standalone/draksec_.c:32
+#: ../../standalone/draksec_.c:33
msgid ""
"Few improvements for this security level, the main one is that there are\n"
"more security warnings and checks."
@@ -6854,7 +7755,7 @@ msgstr ""
"Poques millores per a aquest nivell de seguretat; la principal és que hi ha\n"
"més avisos i comprovacions de seguretat."
-#: ../../standalone/draksec_.c:34
+#: ../../standalone/draksec_.c:35
msgid ""
"This is the standard security recommended for a computer that will be used\n"
"to connect to the Internet as a client. There are now security checks. "
@@ -6863,7 +7764,7 @@ msgstr ""
"s'utilitzarŕ per connectar-se a Internet com a client. Ara hi ha "
"comprovacions de seguretat."
-#: ../../standalone/draksec_.c:36
+#: ../../standalone/draksec_.c:37
msgid ""
"With this security level, the use of this system as a server becomes "
"possible.\n"
@@ -6875,7 +7776,7 @@ msgstr ""
"La seguretat és ara prou alta com per utilitzar el sistema com a servidor\n"
"que accepti connexions de molts clients. "
-#: ../../standalone/draksec_.c:39
+#: ../../standalone/draksec_.c:40
msgid ""
"We take level 4 features, but now the system is entirely closed.\n"
"Security features are at their maximum."
@@ -6884,19 +7785,23 @@ msgstr ""
"totalment tancat.\n"
"Les característiques de seguretat estan al mŕxim."
-#: ../../standalone/draksec_.c:49
+#: ../../standalone/draksec_.c:52
msgid "Setting security level"
msgstr "S'estŕ establint el nivell de seguretat"
-#: ../../standalone/drakxconf_.c:21
+#: ../../standalone/drakxconf_.c:44
+msgid "Control Center"
+msgstr "Control Center"
+
+#: ../../standalone/drakxconf_.c:45
msgid "Choose the tool you want to use"
msgstr "Escolliu l'eina que voleu utilitzar "
-#: ../../standalone/keyboarddrake_.c:14
-msgid "usage: keyboarddrake [--expert]\n"
-msgstr "sintaxi: keyboarddrake [--expert]\n"
+#: ../../standalone/keyboarddrake_.c:16
+msgid "usage: keyboarddrake [--expert] [keyboard]\n"
+msgstr "sintaxi: keyboarddrake [--expert] [teclat]\n"
-#: ../../standalone/keyboarddrake_.c:27
+#: ../../standalone/keyboarddrake_.c:36
msgid "Do you want the BackSpace to return Delete in console?"
msgstr "Voleu que la tecla Enrere efectuď un Suprimeix en la consola?"
@@ -6917,287 +7822,325 @@ msgstr ""
msgid "Unable to start live upgrade !!!\n"
msgstr "No es pot iniciar l'actualització en directe !!!\n"
-#: ../../standalone/mousedrake_.c:32
+#: ../../standalone/mousedrake_.c:39
msgid "no serial_usb found\n"
msgstr "no s'ha trobat cap serial_usb\n"
-#: ../../standalone/mousedrake_.c:37
+#: ../../standalone/mousedrake_.c:43
msgid "Emulate third button?"
msgstr "Voleu emular el tercer botó?"
-#: ../../standalone/mousedrake_.c:41
-msgid "Which serial port is your mouse connected to?"
-msgstr "A quin port sčrie estŕ connectat el vostre ratolí?"
-
-#: ../../standalone/rpmdrake_.c:25
-msgid "reading configuration"
-msgstr "s'estŕ llegint la configuració"
-
-#: ../../standalone/rpmdrake_.c:45 ../../standalone/rpmdrake_.c:50
-#: ../../standalone/rpmdrake_.c:253
-msgid "File"
-msgstr "Fitxer"
-
-#: ../../standalone/rpmdrake_.c:48 ../../standalone/rpmdrake_.c:229
-#: ../../standalone/rpmdrake_.c:253 ../../standalone/rpmdrake_.c:269
-msgid "Search"
-msgstr "Cerca"
-
-#: ../../standalone/rpmdrake_.c:49 ../../standalone/rpmdrake_.c:56
-msgid "Package"
-msgstr "Paquet"
+#: ../../standalone/net_monitor_.c:40 ../../standalone/net_monitor_.c:52
+msgid "Network Monitoring"
+msgstr "Monitorització de la xarxa"
-#: ../../standalone/rpmdrake_.c:51
-msgid "Text"
-msgstr "Text"
+#: ../../standalone/net_monitor_.c:56
+msgid "Statistics"
+msgstr "Estadístiques"
-#: ../../standalone/rpmdrake_.c:53
-msgid "Tree"
-msgstr "Arbre"
+#: ../../standalone/net_monitor_.c:59
+msgid "Sending Speed: "
+msgstr "S'estŕ enviant la velocitat: "
-#: ../../standalone/rpmdrake_.c:54
-msgid "Sort by"
-msgstr "Ordena per"
+#: ../../standalone/net_monitor_.c:61
+msgid "Receiving Speed: "
+msgstr "S'estŕ rebent la velocitat: "
-#: ../../standalone/rpmdrake_.c:55
-msgid "Category"
-msgstr "Categoria"
+#: ../../standalone/net_monitor_.c:66
+msgid "Close"
+msgstr "Tanca"
-#: ../../standalone/rpmdrake_.c:58
-msgid "See"
-msgstr "Consulteu"
+#: ../../standalone/net_monitor_.c:100 ../../standalone/net_monitor_.c:104
+msgid "Connecting to Internet "
+msgstr "S'estŕ establint la connexió a Internet"
-#: ../../standalone/rpmdrake_.c:59 ../../standalone/rpmdrake_.c:163
-msgid "Installed packages"
-msgstr "Paquets instalˇlats"
+#: ../../standalone/net_monitor_.c:100 ../../standalone/net_monitor_.c:104
+msgid "Disconnecting from Internet "
+msgstr "S'estŕ realitzant la desconnexió d'Internet"
-#: ../../standalone/rpmdrake_.c:60
-msgid "Available packages"
-msgstr "Paquets disponibles"
+#: ../../standalone/net_monitor_.c:114
+msgid "Disconnection from Internet failed."
+msgstr "No s'ha pogut realitzar la desconnexió d'Internet"
-#: ../../standalone/rpmdrake_.c:62
-msgid "Show only leaves"
-msgstr "Mostra només les fulles"
+#: ../../standalone/net_monitor_.c:115
+msgid "Disconnection from Internet complete."
+msgstr "La desconnexió d'Internet ha finalitzat"
-#: ../../standalone/rpmdrake_.c:67
-msgid "Expand all"
-msgstr "Expandeix-ho tot"
+#: ../../standalone/net_monitor_.c:117
+msgid "Connection complete."
+msgstr "La connexió ha finalitzat."
-#: ../../standalone/rpmdrake_.c:68
-msgid "Collapse all"
-msgstr "Redueix-ho tot"
-
-#: ../../standalone/rpmdrake_.c:70
-msgid "Configuration"
-msgstr "Configuració"
-
-#: ../../standalone/rpmdrake_.c:71
-msgid "Add location of packages"
-msgstr "Afegeix la ubicació dels paquets"
-
-#: ../../standalone/rpmdrake_.c:75
-msgid "Update location"
-msgstr "Actualitza la ubicació"
-
-#: ../../standalone/rpmdrake_.c:79 ../../standalone/rpmdrake_.c:328
-msgid "Remove"
-msgstr "Elimina"
-
-#: ../../standalone/rpmdrake_.c:100
-msgid "Configuration: Add Location"
-msgstr "Configuració: afegeix la ubicació"
-
-#: ../../standalone/rpmdrake_.c:103
-msgid "Find Package"
-msgstr "Cerca el paquet"
-
-#: ../../standalone/rpmdrake_.c:104
-msgid "Find Package containing file"
-msgstr "Cerca el paquet que conté el fitxer"
-
-#: ../../standalone/rpmdrake_.c:105
-msgid "Toggle between Installed and Available"
-msgstr "Commuta entre Instalˇlats i Disponibles"
-
-#: ../../standalone/rpmdrake_.c:139
-msgid "Files:\n"
-msgstr "Fitxers:\n"
+#: ../../standalone/net_monitor_.c:118
+msgid ""
+"Connection failed.\n"
+"Verify your configuration in the Mandrake Control Center."
+msgstr ""
+"No s'ha pogut establir la connexió.\n"
+"Comproveu la configuració al Centre de control de Mandrake."
-#: ../../standalone/rpmdrake_.c:161 ../../standalone/rpmdrake_.c:209
-msgid "Uninstall"
-msgstr "Desinstalˇla"
+#: ../../standalone/net_monitor_.c:188
+msgid "sent: "
+msgstr "enviat: "
-#: ../../standalone/rpmdrake_.c:163
-msgid "Choose package to install"
-msgstr "Escolliu el paquet a instalˇlar"
+#: ../../standalone/net_monitor_.c:191
+msgid "received: "
+msgstr "rebut: "
-#: ../../standalone/rpmdrake_.c:190
-msgid "Checking dependencies"
-msgstr "S'estan comprovant les dependčncies"
+#: ../../standalone/net_monitor_.c:222
+msgid "Connect"
+msgstr "Connecta"
-#: ../../standalone/rpmdrake_.c:190 ../../standalone/rpmdrake_.c:409
-msgid "Wait"
-msgstr "Espera"
+#: ../../standalone/net_monitor_.c:222
+msgid "Disconnect"
+msgstr "Desconnecta"
-#: ../../standalone/rpmdrake_.c:209
-msgid "The following packages are going to be uninstalled"
-msgstr "Ara es desinstalˇlaran els paquets següents"
+#: ../../standalone/tinyfirewall_.c:29
+msgid "Firewalling Configuration"
+msgstr "Configuració del sistema de tallafocs"
-#: ../../standalone/rpmdrake_.c:210
-msgid "Uninstalling the RPMs"
-msgstr "S'estan desinstalˇlant els RPM"
+#: ../../standalone/tinyfirewall_.c:42
+msgid "Firewalling configuration"
+msgstr "Configuració del sistema de tallafocs"
-#: ../../standalone/rpmdrake_.c:229 ../../standalone/rpmdrake_.c:269
-msgid "Regexp"
-msgstr "Regexp"
+#: ../../standalone/tinyfirewall_.c:77
+msgid ""
+"Firewalling\n"
+"\n"
+"You already have set up a firewall.\n"
+"Click on Configure to change or remove the firewall"
+msgstr ""
+"Sistema de tallafocs\n"
+"\n"
+"Ja heu configurat un tallafocs.\n"
+"Feu clic a Configura per canviar o eliminar el tallafoc"
-#: ../../standalone/rpmdrake_.c:229
-msgid "Which package are looking for"
-msgstr "Quin paquet esteu cercant"
+#: ../../standalone/tinyfirewall_.c:81
+msgid ""
+"Firewalling\n"
+"\n"
+"Click on Configure to set up a standard firewall"
+msgstr ""
+"Sistema de tallafocs\n"
+"\n"
+"Feu clic a Configura per configurar un tallafocs estŕndard"
-#: ../../standalone/rpmdrake_.c:238 ../../standalone/rpmdrake_.c:262
-#: ../../standalone/rpmdrake_.c:278
-#, c-format
-msgid "%s not found"
-msgstr "no s'ha trobat %s"
+#: ../../tinyfirewall.pm_.c:10
+msgid ""
+"tinyfirewall configurator\n"
+"\n"
+"This configures a personal firewall for this Linux Mandrake machine.\n"
+"For a powerful dedicated firewall solution, please look to the\n"
+"specialized MandrakeSecurity Firewall distribution."
+msgstr ""
+"Configurador del tinyfirewall\n"
+"\n"
+"Amb aixň es configura un tallafocs personal per a aquest ordinador Linux "
+"Mandrake.\n"
+"Per a una potent solució de tallafocs dedicada, consulteu si us plau la "
+"distribució especialitzada MandrakeSecurity Firewall."
-#: ../../standalone/rpmdrake_.c:238 ../../standalone/rpmdrake_.c:262
-#: ../../standalone/rpmdrake_.c:278
-msgid "No match"
-msgstr "Cap coincidčncia"
+#: ../../tinyfirewall.pm_.c:15
+msgid ""
+"We'll now ask you questions about which services you'd like to allow\n"
+"the Internet to connect to. Please think carefully about these\n"
+"questions, as your computer's security is important.\n"
+"\n"
+"Please, if you're not currently using one of these services, firewall\n"
+"it off. You can change this configuration anytime you like by\n"
+"re-running this application!"
+msgstr ""
+"Ara us farem preguntes sobre els serveis a quč voleu autoritzar que\n"
+"Internet us connecti. Si us plau, penseu-hi a fons perquč la seguretat\n"
+"del vostre ordinador és important.\n"
+"\n"
+"Si us plau, si un moment donat no esteu utilitzant algun d'aquests serveis,\n"
+"desactiveu-ne el tallafocs. Podeu canviar aquesta configuració sempre que\n"
+"vulgueu tornant a executar aquesta aplicació!"
-#: ../../standalone/rpmdrake_.c:238 ../../standalone/rpmdrake_.c:262
-#: ../../standalone/rpmdrake_.c:278
-msgid "No more match"
-msgstr "Cap altra coincidčncia"
+#: ../../tinyfirewall.pm_.c:22
+msgid ""
+"Are you running a web server on this machine that you need the whole\n"
+"Internet to see? If you are running a webserver that only needs to be\n"
+"accessed by this machine, you can safely answer NO here.\n"
+"\n"
+msgstr ""
+"Esteu executant un servidor de web en aquest ordinador que necessiteu que\n"
+"pugui veure tothom a Internet? Si esteu executant un servidor de web a quč\n"
+"només ha d'accedir aquest ordinador, aquí podeu respondre tranquilˇlament "
+"NO.\n"
+"\n"
-#: ../../standalone/rpmdrake_.c:246
+#: ../../tinyfirewall.pm_.c:27
msgid ""
-"rpmdrake is currently in ``low memory'' mode.\n"
-"I'm going to relaunch rpmdrake to allow searching files"
+"Are you running a name server on this machine? If you didn't set one\n"
+"up to give away IP and zone information to the whole Internet, please\n"
+"answer no.\n"
+"\n"
msgstr ""
-"Actualment, l'rpmdrake estŕ en el mode ``poca memňria''.\n"
-"Ara tornaré a reiniciar l'rpmdrake per permetre la recerca de fitxers"
+"Esteu executant un servidor de noms en aquest ordinador? Si no n'heu\n"
+"configurat cap per proporcionar la IP i la informació de zona a tothom a\n"
+"Internet, si us plau responeu NO.\n"
+"\n"
-#: ../../standalone/rpmdrake_.c:253
-msgid "Which file are you looking for?"
-msgstr "Quin fitxer esteu cercant?"
+#: ../../tinyfirewall.pm_.c:32
+msgid ""
+"Do you want to allow incoming Secure Shell (ssh) connections? This\n"
+"is a telnet-replacement that you might use to login. If you're using\n"
+"telnet now, you should definitely switch to ssh. telnet is not\n"
+"encrypted -- so some attackers can steal your password if you use\n"
+"it. ssh is encrypted and doesn't allow for this eavesdropping."
+msgstr ""
+"Voleu autoritzar les connexions Secure Shell (ssh) d'entrada? Es tracta\n"
+"d'una substitució del Telnet que podeu utilitzar per entrar. Si ara esteu\n"
+"utilitzant el Telnet, passeu-vos a l'ssh sense cap mena de dubte; el\n"
+"Telnet no estŕ xifrat, de manera que us poden robar la contrasenya si\n"
+"l'utilitzeu, mentre que l'ssh estŕ xifrat i no permet cap mena d'intercepció."
-#: ../../standalone/rpmdrake_.c:269
-msgid "What are looking for?"
-msgstr "Quč esteu cercant?"
+#: ../../tinyfirewall.pm_.c:37
+msgid ""
+"Do you want to allow incoming telnet connections?\n"
+"This is horribly unsafe, as we explained in the previous screen. We\n"
+"strongly recommend answering No here and using ssh in place of\n"
+"telnet.\n"
+msgstr ""
+"Voleu autoritzar les connexions Telnet d'entrada?\n"
+"Aixň és tremendament insegur, com hem dit a la pantalla anterior. Us\n"
+"recomanem vivament que respongueu No aquí i que utilitzeu l'ssh en comptes\n"
+"del Telnet.\n"
-#: ../../standalone/rpmdrake_.c:289
-msgid "Give a name (eg: `extra', `commercial')"
-msgstr "Introduďu un nom (p.ex. `extra', `comercial')"
+#: ../../tinyfirewall.pm_.c:42
+msgid ""
+"Are you running an FTP server here that you need accessible to the\n"
+"Internet? If you are, we strongly recommend that you only use it for\n"
+"Anonymous transfers. Any passwords sent by FTP can be stolen by some\n"
+"attackers, since FTP also uses no encryption for transferring passwords.\n"
+msgstr ""
+"Esteu executant un servidor d'FTP que necessiteu que sigui accessible a\n"
+"Internet? Si és així, us recomanen vivament que només l'utilitzeu per a\n"
+"transferčncies anňnimes, ja que qualsevol contrasenya que s'envia per FTP\n"
+"pot ser robada, atčs que l'FTP no utilitza xifratge per a la transferčncia\n"
+"de contrasenyes.\n"
-#: ../../standalone/rpmdrake_.c:291
-msgid "Directory"
-msgstr "Directori"
+#: ../../tinyfirewall.pm_.c:47
+msgid ""
+"Are you running a mail server here? If you're sending you \n"
+"messages through pine, mutt or any other text-based mail client,\n"
+"you probably are. Otherwise, you should firewall this off.\n"
+"\n"
+msgstr ""
+"Esteu executant un servidor de correu? Si esteu enviant els missatges\n"
+"a través del pine, el mutt o qualsevol altre client de correu basat en\n"
+"text, probablement és així. En cas contrari, desactiveu-ne el tallafocs.\n"
+"\n"
-#: ../../standalone/rpmdrake_.c:294
-msgid "No cdrom available (nothing in /mnt/cdrom)"
-msgstr "No hi ha cap CD-ROM disponible (no hi ha res a /mnt/cdrom)"
+#: ../../tinyfirewall.pm_.c:52
+msgid ""
+"Are you running a POP or IMAP server here? This would\n"
+"be used to host non-web-based mail accounts for people via \n"
+"this machine.\n"
+"\n"
+msgstr ""
+"Esteu executant un servidor POP o IMAP? Aixň s'utilitzaria\n"
+"per allotjar comptes de correu dels usuaris, no basats en web,\n"
+"mitjançant aquest ordinador.\n"
+"\n"
-#: ../../standalone/rpmdrake_.c:298
-msgid "URL of the directory containing the RPMs"
-msgstr "L'URL del directori que conté els RPM"
+#: ../../tinyfirewall.pm_.c:57
+msgid ""
+"You appear to be running a 2.2 kernel. If your network IP\n"
+"is automatically set by a computer in your home or office \n"
+"(dynamically assigned), we need to allow for this. Is\n"
+"this the case?\n"
+msgstr ""
+"Sembla que esteu utilitzant un nucli 2.2. Si l'ordinador de\n"
+"casa o de l'oficina estableix automŕticament la IP de la vostra\n"
+"xarxa (assignació dinŕmica), us cal autoritzar aixň. És aquest el cas?\n"
-#: ../../standalone/rpmdrake_.c:299
+#: ../../tinyfirewall.pm_.c:62
msgid ""
-"For FTP and HTTP, you need to give the location for hdlist\n"
-"It must be relative to the URL above"
+"Is your computer getting time syncronized to another computer?\n"
+"Mostly, this is used by medium-large Unix/Linux organizations\n"
+"to synchronize time for logging and such. If you're not part\n"
+"of a larger office and haven't heard of this, you probably \n"
+"aren't."
msgstr ""
-"Per a FTP i HTTP, us cal introduir la ubicació de hdlist\n"
-"Ha de ser relativa a l'URL superior"
+"El vostre ordinador estŕ sincronitzat pel que fa al temps amb un altre?\n"
+"Normalment, aixň ho utilitzen organitzacions Unix/Linux mitjanes-grans\n"
+"per sincronitzar el temps de les entrades i coses així. Si no sou una part\n"
+"d'una oficina gran i no heu sentit parlar d'aixň, probablement no us trobeu\n"
+"en aquest cas."
-#: ../../standalone/rpmdrake_.c:302
-msgid "Please submit the following information"
-msgstr "Si us plau, trameteu la informació següent"
+#: ../../tinyfirewall.pm_.c:67
+msgid ""
+"Configuration complete. May we write these changes to disk?\n"
+"\n"
+"\n"
+"\n"
+msgstr ""
+"La configuració estŕ completa. Podem desar aquests canvis al disc?\n"
+"\n"
+"\n"
+"\n"
-#: ../../standalone/rpmdrake_.c:304
+#: ../../tinyfirewall.pm_.c:83
#, c-format
-msgid "%s is already in use"
-msgstr "%s ja és en ús"
-
-#: ../../standalone/rpmdrake_.c:315 ../../standalone/rpmdrake_.c:321
-#: ../../standalone/rpmdrake_.c:329
-msgid "Updating the RPMs base"
-msgstr "S'estŕ actualitzant la base dels RPM"
+msgid "Can't open %s: %s\n"
+msgstr "No es pot obrir %s: %s\n"
-#: ../../standalone/rpmdrake_.c:328
+#: ../../tinyfirewall.pm_.c:85
#, c-format
-msgid "Going to remove entry %s"
-msgstr "Ara s'eliminarŕ l'entrada %s"
-
-#: ../../standalone/rpmdrake_.c:360
-msgid "Finding leaves"
-msgstr "S'estan cercant les fulles"
-
-#: ../../standalone/rpmdrake_.c:360
-msgid "Finding leaves takes some time"
-msgstr "Cal una mica de temps per cercar les fulles"
-
-# ../../share/compssUsers
-msgid "Graphics Manipulation"
-msgstr "Manipulació de grŕfics"
-
-# ../../share/compssUsers
-msgid "KDE, QT, Gnome, GTK+"
-msgstr "KDE, QT, Gnome, GTK+"
+msgid "Can't open %s for writing: %s\n"
+msgstr "No s'ha pogut obrir %s per escriure-hi: %s\n"
-# ../../share/compssUsers
-msgid "Personnal Finance"
-msgstr "Comptabilitat personal"
+#: ../../share/compssUsers:999
+msgid "Clients for different protocols including ssh"
+msgstr "Clients per a diferents protocols, incloent l'ssh"
-# ../../share/compssUsers
-msgid "Python, Perl, libraries, tools"
-msgstr "Python, Perl, biblioteques, eines"
+#: ../../share/compssUsers:999
+msgid "Development"
+msgstr "Desenvolupament"
-# ../../share/compssUsers
-msgid "Scientific applications"
-msgstr "Aplicacions científiques"
+#: ../../share/compssUsers:999
+msgid "Workstation"
+msgstr "Estació de treball"
-# ../../share/compssUsers
-msgid "Databases"
-msgstr "Bases de dades"
+#: ../../share/compssUsers:999
+msgid "Firewall/Router"
+msgstr "Servidor, Tallafoc/Encaminador"
-msgid "Internet"
-msgstr "Internet"
+#: ../../share/compssUsers:999
+msgid "Personal Information Management"
+msgstr "Gestió d'informació personal"
+#: ../../share/compssUsers:999
msgid "Multimedia - Graphics"
msgstr "Multimčdia - Grŕfics"
-# ../../share/compssUsers
-msgid "editors, shells, file tools, terminals"
-msgstr "editors, intčrprets d'ordres, eines de fitxer, terminals"
+#: ../../share/compssUsers:999
+msgid "Internet"
+msgstr "Internet"
-msgid "Development applications"
-msgstr "Aplicacions de desenvolupament"
+#: ../../share/compssUsers:999
+msgid "Network Computer (client)"
+msgstr "Ordinador de xarxa (client)"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Audio-related tools: mp3 or midi players, mixers, etc"
msgstr "Eines d'ŕudio: reproductors d'mp3 o midi, mescladors, etc."
-msgid "Multimedia"
-msgstr "Multimčdia"
+#: ../../share/compssUsers:999
+msgid "Internet station"
+msgstr "Estació d'Internet"
+#: ../../share/compssUsers:999
msgid "Office"
msgstr "Oficina"
-# ../../share/compssUsers
-msgid "Sciences"
-msgstr "Cičncies"
-
-# ../../share/compssUsers
-msgid ""
-"Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and file "
-"transfer tools"
-msgstr ""
-"Programes de xat (IRC o missatgeria instantŕnia) com ara xchat, licq, gaim, "
-"i eines de transferčncia de fitxers"
+#: ../../share/compssUsers:999
+msgid "Multimedia station"
+msgstr "Estació multimčdia"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid ""
"Set of tools to read and send mail and news (pine, mutt, tin..) and to "
"browse the Web"
@@ -7205,73 +8148,79 @@ msgstr ""
"Conjunt d'eines per llegir i enviar correu i notícies (pine, mutt, tin...) i "
"per navegar pel Web"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "C and C++ development libraries, programs and include files"
msgstr "Biblioteques de desenvolupament C i C++, programes i fitxers inclosos"
-# ../../share/compssUsers
-msgid "Communication facilities"
-msgstr "Instalˇlacions de comunicació"
-
-msgid "KDE"
-msgstr "KDE"
-
-# ../../share/compssUsers
-msgid "Personnal Information Management"
-msgstr "Gestió d'informació personal"
+#: ../../share/compssUsers:999
+msgid "Domain Name and Network Information Server"
+msgstr ""
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Programs to manage your finance, such as gnucash"
msgstr "Programes per gestionar els vostres comptes, com ara el gnucash"
-msgid "Gnome"
-msgstr "Gnome"
+#: ../../share/compssUsers:999
+msgid "PostgreSQL or MySQL database server"
+msgstr ""
-msgid "Internet Tools"
-msgstr "Eines d'Internet"
+#: ../../share/compssUsers:999
+msgid "NFS server, SMB server, Proxy server, ssh server"
+msgstr "Servidor NFS, Servidor SMB, Servidor intermediari, Servidor SSH"
+#: ../../share/compssUsers:999
msgid "Documentation"
msgstr "Documentació"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr "Icewm, Window Maker, Enlightenment, Fvwm, etc"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Utilities"
msgstr "Utilitats"
+#: ../../share/compssUsers:999
+msgid "DNS/NIS "
+msgstr "DNS/NIS "
+
+#: ../../share/compssUsers:999
+msgid "Graphical Environment"
+msgstr "Entorn grŕfic"
+
+#: ../../share/compssUsers:999
msgid "Multimedia - Sound"
msgstr "Multimčdia - So"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Amusement programs: arcade, boards, strategy, etc"
msgstr "Programes d'entreteniment: acció, jocs de taula, estratčgia, etc."
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Video players and editors"
msgstr "Reproductors i editors de vídeo"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Console Tools"
msgstr "Eines de consola"
-msgid "Development other"
-msgstr "Altres de desenvolupament"
-
-# ../../share/compssUsers
-msgid "Databases clients and servers (mysql and postgresql)"
-msgstr "Clients de bases de dades i servidors (mysql i postgresql)"
-
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Sound and video playing/editing programs"
msgstr "Programes de reproducció/edició de so i vídeo"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
+msgid "Scientific Workstation"
+msgstr "Estació científica de treball"
+
+#: ../../share/compssUsers:999
+msgid "Editors, shells, file tools, terminals"
+msgstr "Editors, intčrprets d'ordres, eines de fitxer, terminals"
+
+#: ../../share/compssUsers:999
msgid "Books and Howto's on Linux and Free Software"
msgstr "Llibres i Com es fa... sobre el Linux i el programari lliure"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid ""
"A graphical environment with user-friendly set of applications and desktop "
"tools"
@@ -7279,42 +8228,57 @@ msgstr ""
"Entorn grŕfic amb un conjunt d'aplicacions i eines d'escriptori fŕcil "
"d'utilitzar"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
+msgid "Postfix mail server, Inn news server"
+msgstr ""
+
+#: ../../share/compssUsers:999
msgid "Games"
msgstr "Jocs"
-msgid "Development C/C++"
-msgstr "Desenvolupament C/C++"
-
+#: ../../share/compssUsers:999
msgid "Multimedia - Video"
msgstr "Multimčdia - Vídeo"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
+msgid "Network Computer server"
+msgstr "Servidor d'ordinador de xarxa"
+
+#: ../../share/compssUsers:999
msgid "Graphics programs such as The Gimp"
msgstr "Programes grŕfics com ara el Gimp"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
+msgid "Office Workstation"
+msgstr "Estació de treball Office"
+
+#: ../../share/compssUsers:999
msgid ""
"The K Desktop Environment, the basic graphical environment with a collection "
"of accompanying tools"
msgstr "Entorn d'escriptori K, l'entorn grŕfic bŕsic que inclou diverses eines"
-# ../../share/compssUsers
-msgid "Tools to create and burn CD's"
-msgstr "Eines per crear i gravar CD"
-
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "More Graphical Desktops (Gnome, IceWM)"
msgstr "Més escriptoris grŕfics (Gnome, IceWM)"
+#: ../../share/compssUsers:999
+msgid "Tools to create and burn CD's"
+msgstr "Eines per crear i gravar CD"
+
+#: ../../share/compssUsers:999
msgid "Multimedia - CD Burning"
msgstr "Multimčdia - Gravació de CD"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
msgid "Archiving, emulators, monitoring"
msgstr "Arxivament, emuladors, monitorització"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
+msgid "Database"
+msgstr "Servidor, base de dades"
+
+#: ../../share/compssUsers:999
msgid ""
"Office programs: wordprocessors (kword, abiword), spreadsheets (kspread, "
"gnumeric), pdf viewers, etc"
@@ -7322,23 +8286,635 @@ msgstr ""
"Programes d'ofimŕtica: processadors de textos (kword, abiword), gestors de "
"fulls de cŕlcul (kspread, gnumeric), visualitzadors pdf, etc."
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
+msgid "Web/FTP"
+msgstr "Servidor, Web/FTP"
+
+#: ../../share/compssUsers:999
+msgid "Server"
+msgstr "Servidor"
+
+#: ../../share/compssUsers:999
+msgid "Personal Finance"
+msgstr "Comptabilitat personal"
+
+#: ../../share/compssUsers:999
+msgid "Configuration"
+msgstr "Configuració"
+
+#: ../../share/compssUsers:999
+msgid "KDE Workstation"
+msgstr "Estació de treball KDE"
+
+#: ../../share/compssUsers:999
msgid "Other Graphical Desktops"
msgstr "Altres escriptoris grŕfics"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
+msgid "Apache, Pro-ftpd"
+msgstr "Apache i Pro-ftpd"
+
+#: ../../share/compssUsers:999
+msgid "Mail/Groupware/News"
+msgstr "Servidor, Correu/Groupware/Notícies"
+
+#: ../../share/compssUsers:999
+msgid "Gnome Workstation"
+msgstr "Estació de treball GNOME"
+
+#: ../../share/compssUsers:999
+#, fuzzy
+msgid "Internet gateway"
+msgstr "Accés a Internet"
+
+#: ../../share/compssUsers:999
msgid "Tools for your Palm Pilot or your Visor"
msgstr "Eines per al Palm Pilot o per al Visor"
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
+msgid "Game station"
+msgstr "Estació de jocs"
+
+#: ../../share/compssUsers:999
msgid "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc"
msgstr "Gnome, Icewm, Window Maker, Enlightenment, Fvwm, etc."
-# ../../share/compssUsers
+#: ../../share/compssUsers:999
+msgid "Tools to ease the configuration of your computer"
+msgstr "Eines per facilitar la configuració de l'ordinador"
+
+#: ../../share/compssUsers:999
msgid "Set of tools for mail, news, web, file transfer, and chat"
msgstr ""
"Conjunt d'eines per al correu, notícies, web, transferčncia de fitxers i xat"
+#~ msgid "cannot fork: "
+#~ msgstr "no es pot bifurcar: "
+
+#~ msgid "Configure..."
+#~ msgstr "Configura..."
+
+#, fuzzy
+#~ msgid "Lilo/Grub configuration"
+#~ msgstr "Configuració de la LAN"
+
+#~ msgid "Selected size %d%s"
+#~ msgstr "S'ha seleccionat la mida %d%s"
+
+#~ msgid "Opening your connection..."
+#~ msgstr "S'estŕ obrint la connexió..."
+
+#~ msgid "Standard tools"
+#~ msgstr "Eines estŕndard"
+
+#~ msgid "This startup script try to load your modules for your usb mouse."
+#~ msgstr "Aquest script d'inici intenta carregar els mňduls del ratolí USB."
+
+#~ msgid "Configuration de Lilo/Grub"
+#~ msgstr "Configuració del LILO/Grub"
+
+#~ msgid "Boot style configuration"
+#~ msgstr "Configuració del tipus d'arrencada"
+
+#~ msgid ""
+#~ "Now that your Internet connection is configured,\n"
+#~ "your computer can be configured to share its Internet connection.\n"
+#~ "Note: you need a dedicated Network Adapter to set up a Local Area Network "
+#~ "(LAN).\n"
+#~ "\n"
+#~ "Would you like to setup the Internet Connection Sharing?\n"
+#~ msgstr ""
+#~ "Ara que ja teniu configurada la connexió a Internet,\n"
+#~ "podeu configurar l'ordinador per tal que la comparteixi.\n"
+#~ "Nota: per configurar una xarxa d'ŕrea local (LAN), us cal un adaptador de "
+#~ "xarxa dedicat.\n"
+#~ "\n"
+#~ "Voleu configurar la connexió a Internet compartida?\n"
+
+#~ msgid "Welcome to the Internet Connection Sharing utility!"
+#~ msgstr "Benvingut a la utilitat de compartició de la connexió a Internet!"
+
+#~ msgid "Automatic dependencies"
+#~ msgstr "Dependčncies automŕtiques"
+
+#~ msgid "Configure LILO/GRUB"
+#~ msgstr "Configura el LILO/GRUB"
+
+#~ msgid "Create a boot floppy"
+#~ msgstr "Crea un disquet d'arrencada"
+
+#~ msgid "Format floppy"
+#~ msgstr "Formata el disquet"
+
+#~ msgid "Choice"
+#~ msgstr "Elecció"
+
+#~ msgid "horizontal nice looking aurora"
+#~ msgstr "aurora horitzontal amb bon aspecte"
+
+#~ msgid "vertical traditional aurora"
+#~ msgstr "aurora vertical tradicional"
+
+#~ msgid "gMonitor"
+#~ msgstr "gMonitor"
+
+#~ msgid ""
+#~ "You can now select some miscellaneous options for your system.\n"
+#~ "\n"
+#~ "* Use hard drive optimizations: this option can improve hard disk "
+#~ "performance but is only for advanced users. Some buggy\n"
+#~ " chipsets can ruin your data, so beware. Note that the kernel has a builtin "
+#~ "blacklist of drives and chipsets, but if\n"
+#~ " you want to avoid bad surprises, leave this option unset.\n"
+#~ "\n"
+#~ "\n"
+#~ "* Choose security level: you can choose a security level for your system. "
+#~ "Please refer to the manual for complete\n"
+#~ " information. Basically, if you don't know what to choose, keep the default "
+#~ "option.\n"
+#~ "\n"
+#~ "\n"
+#~ "* Precise RAM if needed: unfortunately, there is no standard method to ask "
+#~ "the BIOS about the amount of RAM present in\n"
+#~ " your computer. As consequence, Linux may fail to detect your amount of RAM "
+#~ "correctly. If this is the case, you can\n"
+#~ " specify the correct amount or RAM here. Please note that a difference of 2 "
+#~ "or 4 MB between detected memory and memory\n"
+#~ " present in your system is normal.\n"
+#~ "\n"
+#~ "\n"
+#~ "* Removable media automounting: if you would prefer not to manually mount "
+#~ "removable media (CD-Rom, floppy, Zip, etc.) by\n"
+#~ " typing \"mount\" and \"umount\", select this option.\n"
+#~ "\n"
+#~ "\n"
+#~ "* Clean \"/tmp\" at each boot: if you want delete all files and directories "
+#~ "stored in \"/tmp\" when you boot your system,\n"
+#~ " select this option.\n"
+#~ "\n"
+#~ "\n"
+#~ "* Enable num lock at startup: if you want NumLock key enabled after booting, "
+#~ "select this option. Please note that you\n"
+#~ " should not enable this option on laptops and that NumLock may or may not "
+#~ "work under X."
+#~ msgstr ""
+#~ "Ara podeu seleccionar diverses opcions per al vostre sistema.\n"
+#~ "\n"
+#~ "* Utilització de l'optimització del disc dur: Aquesta opció pot millorar el\n"
+#~ "rendiment del disc dur, perň és només per a usuaris avançats. Alguns xips\n"
+#~ "amb errors poden fer malbé les vostres dades, així que aneu amb compte. El\n"
+#~ "nucli inclou una \"llista negra\" d'unitats i jocs de xips, perň, si voleu\n"
+#~ "evitar-vos sorpreses desagradables, no activeu aquesta opció.\n"
+#~ "\n"
+#~ "\n"
+#~ "* Selecció d'un nivell de seguretat: Podeu escollir un nivell de\n"
+#~ "seguretat per al sistema. Si us plau, consulteu el manual per a més\n"
+#~ "informació. Bŕsicament, si no n'esteu segur, trieu l'opció predeterminada.\n"
+#~ "\n"
+#~ "\n"
+#~ "* Si cal, indicació de la mida exacta de la RAM: malauradament, no hi cap\n"
+#~ "mčtode estŕndard per preguntar al BIOS la quantitat de RAM que hi ha a\n"
+#~ "l'ordinador. Per tant, és possible que el Linux no pugui detectar\n"
+#~ "correctament la quantitat de RAM instalˇlada. Si és aquest el cas, en podeu\n"
+#~ "indicar aquí la quantitat correcta, perň penseu que una diferčncia de 2 o 4\n"
+#~ "MB entre la memňria detectada i la memňria real és normal.\n"
+#~ "\n"
+#~ "\n"
+#~ "* Muntatge automŕtic de suports extraďbles: Si preferiu no haver\n"
+#~ "de muntar manualment les unitats extraďbles (CD-ROM, disquet, Zip)\n"
+#~ "escrivint \"mount\" i \"umount\", seleccioneu aquesta opció.\n"
+#~ "\n"
+#~ "\n"
+#~ "* Neteja de \"/tmp\" en cada arrencada: si voleu suprimir tots els fitxers\n"
+#~ "i directoris que hi ha emmagatzemats a \"/tmp\" quan arranqueu el sistema,\n"
+#~ "seleccioneu aquesta opció.\n"
+#~ "\n"
+#~ "\n"
+#~ "* Habilitació de BlocNum a l'inici: Si voleu que BlocNum s'habiliti després\n"
+#~ "de l'arrencada, seleccioneu aquesta opció. Tingueu en compte que no heu\n"
+#~ "d'habilitar aquesta opció en portŕtils i que BlocNum pot funcionar o pot no\n"
+#~ "funcionar sota X."
+
+#~ msgid "Sorry, the mail configuration is not yet implemented. Be patient."
+#~ msgstr ""
+#~ "Si us plau, tingueu pacičncia; la configuració del correu encara no estŕ "
+#~ "implementada."
+
+#~ msgid ""
+#~ "Welcome to The Network Configuration Wizard.\n"
+#~ "Which components do you want to configure?\n"
+#~ msgstr ""
+#~ "Benvingut a l'Auxiliar de configuració de la xarxa.\n"
+#~ "Quins components voleu configurar?\n"
+
+#~ msgid "Internet/Network access"
+#~ msgstr "Accés a Internet/xarxa"
+
+#~ msgid "Mail information"
+#~ msgstr "Informació del correu"
+
+#~ msgid "Miscellaneous"
+#~ msgstr "Miscelˇlŕnia"
+
+#~ msgid "Miscellaneous questions"
+#~ msgstr "Preguntes diverses"
+
+#~ msgid "Can't use supermount in high security level"
+#~ msgstr "No es pot utilitzar supermount en un nivell d'alta seguretat"
+
+#~ msgid ""
+#~ "beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
+#~ "If you want to be root, you have to login as a user and then use \"su\".\n"
+#~ "More generally, do not expect to use your machine for anything but as a "
+#~ "server.\n"
+#~ "You have been warned."
+#~ msgstr ""
+#~ "Atenció: EN AQUEST NIVELL DE SEGURETAT NO ES POT ENTRAR COM A ROOT A LA "
+#~ "CONSOLA!\n"
+#~ "Si voleu ser root, heu d'entrar com a usuari i aleshores utilitzar \"su\".\n"
+#~ "En general, no espereu utilitzar l'ordinador per a altre cosa que com a "
+#~ "servidor.\n"
+#~ "Esteu avisat."
+
+#~ msgid ""
+#~ "Be carefull, having numlock enabled causes a lot of keystrokes to\n"
+#~ "give digits instead of normal letters (eg: pressing `p' gives `6')"
+#~ msgstr ""
+#~ "Aneu amb compte; si teniu BlocNúm habilitat, moltes tecles donaran\n"
+#~ "números en comptes de lletres (p.ex., si premeu la `p' obtindreu un `6')"
+
+#~ msgid "not connected"
+#~ msgstr "sense connexió"
+
+#~ msgid "Scientific applications"
+#~ msgstr "Aplicacions científiques"
+
+#~ msgid "toot"
+#~ msgstr "toot"
+
+#~ msgid "File/Print/Samba"
+#~ msgstr "Servidor, Fitxer/Impressió/Samba"
+
+#~ msgid "DNS/DHCP "
+#~ msgstr "Servidor, DNS/DHCP "
+
+#~ msgid "First DNS Server"
+#~ msgstr "Servidor DNS primari"
+
+#~ msgid "Second DNS Server"
+#~ msgstr "Servidor DNS secundari"
+
+#~ msgid "using module"
+#~ msgstr "s'estŕ utilitzant el mňdul"
+
+#~ msgid "Development, Database"
+#~ msgstr "Desenvolupament, base de dades"
+
+#~ msgid "Development, Integrated Environment"
+#~ msgstr "Desenvolupament, entorn integrat"
+
+#~ msgid "Development, Standard tools"
+#~ msgstr "Desenvolupament, eines estŕndard"
+
+#~ msgid ""
+#~ "\n"
+#~ "Warning:\n"
+#~ "Applying the changes while running may crash your X environnement."
+#~ msgstr ""
+#~ "\n"
+#~ "Avís:\n"
+#~ "Si apliquu els canvis durant l'execució, és possible que l'entorn X caigui."
+
+#~ msgid ""
+#~ "\n"
+#~ "If you continue, I will shut down your %s environnement"
+#~ msgstr ""
+#~ "\n"
+#~ "Si continueu, tancaré l'entorn %s"
+
+#~ msgid "eth$_"
+#~ msgstr "eth$_"
+
+#~ msgid "loopback"
+#~ msgstr "loopback"
+
+#~ msgid "None"
+#~ msgstr "Cap"
+
+#~ msgid "Which bootloader(s) do you want to use?"
+#~ msgstr "Quin(s) carregador(s) d'arrencada voleu utilitzar?"
+
+#~ msgid "Auto install floppy"
+#~ msgstr "Disquet d'instalˇlació automŕtica"
+
+#~ msgid "Try to find a modem?"
+#~ msgstr "Voleu que intenti trobar un mňdem?"
+
+#~ msgid "Configure an ISDN connection"
+#~ msgstr "Configura una connexió per XDSI"
+
+#~ msgid "Configure a cable connection"
+#~ msgstr "Configura una connexió per cable"
+
+#~ msgid "Disable Internet Connection"
+#~ msgstr "Inhabilita la connexió a Internet"
+
+#~ msgid "Configure local network"
+#~ msgstr "Configura la xarxa local"
+
+#~ msgid "Disable networking"
+#~ msgstr "Inhabilita el sistema de xarxa"
+
+#~ msgid "Configure the Internet connection / Configure local Network"
+#~ msgstr "Configura la connexió a Internet / Configura la xarxa local"
+
+#~ msgid ""
+#~ "Local networking has already been configured.\n"
+#~ "Do you want to:"
+#~ msgstr ""
+#~ "La xarxa local ja s'ha configurat.\n"
+#~ "Voleu:"
+
+#~ msgid "Graphics Manipulation"
+#~ msgstr "Manipulació de grŕfics"
+
+#~ msgid "Multimedia"
+#~ msgstr "Multimčdia"
+
+#~ msgid "Sciences"
+#~ msgstr "Cičncies"
+
+#~ msgid ""
+#~ "Chat (IRC or instant messaging) programs such as xchat, licq, gaim, and file "
+#~ "transfer tools"
+#~ msgstr ""
+#~ "Programes de xat (IRC o missatgeria instantŕnia) com ara xchat, licq, gaim, "
+#~ "i eines de transferčncia de fitxers"
+
+#~ msgid "Communication facilities"
+#~ msgstr "Instalˇlacions de comunicació"
+
+#~ msgid "KDE"
+#~ msgstr "KDE"
+
+#~ msgid "Gnome"
+#~ msgstr "Gnome"
+
+#~ msgid "Internet Tools"
+#~ msgstr "Eines d'Internet"
+
+#~ msgid "Databases clients and servers (mysql and postgresql)"
+#~ msgstr "Clients de bases de dades i servidors (mysql i postgresql)"
+
+#~ msgid "Development C/C++"
+#~ msgstr "Desenvolupament C/C++"
+
+#~ msgid "Configure timezone"
+#~ msgstr "Zona horŕria"
+
+#~ msgid "Configure printer"
+#~ msgstr "Configura la impressora"
+
+#~ msgid "(may cause data corruption)"
+#~ msgstr "(pot malmetre les dades)"
+
+#~ msgid "Use hard drive optimisations?"
+#~ msgstr "Voleu utilitzar l'optimització del disc dur?"
+
+#~ msgid "Enable num lock at startup"
+#~ msgstr "Habilita la tecla Bloc Num en iniciar"
+
+#~ msgid "Confirm Password"
+#~ msgstr "Confirmeu la contrasenya"
+
+#~ msgid "default"
+#~ msgstr "predeterminat"
+
+#~ msgid "What is your system used for?"
+#~ msgstr "Amb quina finalitat utilitzeu el sistema?"
+
+#~ msgid "Select the size you want to install"
+#~ msgstr "Seleccioneu la mida que voleu instalˇlar"
+
+#~ msgid "Use diskdrake"
+#~ msgstr "Utilitza el diskdrake"
+
+#~ msgid "Customized"
+#~ msgstr "Personalitzada"
+
+#~ msgid ""
+#~ "Are you sure you are an expert? \n"
+#~ "You will be allowed to make powerful but dangerous things here.\n"
+#~ "\n"
+#~ "You will be asked questions such as: ``Use shadow file for passwords?'',\n"
+#~ "are you ready to answer that kind of questions?"
+#~ msgstr ""
+#~ "Esteu segur que sou un expert? \n"
+#~ "Aquí podreu fer coses molt potents, perň també perilloses.\n"
+#~ "\n"
+#~ "Us preguntaran coses com: ``Voleu utilitzar un fitxer d'ombres per a les "
+#~ "contrasenyes?'',\n"
+#~ "Sou capaç de respondre aquest tipus de preguntes?"
+
+#~ msgid "Use shadow file"
+#~ msgstr "Utilitza el fitxer d'ombra"
+
+#~ msgid "shadow"
+#~ msgstr "ombra"
+
+#~ msgid "MD5"
+#~ msgstr "MD5"
+
+#~ msgid "Use MD5 passwords"
+#~ msgstr "Utilitza les contrasenyes MD5"
+
+#~ msgid "Search"
+#~ msgstr "Cerca"
+
+#~ msgid "Package"
+#~ msgstr "Paquet"
+
+#~ msgid "Text"
+#~ msgstr "Text"
+
+#~ msgid "Tree"
+#~ msgstr "Arbre"
+
+#~ msgid "Sort by"
+#~ msgstr "Ordena per"
+
+#~ msgid "Category"
+#~ msgstr "Categoria"
+
+#~ msgid "See"
+#~ msgstr "Consulteu"
+
+#~ msgid "Installed packages"
+#~ msgstr "Paquets instalˇlats"
+
+#~ msgid "Available packages"
+#~ msgstr "Paquets disponibles"
+
+#~ msgid "Show only leaves"
+#~ msgstr "Mostra només les fulles"
+
+#~ msgid "Expand all"
+#~ msgstr "Expandeix-ho tot"
+
+#~ msgid "Collapse all"
+#~ msgstr "Redueix-ho tot"
+
+#~ msgid "Add location of packages"
+#~ msgstr "Afegeix la ubicació dels paquets"
+
+#~ msgid "Update location"
+#~ msgstr "Actualitza la ubicació"
+
+#~ msgid "Remove"
+#~ msgstr "Elimina"
+
+#~ msgid "Find Package"
+#~ msgstr "Cerca el paquet"
+
+#~ msgid "Find Package containing file"
+#~ msgstr "Cerca el paquet que conté el fitxer"
+
+#~ msgid "Toggle between Installed and Available"
+#~ msgstr "Commuta entre Instalˇlats i Disponibles"
+
+#~ msgid "Uninstall"
+#~ msgstr "Desinstalˇla"
+
+#~ msgid "Choose package to install"
+#~ msgstr "Escolliu el paquet a instalˇlar"
+
+#~ msgid "Checking dependencies"
+#~ msgstr "S'estan comprovant les dependčncies"
+
+#~ msgid "Wait"
+#~ msgstr "Espera"
+
+#~ msgid "The following packages are going to be uninstalled"
+#~ msgstr "Ara es desinstalˇlaran els paquets següents"
+
+#~ msgid "Uninstalling the RPMs"
+#~ msgstr "S'estan desinstalˇlant els RPM"
+
+#~ msgid "Regexp"
+#~ msgstr "Regexp"
+
+#~ msgid "Which package are looking for"
+#~ msgstr "Quin paquet esteu cercant"
+
+#~ msgid "%s not found"
+#~ msgstr "no s'ha trobat %s"
+
+#~ msgid "No match"
+#~ msgstr "Cap coincidčncia"
+
+#~ msgid "No more match"
+#~ msgstr "Cap altra coincidčncia"
+
+#~ msgid ""
+#~ "rpmdrake is currently in ``low memory'' mode.\n"
+#~ "I'm going to relaunch rpmdrake to allow searching files"
+#~ msgstr ""
+#~ "Actualment, l'rpmdrake estŕ en el mode ``poca memňria''.\n"
+#~ "Ara tornaré a reiniciar l'rpmdrake per permetre la recerca de fitxers"
+
+#~ msgid "Which file are you looking for?"
+#~ msgstr "Quin fitxer esteu cercant?"
+
+#~ msgid "What are looking for?"
+#~ msgstr "Quč esteu cercant?"
+
+#~ msgid "Give a name (eg: `extra', `commercial')"
+#~ msgstr "Introduďu un nom (p.ex. `extra', `comercial')"
+
+#~ msgid "Directory"
+#~ msgstr "Directori"
+
+#~ msgid "No cdrom available (nothing in /mnt/cdrom)"
+#~ msgstr "No hi ha cap CD-ROM disponible (no hi ha res a /mnt/cdrom)"
+
+#~ msgid "URL of the directory containing the RPMs"
+#~ msgstr "L'URL del directori que conté els RPM"
+
+#~ msgid ""
+#~ "For FTP and HTTP, you need to give the location for hdlist\n"
+#~ "It must be relative to the URL above"
+#~ msgstr ""
+#~ "Per a FTP i HTTP, us cal introduir la ubicació de hdlist\n"
+#~ "Ha de ser relativa a l'URL superior"
+
+#~ msgid "Please submit the following information"
+#~ msgstr "Si us plau, trameteu la informació següent"
+
+#~ msgid "%s is already in use"
+#~ msgstr "%s ja és en ús"
+
+#~ msgid "Updating the RPMs base"
+#~ msgstr "S'estŕ actualitzant la base dels RPM"
+
+#~ msgid "Going to remove entry %s"
+#~ msgstr "Ara s'eliminarŕ l'entrada %s"
+
+#~ msgid "Finding leaves"
+#~ msgstr "S'estan cercant les fulles"
+
+#~ msgid "Finding leaves takes some time"
+#~ msgstr "Cal una mica de temps per cercar les fulles"
+
+#~ msgid "I have found an ISDN Card:\n"
+#~ msgstr "He trobat una targeta XDSI:\n"
+
+#~ msgid "France"
+#~ msgstr "França"
+
+#~ msgid "Other countries"
+#~ msgstr "Altres paďsos"
+
+#~ msgid "In which country are you located ?"
+#~ msgstr "A quin país us trobeu?"
+
+#~ msgid "Alcatel modem"
+#~ msgstr "Mňdem Alcatel"
+
+#~ msgid "ECI modem"
+#~ msgstr "Mňdem ECI"
+
+#~ msgid ""
+#~ "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
+#~ msgstr ""
+#~ "Si el vostre mňdem adsl és un mňdem Alcatel, seleccioneu Alcatel. Si no, ECI."
+
+#~ msgid "don't use pppoe"
+#~ msgstr "no utilitzis pppoe"
+
+#~ msgid "mandatory"
+#~ msgstr "obligatori"
+
+#~ msgid "interesting"
+#~ msgstr "interessant"
+
+#~ msgid "i18n (important)"
+#~ msgstr "i18n (important)"
+
+#~ msgid "i18n (very nice)"
+#~ msgstr "i18n (molt bonic)"
+
+#~ msgid "i18n (nice)"
+#~ msgstr "i18n (bonic)"
+
+#~ msgid "Which serial port is your mouse connected to?"
+#~ msgstr "A quin port sčrie estŕ connectat el vostre ratolí?"
+
+#~ msgid "KDE, QT, Gnome, GTK+"
+#~ msgstr "KDE, QT, Gnome, GTK+"
+
+#~ msgid "Python, Perl, libraries, tools"
+#~ msgstr "Python, Perl, biblioteques, eines"
+
#~ msgid "Czech"
#~ msgstr "Txec"
@@ -8037,12 +9613,6 @@ msgstr ""
#~ msgid "Forget the changes?"
#~ msgstr "Voleu descartar els canvis?"
-#~ msgid "Cable connection"
-#~ msgstr "Connexió de cable"
-
-#~ msgid "Host name:"
-#~ msgstr "Nom de l'ordinador central:"
-
#~ msgid "What is the type of your mouse?"
#~ msgstr "De quin tipus és el vostre ratolí?"
@@ -8122,9 +9692,6 @@ msgstr ""
#~ msgid "Logitech Bus Mouse"
#~ msgstr "Logitech Bus Mouse"
-#~ msgid "USB Mouse"
-#~ msgstr "USB Mouse"
-
#~ msgid "USB Mouse (3 buttons or more)"
#~ msgstr "USB Mouse (3 o més botons)"
@@ -8180,12 +9747,6 @@ msgstr ""
#~ "\n"
#~ "Voleu conservar l'Xfree 3.3?"
-#~ msgid "curly"
-#~ msgstr "arrissat"
-
-#~ msgid "default"
-#~ msgstr "predeterminat"
-
#~ msgid "tie"
#~ msgstr "llaç"
@@ -8216,9 +9777,6 @@ msgstr ""
#~ msgid "Have you been provided with a hostname?"
#~ msgstr "Us han donat un nom d'ordinador central?"
-#~ msgid "using dhcp"
-#~ msgstr "s'estŕ utilitzant dhcp"
-
#~ msgid "Show less"
#~ msgstr "Mostra'n menys"
@@ -8292,9 +9850,6 @@ msgstr ""
#~ msgid "What is your keyboard layout?"
#~ msgstr "Quina és la disposició del vostre teclat?"
-#~ msgid "Normal"
-#~ msgstr "Normal"
-
#~ msgid "Try to find PCMCIA cards?"
#~ msgstr "Voleu que intenti trobar targetes PCMCIA?"
@@ -8322,9 +9877,6 @@ msgstr ""
#~ msgid "No root partition found"
#~ msgstr "No s'ha trobat cap partició arrel"
-#~ msgid "Can't use broadcast with no NIS domain"
-#~ msgstr "No es pot utilitzar l'emissió sense un domini NIS"
-
#~ msgid "Please choose a partition to use as your root partition."
#~ msgstr "Si us plau, seleccioneu una partició per utilitzar-la com a arrel."
@@ -8337,9 +9889,6 @@ msgstr ""
#~ msgid ", %U MB"
#~ msgstr ", %U MB"
-#~ msgid "Automated"
-#~ msgstr "Automŕtica"
-
# NOTE: this message will be displayed by lilo at boot time; that is
# using the BIOS font; that means cp437 charset on 99.99% of PC computers
# out there. It is the nsuggested that for non latin languages an ascii
@@ -8601,9 +10150,6 @@ msgstr ""
#~ "tipus d'instalˇlació. Podreu seleccionar l'ús del vostre sistema\n"
#~ "com a \"Personalitzada\"."
-#~ msgid "Help"
-#~ msgstr "Ajuda"
-
#~ msgid "Downloading cryptographic packages"
#~ msgstr "S'estan descarregant els paquets criptogrŕfics"
@@ -8645,9 +10191,6 @@ msgstr ""
#~ msgid "Choose install or upgrade"
#~ msgstr "Instalˇlació o actualització"
-#~ msgid "KB"
-#~ msgstr "KB"
-
#~ msgid "Enter a floppy (all data will be lost)"
#~ msgstr ""
#~ "Inseriu un disquet a la unitat\n"
@@ -8695,9 +10238,6 @@ msgstr ""
#~ msgid "expert"
#~ msgstr "expert"
-#~ msgid "server"
-#~ msgstr "servidor"
-
#~ msgid "Password:"
#~ msgstr "Contrasenya:"
diff --git a/perl-install/share/po/cs.po b/perl-install/share/po/cs.po
index b7f1e11aa..21b033d14 100644
--- a/perl-install/share/po/cs.po
+++ b/perl-install/share/po/cs.po
@@ -7,40 +7,66 @@
msgid ""
msgstr ""
"Project-Id-Version: DrakX VERSION\n"
-"POT-Creation-Date: 2000-11-11 21:39+0100\n"
-"PO-Revision-Date: 2000-09-18 10:39+0200\n"
-"Last-Translator: Vladimír Marek <vlmarek@volny.cz>\n"
+"POT-Creation-Date: 2001-04-17 16:58+0200\n"
+"PO-Revision-Date: 2001-04-10 11:08GMT+02:00\n"
+"Last-Translator: Radek Vybiral <Radek.Vybiral@vsb.cz>\n"
"Language-Team: Czech <cs@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=iso-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 0.8\n"
-#: ../../Xconfigurator.pm_.c:179
+#: ../../Xconfigurator.pm_.c:232
+msgid "Configure all heads independantly"
+msgstr "Konfigurovat monitor nezávisle"
+
+#: ../../Xconfigurator.pm_.c:233
+msgid "Use Xinerama extension"
+msgstr "Použít rozšíření Xinerama"
+
+#: ../../Xconfigurator.pm_.c:236
+#, c-format
+msgid "Configure only card \"%s\" (%s)"
+msgstr "Konfigurovat pouze kartu \"%s\" (%s)"
+
+#: ../../Xconfigurator.pm_.c:239
+msgid "Multi-head configuration"
+msgstr "Konfigurace dvou monitorů"
+
+#: ../../Xconfigurator.pm_.c:240
+msgid ""
+"Your system support multiple head configuration.\n"
+"What do you want to do?"
+msgstr ""
+"Váš systém podporuje zobrazení na dvou monitorech.\n"
+"Co chcete dělat?"
+
+#: ../../Xconfigurator.pm_.c:249
msgid "Graphic card"
msgstr "Grafická karta"
-#: ../../Xconfigurator.pm_.c:179
+#: ../../Xconfigurator.pm_.c:249
msgid "Select a graphic card"
msgstr "Zvolte typ vaší grafické kary"
-#: ../../Xconfigurator.pm_.c:180
+#: ../../Xconfigurator.pm_.c:250
msgid "Choose a X server"
msgstr "Zvolte X server"
-#: ../../Xconfigurator.pm_.c:180
+#: ../../Xconfigurator.pm_.c:250
msgid "X server"
msgstr "X server"
-#: ../../Xconfigurator.pm_.c:217 ../../Xconfigurator.pm_.c:223
+#: ../../Xconfigurator.pm_.c:304 ../../Xconfigurator.pm_.c:311
#, c-format
msgid "XFree %s"
msgstr "XFree %s"
-#: ../../Xconfigurator.pm_.c:220
+#: ../../Xconfigurator.pm_.c:307
msgid "Which configuration of XFree do you want to have?"
msgstr "Které XFree byste chtěli použít?"
-#: ../../Xconfigurator.pm_.c:232
+#: ../../Xconfigurator.pm_.c:320
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s.\n"
@@ -50,28 +76,17 @@ msgstr ""
"Pokud použijete XFree %s, můžete na druhou stranu dosáhnout lepších výsledků "
"ve 2D."
-#: ../../Xconfigurator.pm_.c:234 ../../Xconfigurator.pm_.c:257
+#: ../../Xconfigurator.pm_.c:322 ../../Xconfigurator.pm_.c:355
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr "S XFree %s může vaše karta využít 3D hardwarové akcelerace."
-#: ../../Xconfigurator.pm_.c:236 ../../Xconfigurator.pm_.c:259
+#: ../../Xconfigurator.pm_.c:324 ../../Xconfigurator.pm_.c:357
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s s hardwarovou 3D akcelerací"
-#: ../../Xconfigurator.pm_.c:245
-#, c-format
-msgid ""
-"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
-"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
-"Your card is supported by XFree %s which may have a better support in 2D."
-msgstr ""
-"Vaše karta podporuje 3D akceleraci, ale pouze s XFree %s,\n"
-"ALE TOTO JE POUZE EXPERIMENTÁLNÍ VERZE, A MŮŽE VÉST K NESTABILITĚ SYSTÉMU.\n"
-"Vaše karta je podporována i v XFree %s, kde může mít lepší podporu pro 2D."
-
-#: ../../Xconfigurator.pm_.c:248
+#: ../../Xconfigurator.pm_.c:332 ../../Xconfigurator.pm_.c:346
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support with XFree %s,\n"
@@ -80,32 +95,43 @@ msgstr ""
"S XFree %s může vaše karta využít 3D hardwarové akcelerace.ALE TOTO JE POUZE "
"EXPERIMENTÁLNÍ VERZE, A MŮŽE VÉST K NESTABILITĚ SYSTÉMU."
-#: ../../Xconfigurator.pm_.c:250
+#: ../../Xconfigurator.pm_.c:334 ../../Xconfigurator.pm_.c:348
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s s EXPERIMENTÁLNÍ 3D hardwarovou akcelerací"
-#: ../../Xconfigurator.pm_.c:265
+#: ../../Xconfigurator.pm_.c:343
+#, c-format
+msgid ""
+"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
+"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
+"Your card is supported by XFree %s which may have a better support in 2D."
+msgstr ""
+"Vaše karta podporuje 3D akceleraci, ale pouze s XFree %s,\n"
+"ALE TOTO JE POUZE EXPERIMENTÁLNÍ VERZE, A MŮŽE VÉST K NESTABILITĚ SYSTÉMU.\n"
+"Vaše karta je podporována i v XFree %s, kde může mít lepší podporu pro 2D."
+
+#: ../../Xconfigurator.pm_.c:363
msgid "XFree configuration"
msgstr "Nastavení XFree"
-#: ../../Xconfigurator.pm_.c:303
+#: ../../Xconfigurator.pm_.c:396
msgid "Select the memory size of your graphic card"
msgstr "Kolik paměti je na vaší grafické kartě ?"
-#: ../../Xconfigurator.pm_.c:347
+#: ../../Xconfigurator.pm_.c:443
msgid "Choose options for server"
msgstr "Zvolte možnosti pro daný X server"
-#: ../../Xconfigurator.pm_.c:358
+#: ../../Xconfigurator.pm_.c:460
msgid "Choose a monitor"
msgstr "Zvolte typ svého monitoru"
-#: ../../Xconfigurator.pm_.c:358
+#: ../../Xconfigurator.pm_.c:460
msgid "Monitor"
msgstr "Monitor"
-#: ../../Xconfigurator.pm_.c:361
+#: ../../Xconfigurator.pm_.c:463
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
@@ -126,44 +152,43 @@ msgstr ""
"\n"
"Je VELMI DŮLEŽITÉ abyste nezvolili typ monitoru se schopnostmi vyššími než "
"má\n"
-"Váš monitor, protože byste si ho tím mohli poškodit. Jestliže si nejste "
+"váš monitor, protože byste si ho tím mohli poškodit. Jestliže si nejste "
"jistí\n"
"zvolte raději typ s nižšími schopnostmi."
-#: ../../Xconfigurator.pm_.c:368
+#: ../../Xconfigurator.pm_.c:470
msgid "Horizontal refresh rate"
msgstr "Horizontální(řádková) synchronizace"
-#: ../../Xconfigurator.pm_.c:368
+#: ../../Xconfigurator.pm_.c:471
msgid "Vertical refresh rate"
msgstr "Vertikální(obrazovková) synchronizace"
-#: ../../Xconfigurator.pm_.c:407
+#: ../../Xconfigurator.pm_.c:508
msgid "Monitor not configured"
msgstr "Monitor není nastaven"
-#: ../../Xconfigurator.pm_.c:410
+#: ../../Xconfigurator.pm_.c:511
msgid "Graphic card not configured yet"
msgstr "Grafická karta ještě není nastavena"
-#: ../../Xconfigurator.pm_.c:413
+#: ../../Xconfigurator.pm_.c:514
msgid "Resolutions not chosen yet"
msgstr "Ještě nejsou zvolena rozlišení"
-#: ../../Xconfigurator.pm_.c:429
+#: ../../Xconfigurator.pm_.c:530
msgid "Do you want to test the configuration?"
msgstr "Chcete si vyzkoušet nastavení?"
-#: ../../Xconfigurator.pm_.c:433
-#, fuzzy
+#: ../../Xconfigurator.pm_.c:534
msgid "Warning: testing this graphic card may freeze your computer"
msgstr "Varování: na této grafické kartě je testování nebezpečné"
-#: ../../Xconfigurator.pm_.c:436
+#: ../../Xconfigurator.pm_.c:537
msgid "Test of the configuration"
msgstr "Vyzkoušet nastavení"
-#: ../../Xconfigurator.pm_.c:475
+#: ../../Xconfigurator.pm_.c:576
msgid ""
"\n"
"try to change some parameters"
@@ -171,196 +196,185 @@ msgstr ""
"\n"
"zkuste změnit některé parametry"
-#: ../../Xconfigurator.pm_.c:475
+#: ../../Xconfigurator.pm_.c:576
msgid "An error has occurred:"
msgstr "Vyskytla se tato chyba:"
-#: ../../Xconfigurator.pm_.c:497
+#: ../../Xconfigurator.pm_.c:598
#, c-format
msgid "Leaving in %d seconds"
msgstr "Test skončí automaticky za %d sekund"
-#: ../../Xconfigurator.pm_.c:507
+#: ../../Xconfigurator.pm_.c:609
msgid "Is this the correct setting?"
msgstr "Je to správné nastavení?"
-#: ../../Xconfigurator.pm_.c:515
+#: ../../Xconfigurator.pm_.c:617
msgid "An error has occurred, try to change some parameters"
msgstr "Vyskytla se chyba, zkuste změnit některé parametry"
-#: ../../Xconfigurator.pm_.c:552 ../../printerdrake.pm_.c:276
+#: ../../Xconfigurator.pm_.c:663 ../../printerdrake.pm_.c:277
+#: ../../services.pm_.c:125
msgid "Resolution"
msgstr "Rozlišení"
-#: ../../Xconfigurator.pm_.c:587
+#: ../../Xconfigurator.pm_.c:710
msgid "Choose the resolution and the color depth"
msgstr "Vyberte si rozlišení a barevnou hloubku"
-#: ../../Xconfigurator.pm_.c:589
+#: ../../Xconfigurator.pm_.c:712
#, c-format
msgid "Graphic card: %s"
msgstr "Grafická karta: %s"
-#: ../../Xconfigurator.pm_.c:590
+#: ../../Xconfigurator.pm_.c:713
#, c-format
msgid "XFree86 server: %s"
msgstr "XFree86 server: %s"
-#: ../../Xconfigurator.pm_.c:599
+#: ../../Xconfigurator.pm_.c:729 ../../standalone/draknet_.c:280
+#: ../../standalone/draknet_.c:283
+msgid "Expert Mode"
+msgstr "Expertní režim"
+
+#: ../../Xconfigurator.pm_.c:730
msgid "Show all"
msgstr "Ukázat vše"
-#: ../../Xconfigurator.pm_.c:623
+#: ../../Xconfigurator.pm_.c:773
msgid "Resolutions"
msgstr "Rozlišení"
-#: ../../Xconfigurator.pm_.c:1021
+#: ../../Xconfigurator.pm_.c:1299
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Rozložení klávesnice: %s\n"
-#: ../../Xconfigurator.pm_.c:1022
+#: ../../Xconfigurator.pm_.c:1300
#, c-format
msgid "Mouse type: %s\n"
msgstr "Typ myši: %s\n"
-#: ../../Xconfigurator.pm_.c:1023
+#: ../../Xconfigurator.pm_.c:1301
#, c-format
msgid "Mouse device: %s\n"
-msgstr "Přípojka myši: %s\n"
+msgstr "Přípojení myši: %s\n"
-#: ../../Xconfigurator.pm_.c:1024
+#: ../../Xconfigurator.pm_.c:1302
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"
-#: ../../Xconfigurator.pm_.c:1025
+#: ../../Xconfigurator.pm_.c:1303
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Horizontální frekvence monitoru: %s\n"
-#: ../../Xconfigurator.pm_.c:1026
+#: ../../Xconfigurator.pm_.c:1304
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Vertikální frekvence monitoru: %s\n"
-#: ../../Xconfigurator.pm_.c:1027
+#: ../../Xconfigurator.pm_.c:1305
#, c-format
msgid "Graphic card: %s\n"
msgstr "Grafická karta: %s\n"
-#: ../../Xconfigurator.pm_.c:1028
+#: ../../Xconfigurator.pm_.c:1306
#, c-format
msgid "Graphic memory: %s kB\n"
msgstr "Paměť na gr. kartě: %s kB\n"
-#: ../../Xconfigurator.pm_.c:1030
-#, fuzzy, c-format
+#: ../../Xconfigurator.pm_.c:1308
+#, c-format
msgid "Color depth: %s\n"
-msgstr "Možnosti Barevné hloubky"
+msgstr "Barevná hloubka: %s\n"
-#: ../../Xconfigurator.pm_.c:1031
-#, fuzzy, c-format
+#: ../../Xconfigurator.pm_.c:1309
+#, c-format
msgid "Resolution: %s\n"
-msgstr "Rozlišení"
+msgstr "Rozlišení: %s\n"
-#: ../../Xconfigurator.pm_.c:1033
+#: ../../Xconfigurator.pm_.c:1311
#, c-format
msgid "XFree86 server: %s\n"
msgstr "XFree86 server: %s\n"
-#: ../../Xconfigurator.pm_.c:1034
-#, fuzzy, c-format
+#: ../../Xconfigurator.pm_.c:1312
+#, c-format
msgid "XFree86 driver: %s\n"
-msgstr "XFree86 server: %s\n"
+msgstr "XFree86 ovladač: %s\n"
-#: ../../Xconfigurator.pm_.c:1053
+#: ../../Xconfigurator.pm_.c:1331
msgid "Preparing X-Window configuration"
msgstr "Připravuji nastavení X-Window"
-#: ../../Xconfigurator.pm_.c:1067
+#: ../../Xconfigurator.pm_.c:1351
+msgid "What do you want to do?"
+msgstr "Co chcete dělat?"
+
+#: ../../Xconfigurator.pm_.c:1356
msgid "Change Monitor"
msgstr "Změnit monitor"
-#: ../../Xconfigurator.pm_.c:1068
+#: ../../Xconfigurator.pm_.c:1357
msgid "Change Graphic card"
msgstr "Změnit grafickou kartu"
-#: ../../Xconfigurator.pm_.c:1069
+#: ../../Xconfigurator.pm_.c:1359
msgid "Change Server options"
msgstr "Změnit parametry X Serveru"
-#: ../../Xconfigurator.pm_.c:1070
+#: ../../Xconfigurator.pm_.c:1360
msgid "Change Resolution"
-msgstr "Změnit Rozlišení"
+msgstr "Změnit rozlišení"
-#: ../../Xconfigurator.pm_.c:1071
+#: ../../Xconfigurator.pm_.c:1361
msgid "Show information"
-msgstr "Zobraz informace"
+msgstr "Zobrazit informace"
-#: ../../Xconfigurator.pm_.c:1072
+#: ../../Xconfigurator.pm_.c:1362
msgid "Test again"
-msgstr "Znovu vyzkoušej nastavení X"
+msgstr "Znovu vyzkoušet nastavení X"
-#: ../../Xconfigurator.pm_.c:1073 ../../standalone/rpmdrake_.c:46
+#: ../../Xconfigurator.pm_.c:1363 ../../bootlook.pm_.c:220
msgid "Quit"
msgstr "Konec"
-#: ../../Xconfigurator.pm_.c:1077 ../../standalone/drakboot_.c:40
-msgid "What do you want to do?"
-msgstr "Co chcete dělat?"
-
-#: ../../Xconfigurator.pm_.c:1084
-#, fuzzy, c-format
+#: ../../Xconfigurator.pm_.c:1371
+#, c-format
msgid ""
"Keep the changes?\n"
"Current configuration is:\n"
"\n"
"%s"
-msgstr "Ponechat stávající nastavení IP"
+msgstr ""
+"Zachovat změny?\n"
+"Aktuální konfigurace je:\n"
+"\n"
+"%s"
-#: ../../Xconfigurator.pm_.c:1105
+#: ../../Xconfigurator.pm_.c:1392
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Pro aktivaci změn se prosím znovu přihlaste na %s"
-#: ../../Xconfigurator.pm_.c:1125
+#: ../../Xconfigurator.pm_.c:1412
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Prosím odhlaste se a pak stiskněte Ctrl-Alt-Backspace"
-#: ../../Xconfigurator.pm_.c:1128
+#: ../../Xconfigurator.pm_.c:1415
msgid "X at startup"
msgstr "Spouští se X"
-#: ../../Xconfigurator.pm_.c:1129
+#: ../../Xconfigurator.pm_.c:1416
msgid ""
"I can set up your computer to automatically start X upon booting.\n"
"Would you like X to start when you reboot?"
msgstr ""
-"Můžu nastavit Váš počítač tak, aby automaticky spustil X při startu.\n"
+"Můžu nastavit váš počítač tak, aby automaticky spustil X při startu.\n"
"Chcete aby počítač po zapnutí spustil grafický režim?"
-#: ../../Xconfigurator.pm_.c:1153
-msgid "Autologin"
-msgstr "Autologin"
-
-#: ../../Xconfigurator.pm_.c:1154
-msgid ""
-"I can set up your computer to automatically log on one user.\n"
-"If you don't want to use this feature, click on the cancel button."
-msgstr ""
-"Můžu nastavit Váš počítač tak, aby se automaticky přihlašoval jako\n"
-"uživatel. Pokud nechcete použít tuto možnost, klikněte na tlačítko Zrušit."
-
-#: ../../Xconfigurator.pm_.c:1156
-msgid "Choose the default user:"
-msgstr "Zvolte standardního uživatele :"
-
-#: ../../Xconfigurator.pm_.c:1157
-#, fuzzy
-msgid "Choose the window manager to run:"
-msgstr "Vyberte si který správce oken má být spouštěn:"
-
#: ../../Xconfigurator_consts.pm_.c:6
msgid "256 colors (8 bits)"
msgstr "256 barev (8 bitů)"
@@ -409,163 +423,212 @@ msgstr "8 MB"
msgid "16 MB or more"
msgstr "16 MB nebo více"
-#: ../../Xconfigurator_consts.pm_.c:117 ../../Xconfigurator_consts.pm_.c:118
+#: ../../Xconfigurator_consts.pm_.c:120
msgid "Standard VGA, 640x480 at 60 Hz"
msgstr "Klasické VGA, 640x480 při 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:119
+#: ../../Xconfigurator_consts.pm_.c:121
msgid "Super VGA, 800x600 at 56 Hz"
msgstr "Super VGA, 800x600 při 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:120
+#: ../../Xconfigurator_consts.pm_.c:122
msgid "8514 Compatible, 1024x768 at 87 Hz interlaced (no 800x600)"
msgstr "Kompatibilní s 8514, 1024x768 při 87 Hz prokládaně (ne 800x600)"
-#: ../../Xconfigurator_consts.pm_.c:121
+#: ../../Xconfigurator_consts.pm_.c:123
msgid "Super VGA, 1024x768 at 87 Hz interlaced, 800x600 at 56 Hz"
msgstr "Super VGA, 1024x768 při 87 Hz prokládaně, 800x600 při 56 Hz"
-#: ../../Xconfigurator_consts.pm_.c:122
+#: ../../Xconfigurator_consts.pm_.c:124
msgid "Extended Super VGA, 800x600 at 60 Hz, 640x480 at 72 Hz"
msgstr "Lepší Super VGA, 800x600 při 60 Hz, 640x480 při 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:123
+#: ../../Xconfigurator_consts.pm_.c:125
msgid "Non-Interlaced SVGA, 1024x768 at 60 Hz, 800x600 at 72 Hz"
msgstr "Neprokládaná SVGA, 1024x768 při 60 Hz, 800x600 při 72 Hz"
-#: ../../Xconfigurator_consts.pm_.c:124
+#: ../../Xconfigurator_consts.pm_.c:126
msgid "High Frequency SVGA, 1024x768 at 70 Hz"
msgstr "Vysokofrekvenční SVGA, 1027x768 při 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:125
+#: ../../Xconfigurator_consts.pm_.c:127
msgid "Multi-frequency that can do 1280x1024 at 60 Hz"
msgstr "Multifrekvenční který umí 1280x1024 při 60 Hz"
-#: ../../Xconfigurator_consts.pm_.c:126
+#: ../../Xconfigurator_consts.pm_.c:128
msgid "Multi-frequency that can do 1280x1024 at 74 Hz"
msgstr "Multifrekvenční který umí 1280x1024 při 74 Hz"
-#: ../../Xconfigurator_consts.pm_.c:127
+#: ../../Xconfigurator_consts.pm_.c:129
msgid "Multi-frequency that can do 1280x1024 at 76 Hz"
msgstr "Multifrekvenční který umí 1280x1024 při 76 Hz"
-#: ../../Xconfigurator_consts.pm_.c:128
+#: ../../Xconfigurator_consts.pm_.c:130
msgid "Monitor that can do 1600x1200 at 70 Hz"
msgstr "Monitor který umí 1600x1200 při 70 Hz"
-#: ../../Xconfigurator_consts.pm_.c:129
+#: ../../Xconfigurator_consts.pm_.c:131
msgid "Monitor that can do 1600x1200 at 76 Hz"
msgstr "Monitor který umí 1600x1200 při 76 Hz"
-#: ../../any.pm_.c:91 ../../any.pm_.c:121 ../../any_new.pm_.c:91
-#: ../../any_new.pm_.c:121
+#: ../../any.pm_.c:99 ../../any.pm_.c:124
msgid "First sector of boot partition"
msgstr "První sektor zaváděcího diskového oddílu"
-#: ../../any.pm_.c:91 ../../any.pm_.c:121 ../../any.pm_.c:150
-#: ../../any_new.pm_.c:91 ../../any_new.pm_.c:121 ../../any_new.pm_.c:150
+#: ../../any.pm_.c:99 ../../any.pm_.c:124 ../../any.pm_.c:196
msgid "First sector of drive (MBR)"
msgstr "První sektor disku (MBR)"
-#: ../../any.pm_.c:95 ../../any_new.pm_.c:95
+#: ../../any.pm_.c:103
msgid "SILO Installation"
msgstr "Instalace SILO"
-#: ../../any.pm_.c:96 ../../any.pm_.c:102 ../../any_new.pm_.c:96
-#: ../../any_new.pm_.c:102
+#: ../../any.pm_.c:104 ../../any.pm_.c:117
msgid "Where do you want to install the bootloader?"
msgstr "Kam chcete nainstalovat zaváděcí program?"
-#: ../../any.pm_.c:101 ../../any_new.pm_.c:101
+#: ../../any.pm_.c:116
msgid "LILO/grub Installation"
msgstr "Instalace LILO/Grub"
-#: ../../any.pm_.c:111 ../../any_new.pm_.c:111
-#: ../../install_steps_interactive.pm_.c:736
-msgid "None"
-msgstr "Žádný"
+#: ../../any.pm_.c:128 ../../any.pm_.c:142
+msgid "SILO"
+msgstr "SILO"
+
+#: ../../any.pm_.c:130
+msgid "LILO with text menu"
+msgstr "LILO s textovou nabídkou"
-#: ../../any.pm_.c:111 ../../any_new.pm_.c:111
-msgid "Which bootloader(s) do you want to use?"
-msgstr "Které zaváděcí programy chcete použít?"
+#: ../../any.pm_.c:131 ../../any.pm_.c:142
+msgid "LILO with graphical menu"
+msgstr "LILO s grafickou nabídkou"
-#: ../../any.pm_.c:125 ../../any_new.pm_.c:125
+#: ../../any.pm_.c:134
+msgid "Grub"
+msgstr "Grub"
+
+#: ../../any.pm_.c:138
+msgid "Boot from DOS/Windows (loadlin)"
+msgstr "Spuštění s DOS/Windows (loadlin)"
+
+#: ../../any.pm_.c:140 ../../any.pm_.c:142
+msgid "Yaboot"
+msgstr "Yaboot"
+
+#: ../../any.pm_.c:148 ../../any.pm_.c:179
+msgid "Bootloader main options"
+msgstr "Základní nastavení zaváděcího programu"
+
+#: ../../any.pm_.c:149 ../../any.pm_.c:180
+msgid "Bootloader to use"
+msgstr "Zaváděcí program"
+
+#: ../../any.pm_.c:151
msgid "Bootloader installation"
msgstr "Instalace zaváděcího programu"
-#: ../../any.pm_.c:127 ../../any_new.pm_.c:127
+#: ../../any.pm_.c:153 ../../any.pm_.c:182
msgid "Boot device"
msgstr "Startovací zařízení"
-#: ../../any.pm_.c:128 ../../any_new.pm_.c:128
+#: ../../any.pm_.c:154
msgid "LBA (doesn't work on old BIOSes)"
msgstr "LBA (nefunguje se starým BIOSem)"
-#: ../../any.pm_.c:129 ../../any_new.pm_.c:129
+#: ../../any.pm_.c:155
msgid "Compact"
msgstr "Kompaktní"
-#: ../../any.pm_.c:129 ../../any_new.pm_.c:129
+#: ../../any.pm_.c:155
msgid "compact"
msgstr "kompaktní"
-#: ../../any.pm_.c:130 ../../any.pm_.c:199 ../../any_new.pm_.c:130
-#: ../../any_new.pm_.c:199
+#: ../../any.pm_.c:156 ../../any.pm_.c:255
msgid "Video mode"
msgstr "Textový režim"
-#: ../../any.pm_.c:132 ../../any_new.pm_.c:132
+#: ../../any.pm_.c:158
msgid "Delay before booting default image"
msgstr "Prodleva před automatickým spuštěním"
-#: ../../any.pm_.c:134 ../../any_new.pm_.c:134
-#: ../../install_steps_interactive.pm_.c:764
-#: ../../install_steps_interactive.pm_.c:815 ../../netconnect.pm_.c:560
-#: ../../netconnect_new.pm_.c:686 ../../printerdrake.pm_.c:94
-#: ../../printerdrake.pm_.c:128 ../../standalone/adduserdrake_.c:42
+#: ../../any.pm_.c:160 ../../any.pm_.c:737
+#: ../../install_steps_interactive.pm_.c:904 ../../netconnect.pm_.c:627
+#: ../../printerdrake.pm_.c:98 ../../printerdrake.pm_.c:132
+#: ../../standalone/draknet_.c:567
msgid "Password"
msgstr "Heslo"
-#: ../../any.pm_.c:135 ../../any_new.pm_.c:135
-#: ../../install_steps_interactive.pm_.c:765
-#: ../../install_steps_interactive.pm_.c:816
-#: ../../standalone/adduserdrake_.c:43
+#: ../../any.pm_.c:161 ../../any.pm_.c:738
+#: ../../install_steps_interactive.pm_.c:905
msgid "Password (again)"
msgstr "Heslo (podruhé)"
-#: ../../any.pm_.c:136 ../../any_new.pm_.c:136
+#: ../../any.pm_.c:162
msgid "Restrict command line options"
msgstr "Omezení nastavení z příkazové řádky"
-#: ../../any.pm_.c:136 ../../any_new.pm_.c:136
+#: ../../any.pm_.c:162
msgid "restrict"
msgstr "omezení"
-#: ../../any.pm_.c:142 ../../any_new.pm_.c:142
-msgid "Bootloader main options"
-msgstr "Základní nastavení zaváděcího programu"
+#: ../../any.pm_.c:164
+msgid "Clean /tmp at each boot"
+msgstr "Vyčistit /tmp při každém startu"
+
+#: ../../any.pm_.c:165
+#, c-format
+msgid "Precise RAM size if needed (found %d MB)"
+msgstr "Pokud třeba, upřesněte velikost RAM (nalezeno %d MB)"
+
+#: ../../any.pm_.c:167
+msgid "Enable multi profiles"
+msgstr "Povolit více profilů"
-#: ../../any.pm_.c:145 ../../any_new.pm_.c:145
+#: ../../any.pm_.c:171
+msgid "Give the ram size in MB"
+msgstr "Zadejte velikost paměti v MB"
+
+#: ../../any.pm_.c:173
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Volba ``Omezení nastavení z příkazové řádky'' je bezpředmětné bez hesla"
-#: ../../any.pm_.c:146 ../../any_new.pm_.c:146
-#: ../../install_steps_interactive.pm_.c:774
-#: ../../install_steps_interactive.pm_.c:829
-#: ../../standalone/adduserdrake_.c:56
+#: ../../any.pm_.c:174 ../../any.pm_.c:714
+#: ../../install_steps_interactive.pm_.c:899
msgid "Please try again"
msgstr "Zkuste to znovu, prosím"
-#: ../../any.pm_.c:146 ../../any_new.pm_.c:146
-#: ../../install_steps_interactive.pm_.c:774
-#: ../../install_steps_interactive.pm_.c:829
-#: ../../standalone/adduserdrake_.c:56
+#: ../../any.pm_.c:174 ../../any.pm_.c:714
+#: ../../install_steps_interactive.pm_.c:899
msgid "The passwords do not match"
msgstr "Hesla nejsou shodná"
-#: ../../any.pm_.c:157 ../../any_new.pm_.c:157
+#: ../../any.pm_.c:181
+msgid "Init Message"
+msgstr "Úvodní zpráva"
+
+#: ../../any.pm_.c:183
+msgid "Open Firmware Delay"
+msgstr "Prodleva pro firmware"
+
+#: ../../any.pm_.c:184
+msgid "Kernel Boot Timeout"
+msgstr "Prodleva při spuštění"
+
+#: ../../any.pm_.c:185
+msgid "Enable CD Boot?"
+msgstr "Povolit spuštění z CD?"
+
+#: ../../any.pm_.c:186
+msgid "Enable OF Boot?"
+msgstr "Povolit zavaděč OF?"
+
+#: ../../any.pm_.c:187
+msgid "Default OS?"
+msgstr "Vychozí OS?"
+
+#: ../../any.pm_.c:209
msgid ""
"Here are the different entries.\n"
"You can add some more or change the existing ones."
@@ -573,143 +636,146 @@ msgstr ""
"Tady jsou všechny záznamy.\n"
"Můžete přidat další nebo změnit stávající."
-#: ../../any.pm_.c:165 ../../any_new.pm_.c:165 ../../printerdrake.pm_.c:352
-#: ../../standalone/rpmdrake_.c:302
+#: ../../any.pm_.c:219 ../../printerdrake.pm_.c:356
msgid "Add"
msgstr "Přidat"
-#: ../../any.pm_.c:165 ../../any_new.pm_.c:165 ../../diskdrake.pm_.c:46
-#: ../../install_steps_interactive.pm_.c:809 ../../netconnect.pm_.c:842
-#: ../../netconnect_new.pm_.c:984 ../../printerdrake.pm_.c:352
-#: ../../standalone/adduserdrake_.c:36
+#: ../../any.pm_.c:219 ../../any.pm_.c:725 ../../diskdrake.pm_.c:46
+#: ../../printerdrake.pm_.c:356
msgid "Done"
msgstr "Hotovo"
-#: ../../any.pm_.c:174 ../../any_new.pm_.c:174
+#: ../../any.pm_.c:219
+#, fuzzy
+msgid "Modify"
+msgstr "Změnit RAID"
+
+#: ../../any.pm_.c:227
msgid "Which type of entry do you want to add?"
msgstr "Jaký typ záznamu chcete přidat?"
-#: ../../any.pm_.c:175 ../../any_new.pm_.c:175
+#: ../../any.pm_.c:228
msgid "Linux"
msgstr "Linux"
-#: ../../any.pm_.c:175 ../../any_new.pm_.c:175
+#: ../../any.pm_.c:228
msgid "Other OS (SunOS...)"
msgstr "Jiný systém (SunOs...)"
-#: ../../any.pm_.c:175 ../../any_new.pm_.c:175
+#: ../../any.pm_.c:229
+msgid "Other OS (MacOS...)"
+msgstr "Jiný systém (MacOs...)"
+
+#: ../../any.pm_.c:229
msgid "Other OS (windows...)"
msgstr "Jiný systém (Windows...)"
-#: ../../any.pm_.c:196 ../../any_new.pm_.c:196
+#: ../../any.pm_.c:249 ../../any.pm_.c:251
msgid "Image"
msgstr "Obraz(image)"
-#: ../../any.pm_.c:197 ../../any.pm_.c:206 ../../any_new.pm_.c:197
-#: ../../any_new.pm_.c:206
+#: ../../any.pm_.c:252 ../../any.pm_.c:263
msgid "Root"
msgstr "Kořenový(root)"
-#: ../../any.pm_.c:198 ../../any_new.pm_.c:198
+#: ../../any.pm_.c:253 ../../any.pm_.c:282
msgid "Append"
msgstr "Připojit"
-#: ../../any.pm_.c:200 ../../any_new.pm_.c:200
+#: ../../any.pm_.c:257
msgid "Initrd"
msgstr "Initrd"
-#: ../../any.pm_.c:201 ../../any_new.pm_.c:201
+#: ../../any.pm_.c:258
msgid "Read-write"
msgstr "Pro čtení i zápis"
-#: ../../any.pm_.c:208 ../../any_new.pm_.c:208
+#: ../../any.pm_.c:265
msgid "Table"
msgstr "Tabulka"
-#: ../../any.pm_.c:209 ../../any_new.pm_.c:209
+#: ../../any.pm_.c:266
msgid "Unsafe"
msgstr "Nejistý"
-#: ../../any.pm_.c:215 ../../any_new.pm_.c:215
+#: ../../any.pm_.c:273 ../../any.pm_.c:278 ../../any.pm_.c:281
msgid "Label"
msgstr "Značka"
-#: ../../any.pm_.c:217 ../../any_new.pm_.c:217
+#: ../../any.pm_.c:275 ../../any.pm_.c:286
msgid "Default"
-msgstr "Standardní"
+msgstr "Výchozí"
-#: ../../any.pm_.c:220 ../../any_new.pm_.c:220 ../../install_gtk.pm_.c:82
-#: ../../install_steps_interactive.pm_.c:762 ../../interactive.pm_.c:76
-#: ../../interactive.pm_.c:86 ../../interactive.pm_.c:250
-#: ../../interactive_newt.pm_.c:51 ../../interactive_newt.pm_.c:99
-#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:243
-#: ../../my_gtk.pm_.c:486 ../../my_gtk.pm_.c:661 ../../printerdrake.pm_.c:444
-#: ../../printerdrake.pm_.c:464
-msgid "Ok"
-msgstr "Ok"
+#: ../../any.pm_.c:283
+msgid "Initrd-size"
+msgstr "Initrd-velikost"
-#: ../../any.pm_.c:220 ../../any_new.pm_.c:220
+#: ../../any.pm_.c:285
+msgid "NoVideo"
+msgstr "BezVidea"
+
+#: ../../any.pm_.c:293
msgid "Remove entry"
msgstr "Odstranit záznam"
-#: ../../any.pm_.c:223 ../../any_new.pm_.c:223
+#: ../../any.pm_.c:296
msgid "Empty label not allowed"
msgstr "Prázdná značka není povolena"
-#: ../../any.pm_.c:224 ../../any_new.pm_.c:224
+#: ../../any.pm_.c:297
msgid "This label is already used"
msgstr "Tato značka se již používá"
-#: ../../any.pm_.c:500 ../../any_new.pm_.c:492
+#: ../../any.pm_.c:316
+msgid "What type of partitioning?"
+msgstr "Jaký typ diskového oddílu?"
+
+#: ../../any.pm_.c:604
#, c-format
msgid "Found %s %s interfaces"
-msgstr "Našel jsem rozhraní %s %s"
+msgstr "Našel jsem %s %s rozhraní"
-#: ../../any.pm_.c:501 ../../any_new.pm_.c:493
+#: ../../any.pm_.c:605
msgid "Do you have another one?"
-msgstr "Máte ještě nějaký jiné?"
+msgstr "Máte ještě nějaké jiné?"
-#: ../../any.pm_.c:502 ../../any_new.pm_.c:494
+#: ../../any.pm_.c:606
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "Máte nějaké %s rozhraní?"
-#: ../../any.pm_.c:504 ../../any_new.pm_.c:496 ../../interactive.pm_.c:81
-#: ../../my_gtk.pm_.c:485 ../../netconnect.pm_.c:90 ../../netconnect.pm_.c:470
-#: ../../netconnect_new.pm_.c:148 ../../netconnect_new.pm_.c:509
-#: ../../printerdrake.pm_.c:233
+#: ../../any.pm_.c:608 ../../interactive.pm_.c:100 ../../my_gtk.pm_.c:615
+#: ../../printerdrake.pm_.c:237
msgid "No"
msgstr "Ne"
-#: ../../any.pm_.c:504 ../../any_new.pm_.c:496 ../../interactive.pm_.c:81
-#: ../../my_gtk.pm_.c:485 ../../netconnect.pm_.c:88 ../../netconnect.pm_.c:468
-#: ../../netconnect_new.pm_.c:146 ../../netconnect_new.pm_.c:507
+#: ../../any.pm_.c:608 ../../interactive.pm_.c:100 ../../my_gtk.pm_.c:615
msgid "Yes"
msgstr "Ano"
-#: ../../any.pm_.c:505 ../../any_new.pm_.c:497
+#: ../../any.pm_.c:609
msgid "See hardware info"
-msgstr "Podívejte se na informace o hardware"
+msgstr "Ukázat informace o hardware"
#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
-#: ../../any.pm_.c:522 ../../any_new.pm_.c:533
+#: ../../any.pm_.c:644
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Instaluji ovladač pro %s kartu %s"
-#: ../../any.pm_.c:523 ../../any_new.pm_.c:534
+#: ../../any.pm_.c:645
#, c-format
msgid "(module %s)"
msgstr "(modul %s)"
#. -PO: the %s is the driver type (scsi, network, sound,...)
-#: ../../any.pm_.c:534 ../../any_new.pm_.c:545
+#: ../../any.pm_.c:656
#, c-format
msgid "Which %s driver should I try?"
msgstr "Který %s ovladač mám zkusit?"
-#: ../../any.pm_.c:542 ../../any_new.pm_.c:553
+#: ../../any.pm_.c:664
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
@@ -729,20 +795,20 @@ msgstr ""
"nemělo\n"
"by v žádném případě způsobit jiné škody."
-#: ../../any.pm_.c:547 ../../any_new.pm_.c:558
+#: ../../any.pm_.c:669
msgid "Autoprobe"
msgstr "Automatické prozkoumání"
-#: ../../any.pm_.c:547 ../../any_new.pm_.c:558
+#: ../../any.pm_.c:669
msgid "Specify options"
msgstr "Zadejte možnosti"
-#: ../../any.pm_.c:551 ../../any_new.pm_.c:562
+#: ../../any.pm_.c:673
#, c-format
msgid "You may now provide its options to module %s."
msgstr "Nyní můžete poskytnout modulu %s další parametry."
-#: ../../any.pm_.c:557 ../../any_new.pm_.c:568
+#: ../../any.pm_.c:679
#, c-format
msgid ""
"You may now provide its options to module %s.\n"
@@ -753,11 +819,11 @@ msgstr ""
"Volby se zadávají ve tvaru ``jméno=hodnota jméno2=hodnota2 ...''.\n"
"Například, ``io=0x300 irq=7''"
-#: ../../any.pm_.c:560 ../../any_new.pm_.c:571
+#: ../../any.pm_.c:682
msgid "Module options:"
msgstr "Volby modulu:"
-#: ../../any.pm_.c:570 ../../any_new.pm_.c:581
+#: ../../any.pm_.c:693
#, c-format
msgid ""
"Loading module %s failed.\n"
@@ -766,13 +832,90 @@ msgstr ""
"Spuštění modulu %s selhalo.\n"
"Chcete to zkusit s jinými parametry?"
+#: ../../any.pm_.c:711
+#, c-format
+msgid "(already added %s)"
+msgstr "(už byl přidán %s)"
+
+#: ../../any.pm_.c:715
+msgid "This password is too simple"
+msgstr "Toto heslo je příliš jednoduché"
+
+#: ../../any.pm_.c:716
+msgid "Please give a user name"
+msgstr "Prosím zadejte uživatelské jméno"
+
+#: ../../any.pm_.c:717
+msgid ""
+"The user name must contain only lower cased letters, numbers, `-' and `_'"
+msgstr "Uživatelské jméno může obsahovat pouze malá písmena, čísla, `-' a `_'"
+
+#: ../../any.pm_.c:718
+msgid "This user name is already added"
+msgstr "Toto uživatelské jméno už bylo přidáno"
+
+#: ../../any.pm_.c:722
+msgid "Add user"
+msgstr "Přidat uživatele"
+
+#: ../../any.pm_.c:723
+#, c-format
+msgid ""
+"Enter a user\n"
+"%s"
+msgstr ""
+"Zadejte uživatele\n"
+"%s"
+
+#: ../../any.pm_.c:724
+msgid "Accept user"
+msgstr "Vytvořit uživatele"
+
+#: ../../any.pm_.c:735
+msgid "Real name"
+msgstr "Skutečné jméno"
+
+#: ../../any.pm_.c:736 ../../printerdrake.pm_.c:97
+#: ../../printerdrake.pm_.c:131
+msgid "User name"
+msgstr "Uživatelské jméno"
+
+#: ../../any.pm_.c:739
+msgid "Shell"
+msgstr "Shell"
+
+#: ../../any.pm_.c:741
+msgid "Icon"
+msgstr "Ikona"
+
+#: ../../any.pm_.c:762
+msgid "Autologin"
+msgstr "Autologin"
+
+#: ../../any.pm_.c:763
+msgid ""
+"I can set up your computer to automatically log on one user.\n"
+"If you don't want to use this feature, click on the cancel button."
+msgstr ""
+"Můžu nastavit váš počítač tak, aby se automaticky přihlašoval jako\n"
+"uživatel. Pokud nechcete použít tuto možnost, klikněte na tlačítko Zrušit."
+
+#: ../../any.pm_.c:765
+msgid "Choose the default user:"
+msgstr "Zvolte standardního uživatele :"
+
+#: ../../any.pm_.c:766
+msgid "Choose the window manager to run:"
+msgstr "Vyberte si, který správce oken má být spouštěn:"
+
# NOTE: this message will be displayed at boot time; that is
# only the ascii charset will be available on most machines
# so use only 7bit for this message (and do transliteration or
# leave it in English, as it is the best for your language)
-#
-#: ../../bootloader.pm_.c:234
-#, fuzzy, c-format
+#
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#: ../../bootloader.pm_.c:262
+#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
"\n"
@@ -780,12 +923,10 @@ msgid ""
"wait %d seconds for default boot.\n"
"\n"
msgstr ""
-"Vitejte v %s, v programu pro start operacniho systemu!\n"
+"Vita Vas %s, program pro start operacniho systemu!\n"
"\n"
-"Pro seznam moznych voleb stisknete <TAB>.\n"
-"\n"
-"Napiste jmeno vybraneho systemu a stisknete <ENTER>, nebo pockejte\n"
-"%d sekund do automatickeho startu.\n"
+"Vyberte si ze seznamu operacnich systemu nize nebo\n"
+"pockejte %d vterin pro automaticky start.\n"
"\n"
# NOTE: this message will be displayed by grub at boot time; that is
@@ -795,56 +936,235 @@ msgstr ""
#
# The lines must fit on screen, aka length < 80
#
-#: ../../bootloader.pm_.c:596
+#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
+#: ../../bootloader.pm_.c:795
msgid "Welcome to GRUB the operating system chooser!"
-msgstr "Vitejte v GRUBu, programu pro vyber operacniho systemu"
+msgstr "Vita Vas GRUB, program pro vyber operacniho systemu"
-#: ../../bootloader.pm_.c:597
+#: ../../bootloader.pm_.c:796
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Pro vyber polozek pouzijte klavesy %c a %c."
-#: ../../bootloader.pm_.c:598
+#: ../../bootloader.pm_.c:797
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Stisknete ENTER pro start vybraného OS, 'e' pro upravu"
-#: ../../bootloader.pm_.c:599
+#: ../../bootloader.pm_.c:798
msgid "commands before booting, or 'c' for a command-line."
msgstr "spoustecich parametru, nebo 'c' pro prikazovou radku."
-#: ../../bootloader.pm_.c:600
+#: ../../bootloader.pm_.c:799
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Vybrana polozka bude automaticky spustena za %d sekund."
-#: ../../bootloader.pm_.c:604
+#: ../../bootloader.pm_.c:803
msgid "not enough room in /boot"
-msgstr "není dost místa v /boot"
+msgstr "není dost místa v adresáři /boot"
#. -PO: "Desktop" and "Start Menu" are the name of the directories found in c:\windows
-#: ../../bootloader.pm_.c:696
+#: ../../bootloader.pm_.c:895
msgid "Desktop"
msgstr "Desktop"
-#: ../../bootloader.pm_.c:696
+#: ../../bootloader.pm_.c:895
msgid "Start Menu"
msgstr "Nabídka Start"
-#: ../../common.pm_.c:610
+#: ../../bootlook.pm_.c:46
+msgid "no help implemented yet.\n"
+msgstr "nápověda zatím nedostupná.\n"
+
+#: ../../bootlook.pm_.c:62
+msgid "Boot Style Configuration"
+msgstr "Nastavení stylu zavádění"
+
+#: ../../bootlook.pm_.c:79
+msgid "/_File"
+msgstr "_Soubor"
+
+#: ../../bootlook.pm_.c:81
+msgid "/File/_New"
+msgstr "/Soubor/_Nový"
+
+#: ../../bootlook.pm_.c:82
+msgid "<control>N"
+msgstr "<control>"
+
+#: ../../bootlook.pm_.c:84
+msgid "/File/_Open"
+msgstr "/Soubor/_Otevřít"
+
+#: ../../bootlook.pm_.c:85
+msgid "<control>O"
+msgstr "<control>O"
+
+#: ../../bootlook.pm_.c:87
+msgid "/File/_Save"
+msgstr "/Soubor/_Uložit"
+
+#: ../../bootlook.pm_.c:88
+msgid "<control>S"
+msgstr "<control>U"
+
+#: ../../bootlook.pm_.c:90
+msgid "/File/Save _As"
+msgstr "/Soubor/Uložit _jako"
+
+#: ../../bootlook.pm_.c:91
+msgid "/File/-"
+msgstr "/Soubor/-"
+
+#: ../../bootlook.pm_.c:93
+msgid "/File/_Quit"
+msgstr "/Soubor/_Konec"
+
+#: ../../bootlook.pm_.c:94
+msgid "<control>Q"
+msgstr "<control>K"
+
+#: ../../bootlook.pm_.c:96
+msgid "/_Options"
+msgstr "/_Volby"
+
+#: ../../bootlook.pm_.c:98
+msgid "/Options/Test"
+msgstr "/Volby/Test"
+
+#: ../../bootlook.pm_.c:99
+msgid "/_Help"
+msgstr "/_Nápověda"
+
+#: ../../bootlook.pm_.c:101
+msgid "/Help/_About..."
+msgstr "/Nápověda/O _aplikaci"
+
+#: ../../bootlook.pm_.c:111 ../../standalone/drakgw_.c:634
+#: ../../standalone/draknet_.c:262 ../../standalone/tinyfirewall_.c:57
+msgid "Configure"
+msgstr "Konfigurovat"
+
+#: ../../bootlook.pm_.c:114
+#, fuzzy, c-format
+msgid ""
+"You are currently using %s as Boot Manager.\n"
+"Click on Configure to launch the setup wizard."
+msgstr ""
+"Vítá vás průvodce nastavením sdílení připojení k Internetu!\n"
+"\n"
+"%s\n"
+"\n"
+"Klikněte na Konfigurovat, pokud chcete spustit průvodce nastavením."
+
+#: ../../bootlook.pm_.c:121
+msgid "Lilo/grub mode"
+msgstr "Režim Lilo/Grub"
+
+#: ../../bootlook.pm_.c:131
+msgid "NewStyle Categorizing Monitor"
+msgstr "Novější zatříděný monitor "
+
+#: ../../bootlook.pm_.c:134
+msgid "NewStyle Monitor"
+msgstr "Novější monitor"
+
+#: ../../bootlook.pm_.c:137
+msgid "Traditional Monitor"
+msgstr "Tradiční monitor"
+
+#: ../../bootlook.pm_.c:140
+msgid "Traditional Gtk+ Monitor"
+msgstr "Tradiční Gtk+ monitor"
+
+#: ../../bootlook.pm_.c:144
+msgid "Launch Aurora at boot time"
+msgstr "Spustit Auroru při startu"
+
+#: ../../bootlook.pm_.c:169
+msgid "Boot mode"
+msgstr "Startovací režim"
+
+#: ../../bootlook.pm_.c:179
+msgid "Launch the X-Window system at start"
+msgstr "Spustit X-Window při startu"
+
+#: ../../bootlook.pm_.c:187
+msgid "No, I don't want autologin"
+msgstr "Ne, nechci automatické přihlášení"
+
+#: ../../bootlook.pm_.c:193
+msgid "Yes, I want autologin with this (user, desktop)"
+msgstr "Ano, chci automatické přihlášení s tímto (uživatelem, desktopem)"
+
+#: ../../bootlook.pm_.c:210
+msgid "System mode"
+msgstr "Systémový režim"
+
+#: ../../bootlook.pm_.c:218 ../../standalone/draknet_.c:88
+#: ../../standalone/draknet_.c:120 ../../standalone/draknet_.c:184
+#: ../../standalone/draknet_.c:302 ../../standalone/draknet_.c:394
+#: ../../standalone/draknet_.c:471 ../../standalone/draknet_.c:507
+#: ../../standalone/draknet_.c:609
+msgid "OK"
+msgstr "OK"
+
+#: ../../bootlook.pm_.c:220 ../../install_steps_gtk.pm_.c:576
+#: ../../interactive.pm_.c:110 ../../interactive.pm_.c:265
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:357
+#: ../../my_gtk.pm_.c:360 ../../my_gtk.pm_.c:616
+#: ../../standalone/drakgw_.c:639 ../../standalone/draknet_.c:95
+#: ../../standalone/draknet_.c:127 ../../standalone/draknet_.c:295
+#: ../../standalone/draknet_.c:483 ../../standalone/draknet_.c:623
+#: ../../standalone/tinyfirewall_.c:63
+msgid "Cancel"
+msgstr "Zrušit"
+
+#: ../../bootlook.pm_.c:297
+msgid "can not open /etc/inittab for reading: $!"
+msgstr "nelze otevřít /etc/inittab pro čtení: $!"
+
+#: ../../bootlook.pm_.c:351
+msgid "can not open /etc/sysconfig/autologin for reading: $!"
+msgstr "nelze otevřít /etc/sysconfig/autologin pro čtení: $!"
+
+#: ../../bootlook.pm_.c:416 ../../standalone/drakboot_.c:47
+msgid "Installation of LILO failed. The following error occured:"
+msgstr "Instalace LILO neuspěla. Stala se tato chyba:"
+
+#: ../../common.pm_.c:634
+msgid "GB"
+msgstr "GB"
+
+#: ../../common.pm_.c:634
+msgid "KB"
+msgstr "KB"
+
+#: ../../common.pm_.c:634 ../../diskdrake.pm_.c:660
+#: ../../install_steps_graphical.pm_.c:287
+#: ../../install_steps_graphical.pm_.c:334
+msgid "MB"
+msgstr "MB"
+
+#: ../../common.pm_.c:642
+msgid "TB"
+msgstr "TB"
+
+#: ../../common.pm_.c:655
#, c-format
msgid "%d minutes"
-msgstr "%d minut"
+msgstr "%d minut(y)"
-#: ../../common.pm_.c:612
+#: ../../common.pm_.c:657
msgid "1 minute"
msgstr "1 minuta"
-#: ../../common.pm_.c:614
+#: ../../common.pm_.c:659
#, c-format
msgid "%d seconds"
msgstr "%d sekund"
-#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:427
+#: ../../diskdrake.pm_.c:21 ../../diskdrake.pm_.c:462
msgid "Create"
msgstr "Vytvořit"
@@ -852,7 +1172,7 @@ msgstr "Vytvořit"
msgid "Unmount"
msgstr "Odpojit"
-#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:429
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:464
msgid "Delete"
msgstr "Smazat"
@@ -860,16 +1180,16 @@ msgstr "Smazat"
msgid "Format"
msgstr "Formátovat"
-#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:610
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:653
msgid "Resize"
msgstr "Změnit velikost"
-#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:427
-#: ../../diskdrake.pm_.c:480
+#: ../../diskdrake.pm_.c:23 ../../diskdrake.pm_.c:462
+#: ../../diskdrake.pm_.c:518
msgid "Type"
msgstr "Změnit typ"
-#: ../../diskdrake.pm_.c:24 ../../diskdrake.pm_.c:500
+#: ../../diskdrake.pm_.c:24 ../../diskdrake.pm_.c:539
msgid "Mount point"
msgstr "Přípojný bod"
@@ -895,7 +1215,7 @@ msgstr "Uložit do souboru"
#: ../../diskdrake.pm_.c:43
msgid "Wizard"
-msgstr "Pomocník"
+msgstr "Průvodce"
#: ../../diskdrake.pm_.c:44
msgid "Restore from floppy"
@@ -909,23 +1229,23 @@ msgstr "Uložit na disketu"
msgid "Clear all"
msgstr "Vše smazat"
-#: ../../diskdrake.pm_.c:50
+#: ../../diskdrake.pm_.c:54
msgid "Format all"
msgstr "Naformátovat všechny"
-#: ../../diskdrake.pm_.c:51
+#: ../../diskdrake.pm_.c:55
msgid "Auto allocate"
msgstr "Automaticky rozmístit"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:59
msgid "All primary partitions are used"
msgstr "Všechny primární oddíly (partitions) jsou používány"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:59
msgid "I can't add any more partition"
msgstr "Nemůžu přidat žádný další oddíl"
-#: ../../diskdrake.pm_.c:54
+#: ../../diskdrake.pm_.c:59
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
@@ -934,63 +1254,60 @@ msgstr ""
"místě\n"
"vytvořit rozšířený(extended) oddíl"
-#: ../../diskdrake.pm_.c:57
-msgid "Rescue partition table"
-msgstr "Zachránit tabulku oddílů"
+#: ../../diskdrake.pm_.c:61
+msgid "Not enough space for auto-allocating"
+msgstr "Není dostatek místa pro automatické rozdělení disku"
-#: ../../diskdrake.pm_.c:58
+#: ../../diskdrake.pm_.c:63
msgid "Undo"
msgstr "Zpět"
-#: ../../diskdrake.pm_.c:59
+#: ../../diskdrake.pm_.c:64
msgid "Write partition table"
msgstr "Zapsat tabulku oddílů"
-#: ../../diskdrake.pm_.c:60
-msgid "Reload"
-msgstr "Obnovit"
+#: ../../diskdrake.pm_.c:65 ../../install_steps_interactive.pm_.c:185
+msgid "More"
+msgstr "Více"
-#: ../../diskdrake.pm_.c:101
-msgid "loopback"
-msgstr "loopback"
-
-#: ../../diskdrake.pm_.c:114
+#: ../../diskdrake.pm_.c:116
msgid "Ext2"
msgstr "Ext2"
-#: ../../diskdrake.pm_.c:114
+#: ../../diskdrake.pm_.c:116
msgid "FAT"
msgstr "FAT"
-#: ../../diskdrake.pm_.c:114
+#: ../../diskdrake.pm_.c:116
msgid "HFS"
msgstr "HFS"
-#: ../../diskdrake.pm_.c:114
+#: ../../diskdrake.pm_.c:116
msgid "SunOS"
msgstr "SunOs"
-#: ../../diskdrake.pm_.c:114
+#: ../../diskdrake.pm_.c:116
msgid "Swap"
msgstr "Odkládací (swap)"
-#: ../../diskdrake.pm_.c:115
+#: ../../diskdrake.pm_.c:117
msgid "Empty"
msgstr "Prázdný"
-#: ../../diskdrake.pm_.c:115 ../../mouse.pm_.c:125
+#: ../../diskdrake.pm_.c:117 ../../install_steps_gtk.pm_.c:407
+#: ../../mouse.pm_.c:145
msgid "Other"
msgstr "Jiný"
-#: ../../diskdrake.pm_.c:121
+#: ../../diskdrake.pm_.c:123
msgid "Filesystem types:"
msgstr "Souborové systémy:"
-#: ../../diskdrake.pm_.c:130
+#: ../../diskdrake.pm_.c:132 ../../install_steps_gtk.pm_.c:577
msgid "Details"
msgstr "Detaily"
-#: ../../diskdrake.pm_.c:144
+#: ../../diskdrake.pm_.c:147
msgid ""
"You have one big FAT partition\n"
"(generally used by MicroSoft Dos/Windows).\n"
@@ -1003,17 +1320,17 @@ msgstr ""
"(klepněte na něj a potom na\n"
"\"Změnit velikost\")"
-#: ../../diskdrake.pm_.c:149
+#: ../../diskdrake.pm_.c:152
msgid "Please make a backup of your data first"
msgstr "Zálohujte si nejdřív svá data, prosím"
-#: ../../diskdrake.pm_.c:149 ../../diskdrake.pm_.c:166
-#: ../../diskdrake.pm_.c:175 ../../diskdrake.pm_.c:532
-#: ../../diskdrake.pm_.c:554
+#: ../../diskdrake.pm_.c:152 ../../diskdrake.pm_.c:170
+#: ../../diskdrake.pm_.c:179 ../../diskdrake.pm_.c:570
+#: ../../diskdrake.pm_.c:592
msgid "Read carefully!"
msgstr "Čtěte pozorně!"
-#: ../../diskdrake.pm_.c:152
+#: ../../diskdrake.pm_.c:155
msgid ""
"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
"enough)\n"
@@ -1022,77 +1339,81 @@ msgstr ""
"Jestliže chcete používat aboot, musíte nechat volné místo na začátku disku\n"
"(2048 sektorů stačí)"
-#: ../../diskdrake.pm_.c:166
+#: ../../diskdrake.pm_.c:170
msgid "Be careful: this operation is dangerous."
msgstr "Buďte opatrní: tato akce je nebezpečná."
-#: ../../diskdrake.pm_.c:203 ../../install_steps.pm_.c:73
-#: ../../install_steps_interactive.pm_.c:38
-#: ../../install_steps_interactive.pm_.c:315 ../../standalone/diskdrake_.c:60
-#: ../../standalone/rpmdrake_.c:294 ../../standalone/rpmdrake_.c:304
+#: ../../diskdrake.pm_.c:214 ../../install_steps.pm_.c:72
+#: ../../install_steps_interactive.pm_.c:37
+#: ../../install_steps_interactive.pm_.c:322 ../../standalone/diskdrake_.c:66
msgid "Error"
msgstr "Chyba"
-#: ../../diskdrake.pm_.c:227 ../../diskdrake.pm_.c:708
+#: ../../diskdrake.pm_.c:238 ../../diskdrake.pm_.c:748
msgid "Mount point: "
msgstr "Adresář připojení (mount point): "
-#: ../../diskdrake.pm_.c:228 ../../diskdrake.pm_.c:269
+#: ../../diskdrake.pm_.c:239 ../../diskdrake.pm_.c:298
msgid "Device: "
msgstr "Zařízení: "
-#: ../../diskdrake.pm_.c:229
+#: ../../diskdrake.pm_.c:240
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Písmeno v DOSu: %s (jenom odhad)\n"
-#: ../../diskdrake.pm_.c:230 ../../diskdrake.pm_.c:272
+#: ../../diskdrake.pm_.c:244 ../../diskdrake.pm_.c:251
+#: ../../diskdrake.pm_.c:301
msgid "Type: "
msgstr "Typ: "
-#: ../../diskdrake.pm_.c:231
+#: ../../diskdrake.pm_.c:248
+msgid "Name: "
+msgstr "Jméno: "
+
+#: ../../diskdrake.pm_.c:253
#, c-format
msgid "Start: sector %s\n"
msgstr "Začátek: sektor %s\n"
-#: ../../diskdrake.pm_.c:232
+#: ../../diskdrake.pm_.c:254
#, c-format
-msgid "Size: %d MB"
-msgstr "Velikost: %d MB"
+msgid "Size: %s"
+msgstr "Velikost: %s"
-#: ../../diskdrake.pm_.c:234
+#: ../../diskdrake.pm_.c:256
#, c-format
msgid ", %s sectors"
msgstr ", %s sektorů"
-#: ../../diskdrake.pm_.c:236
+#: ../../diskdrake.pm_.c:258
#, c-format
msgid "Cylinder %d to cylinder %d\n"
msgstr "Od cylindru %d do cylindru %d\n"
-#: ../../diskdrake.pm_.c:237
+#: ../../diskdrake.pm_.c:259
msgid "Formatted\n"
msgstr "Naformátovaný\n"
-#: ../../diskdrake.pm_.c:238
+#: ../../diskdrake.pm_.c:260
msgid "Not formatted\n"
msgstr "Nenaformátovaný\n"
-#: ../../diskdrake.pm_.c:239
+#: ../../diskdrake.pm_.c:261
msgid "Mounted\n"
msgstr "Připojený\n"
-#: ../../diskdrake.pm_.c:240
+#: ../../diskdrake.pm_.c:262
#, c-format
msgid "RAID md%s\n"
msgstr "RAID md%s\n"
-#: ../../diskdrake.pm_.c:241
+#: ../../diskdrake.pm_.c:264
#, c-format
msgid "Loopback file(s): %s\n"
msgstr "Loopback soubor(y): %s\n"
-#: ../../diskdrake.pm_.c:242
+#: ../../diskdrake.pm_.c:265
msgid ""
"Partition booted by default\n"
" (for MS-DOS boot, not for lilo)\n"
@@ -1100,80 +1421,117 @@ msgstr ""
"Standardní startovací oddíl\n"
" (Pro MS-DOS, ne pro LILO)\n"
-#: ../../diskdrake.pm_.c:244
+#: ../../diskdrake.pm_.c:267
#, c-format
msgid "Level %s\n"
msgstr "Úroveň %s\n"
-#: ../../diskdrake.pm_.c:245
+#: ../../diskdrake.pm_.c:268
#, c-format
msgid "Chunk size %s\n"
msgstr "Velikost bloku(chunk) %s\n"
-#: ../../diskdrake.pm_.c:246
+#: ../../diskdrake.pm_.c:269
#, c-format
msgid "RAID-disks %s\n"
msgstr "RAID disky %s\n"
-#: ../../diskdrake.pm_.c:248
+#: ../../diskdrake.pm_.c:271
#, c-format
msgid "Loopback file name: %s"
msgstr "Loopback soubor: %s"
-#: ../../diskdrake.pm_.c:265
+#: ../../diskdrake.pm_.c:274
+msgid ""
+"\n"
+"Chances are, this partition is\n"
+"a Driver partition, you should\n"
+"probably leave it alone.\n"
+msgstr ""
+"\n"
+"Tento oddíl je oddíl\n"
+"s ovladači, je lepší\n"
+"no nechat neporušený.\n"
+
+#: ../../diskdrake.pm_.c:277
+msgid ""
+"\n"
+"This special Bootstrap\n"
+"partition is for\n"
+"dual-booting your system.\n"
+msgstr ""
+"\n"
+"Tento speciální Boostrap\n"
+"oddíl je pro spuštění\n"
+"dalšího systému.\n"
+
+#: ../../diskdrake.pm_.c:294
msgid "Please click on a partition"
msgstr "Prosím klepněte na oddíl"
-#: ../../diskdrake.pm_.c:270
+#: ../../diskdrake.pm_.c:299
#, c-format
-msgid "Size: %d MB\n"
-msgstr "Velikost: %d MB\n"
+msgid "Size: %s\n"
+msgstr "Velikost: %s\n"
-#: ../../diskdrake.pm_.c:271
+#: ../../diskdrake.pm_.c:300
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Geometrie: %s cylindrů, %s hlav, %s sektorů\n"
-#: ../../diskdrake.pm_.c:273
+#: ../../diskdrake.pm_.c:302
+#, c-format
+msgid "LVM-disks %s\n"
+msgstr "LVM disky %s\n"
+
+#: ../../diskdrake.pm_.c:303
#, c-format
msgid "Partition table type: %s\n"
msgstr "Typ tabulky oddílů: %s\n"
-#: ../../diskdrake.pm_.c:274
+#: ../../diskdrake.pm_.c:304
#, c-format
msgid "on bus %d id %d\n"
msgstr "na sběrnici %d id %d\n"
-#: ../../diskdrake.pm_.c:290
+#: ../../diskdrake.pm_.c:320
msgid "Mount"
msgstr "Připojit"
-#: ../../diskdrake.pm_.c:292
+#: ../../diskdrake.pm_.c:322
msgid "Active"
msgstr "Aktivní"
-#: ../../diskdrake.pm_.c:294
+#: ../../diskdrake.pm_.c:324
msgid "Add to RAID"
msgstr "Přidat do RAIDu"
-#: ../../diskdrake.pm_.c:296
+#: ../../diskdrake.pm_.c:326
msgid "Remove from RAID"
msgstr "Odebrat z RAIDu"
-#: ../../diskdrake.pm_.c:298
+#: ../../diskdrake.pm_.c:328
msgid "Modify RAID"
msgstr "Změnit RAID"
-#: ../../diskdrake.pm_.c:300
+#: ../../diskdrake.pm_.c:330
+msgid "Add to LVM"
+msgstr "Přidat do LVMu"
+
+#: ../../diskdrake.pm_.c:332
+msgid "Remove from LVM"
+msgstr "Odebrat z LVMu"
+
+#: ../../diskdrake.pm_.c:334
msgid "Use for loopback"
msgstr "Použití loopbacku"
-#: ../../diskdrake.pm_.c:307
+#: ../../diskdrake.pm_.c:341
msgid "Choose action"
msgstr "Co uděláte ?"
# msgstr "Vyberte si činnost"
-#: ../../diskdrake.pm_.c:400
+#: ../../diskdrake.pm_.c:435
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
@@ -1185,7 +1543,7 @@ msgstr ""
"Buďto použijete LILO a nebude to fungovat, nebo nepoužijete LILO a tedy "
"nepotřebujete /boot"
-#: ../../diskdrake.pm_.c:404
+#: ../../diskdrake.pm_.c:439
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
@@ -1198,7 +1556,7 @@ msgstr ""
"manager),\n"
"přidejte ještě /boot oddíl"
-#: ../../diskdrake.pm_.c:410
+#: ../../diskdrake.pm_.c:445
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
@@ -1208,57 +1566,56 @@ msgstr ""
"S tím se není schopný vypořádat žádný zaváděcí program bez použití oddílu\n"
"/boot. Ujistěte se prosím, že tento oddíl máte."
-#: ../../diskdrake.pm_.c:427 ../../diskdrake.pm_.c:429
+#: ../../diskdrake.pm_.c:462 ../../diskdrake.pm_.c:464
#, c-format
msgid "Use ``%s'' instead"
msgstr "Místo toho použijte ``%s''"
-#: ../../diskdrake.pm_.c:432
+#: ../../diskdrake.pm_.c:468
msgid "Use ``Unmount'' first"
msgstr "Nejprve použijte ``Odpojit''"
-#: ../../diskdrake.pm_.c:433 ../../diskdrake.pm_.c:475
+#: ../../diskdrake.pm_.c:469 ../../diskdrake.pm_.c:513
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr "Tím že změníte typ oddílu %s přijdete o všechna jeho data"
-#: ../../diskdrake.pm_.c:445
+#: ../../diskdrake.pm_.c:481
msgid "Continue anyway?"
msgstr "Přesto chcete pokračovat?"
-#: ../../diskdrake.pm_.c:450
+#: ../../diskdrake.pm_.c:486
msgid "Quit without saving"
msgstr "Konec bez uložení"
-#: ../../diskdrake.pm_.c:450
+#: ../../diskdrake.pm_.c:486
msgid "Quit without writing the partition table?"
msgstr "Chcete skončit bez zapsání do tabulky oddílů?"
-#: ../../diskdrake.pm_.c:478
+#: ../../diskdrake.pm_.c:516
msgid "Change partition type"
msgstr "Změnit typ oddílu"
-#: ../../diskdrake.pm_.c:479
-#, fuzzy
+#: ../../diskdrake.pm_.c:517
msgid "Which filesystem do you want?"
-msgstr "Který systém chcete použít pro tisk?"
+msgstr "Který souborový systém chcete použít?"
-#: ../../diskdrake.pm_.c:482 ../../diskdrake.pm_.c:740
+#: ../../diskdrake.pm_.c:520 ../../diskdrake.pm_.c:780
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Nemůžete použít ReiserFS pro oddíl menší než 32MB"
-#: ../../diskdrake.pm_.c:498
+#: ../../diskdrake.pm_.c:537
#, c-format
msgid "Where do you want to mount loopback file %s?"
msgstr "Kam chcete připojit loopback %s?"
-#: ../../diskdrake.pm_.c:499
+#: ../../diskdrake.pm_.c:538
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Kam chcete připojit zařízení %s?"
-#: ../../diskdrake.pm_.c:504
+#: ../../diskdrake.pm_.c:542
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
@@ -1266,145 +1623,137 @@ msgstr ""
"Nemůžu smazat přípojný bod, protože tento oddíl je používán pro loopback.\n"
"Odstraňte nejprve loopback"
-#: ../../diskdrake.pm_.c:523
+#: ../../diskdrake.pm_.c:561
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr "Když naformátujete oddíl %s, ztratíte tím všechna jeho data"
-#: ../../diskdrake.pm_.c:525
+#: ../../diskdrake.pm_.c:563
msgid "Formatting"
msgstr "Formátuji"
-#: ../../diskdrake.pm_.c:526
+#: ../../diskdrake.pm_.c:564
#, c-format
msgid "Formatting loopback file %s"
msgstr "Formátuji soubor loopbacku %s"
-#: ../../diskdrake.pm_.c:527 ../../install_steps_interactive.pm_.c:402
+#: ../../diskdrake.pm_.c:565 ../../install_steps_interactive.pm_.c:430
#, c-format
msgid "Formatting partition %s"
msgstr "Formátuji oddíl %s"
-#: ../../diskdrake.pm_.c:532
+#: ../../diskdrake.pm_.c:570
msgid "After formatting all partitions,"
msgstr "Po naformátování všech oddílů,"
-#: ../../diskdrake.pm_.c:532
+#: ../../diskdrake.pm_.c:570
msgid "all data on these partitions will be lost"
msgstr "na nich budou všechna data ztracena"
-#: ../../diskdrake.pm_.c:538
+#: ../../diskdrake.pm_.c:576
msgid "Move"
msgstr "Přesunout"
-#: ../../diskdrake.pm_.c:539
+#: ../../diskdrake.pm_.c:577
msgid "Which disk do you want to move it to?"
msgstr "Na který disk chcete oddíl přesunout?"
-#: ../../diskdrake.pm_.c:540
+#: ../../diskdrake.pm_.c:578
msgid "Sector"
msgstr "Sektor"
-#: ../../diskdrake.pm_.c:541
+#: ../../diskdrake.pm_.c:579
msgid "Which sector do you want to move it to?"
msgstr "Na který sektor chcete oddíl přesunout?"
-#: ../../diskdrake.pm_.c:544
+#: ../../diskdrake.pm_.c:582
msgid "Moving"
msgstr "Přesouvám"
-#: ../../diskdrake.pm_.c:544
+#: ../../diskdrake.pm_.c:582
msgid "Moving partition..."
msgstr "Přesouvám oddíl..."
-#: ../../diskdrake.pm_.c:554
+#: ../../diskdrake.pm_.c:592
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Nová tabulka oddílů na disku %s bude zapsána!"
-#: ../../diskdrake.pm_.c:556
+#: ../../diskdrake.pm_.c:594
msgid "You'll need to reboot before the modification can take place"
msgstr "Aby se změny uplatnily budete muset restartovat počítač"
-#: ../../diskdrake.pm_.c:577
+#: ../../diskdrake.pm_.c:615
msgid "Computing FAT filesystem bounds"
msgstr "Počítám hranice souborového systému fat"
-#: ../../diskdrake.pm_.c:577 ../../diskdrake.pm_.c:637
+#: ../../diskdrake.pm_.c:615 ../../diskdrake.pm_.c:680
#: ../../install_interactive.pm_.c:107
msgid "Resizing"
msgstr "Měním velikost"
-#: ../../diskdrake.pm_.c:600
-#, fuzzy
+#: ../../diskdrake.pm_.c:643
msgid "This partition is not resizeable"
-msgstr "Na kterém oddílu chcete měnit velikost?"
+msgstr "Na tomto diskovém oddílu nelze měnit velikost"
-#: ../../diskdrake.pm_.c:605
+#: ../../diskdrake.pm_.c:648
msgid "All data on this partition should be backed-up"
msgstr "Všechna data z tohoto oddílu by měla být zálohována"
-#: ../../diskdrake.pm_.c:607
+#: ../../diskdrake.pm_.c:650
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr "Když změníte velikost oddílu %s, ztratíte tím všechna jeho data"
-#: ../../diskdrake.pm_.c:617
+#: ../../diskdrake.pm_.c:660
msgid "Choose the new size"
msgstr "Zvolte novou velikost"
-#: ../../diskdrake.pm_.c:617 ../../install_steps_graphical.pm_.c:287
-#: ../../install_steps_graphical.pm_.c:334
-#: ../../install_steps_interactive.pm_.c:518
-#: ../../partition_table_raw.pm_.c:101
-msgid "MB"
-msgstr "MB"
-
-#: ../../diskdrake.pm_.c:674
+#: ../../diskdrake.pm_.c:714
msgid "Create a new partition"
msgstr "Vytvořit nový oddíl"
-#: ../../diskdrake.pm_.c:700
+#: ../../diskdrake.pm_.c:740
msgid "Start sector: "
msgstr "Počáteční sektor: "
-#: ../../diskdrake.pm_.c:704 ../../diskdrake.pm_.c:779
+#: ../../diskdrake.pm_.c:744 ../../diskdrake.pm_.c:819
msgid "Size in MB: "
msgstr "Velikost v MB: "
-#: ../../diskdrake.pm_.c:707 ../../diskdrake.pm_.c:782
+#: ../../diskdrake.pm_.c:747 ../../diskdrake.pm_.c:822
msgid "Filesystem type: "
msgstr "Souborový systém: "
-#: ../../diskdrake.pm_.c:710
+#: ../../diskdrake.pm_.c:750
msgid "Preference: "
msgstr "Nastavení: "
-#: ../../diskdrake.pm_.c:758
+#: ../../diskdrake.pm_.c:798
msgid "This partition can't be used for loopback"
msgstr "Tento oddíl nemůže být použit pro loopback"
-#: ../../diskdrake.pm_.c:768
+#: ../../diskdrake.pm_.c:808
msgid "Loopback"
msgstr "Loopback"
-#: ../../diskdrake.pm_.c:778
+#: ../../diskdrake.pm_.c:818
msgid "Loopback file name: "
msgstr "Název souboru loopbacku:"
-#: ../../diskdrake.pm_.c:804
+#: ../../diskdrake.pm_.c:844
msgid "File already used by another loopback, choose another one"
msgstr "Soubor už je používán jiným loopbackem, zvolte si jiný"
-#: ../../diskdrake.pm_.c:805
+#: ../../diskdrake.pm_.c:845
msgid "File already exists. Use it?"
msgstr "Soubor už existuje. Mám ho použít?"
-#: ../../diskdrake.pm_.c:827 ../../diskdrake.pm_.c:843
+#: ../../diskdrake.pm_.c:867 ../../diskdrake.pm_.c:883
msgid "Select file"
msgstr "Zvolit soubor"
-#: ../../diskdrake.pm_.c:836
+#: ../../diskdrake.pm_.c:876
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
@@ -1412,11 +1761,11 @@ msgstr ""
"Záložní tabulka oddílů nemá stejnou velikost\n"
"Chcete přesto chcete pokračovat?"
-#: ../../diskdrake.pm_.c:844
+#: ../../diskdrake.pm_.c:884
msgid "Warning"
msgstr "Varování"
-#: ../../diskdrake.pm_.c:845
+#: ../../diskdrake.pm_.c:885
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
@@ -1424,79 +1773,112 @@ msgstr ""
"Vložte disketu do mechaniky\n"
"Všechna data na této disketě budou smazána"
-#: ../../diskdrake.pm_.c:856
+#: ../../diskdrake.pm_.c:896
msgid "Trying to rescue partition table"
msgstr "Pokouším se obnovit tabulku oddílů"
-#: ../../diskdrake.pm_.c:867
+#: ../../diskdrake.pm_.c:905
msgid "device"
msgstr "zařízení"
-#: ../../diskdrake.pm_.c:868
+#: ../../diskdrake.pm_.c:906
msgid "level"
msgstr "úroveň"
-#: ../../diskdrake.pm_.c:869
+#: ../../diskdrake.pm_.c:907
msgid "chunk size"
msgstr "Velikost bloku(chunk)"
-#: ../../diskdrake.pm_.c:881
+#: ../../diskdrake.pm_.c:919
msgid "Choose an existing RAID to add to"
msgstr "Zvolte existující RAID pro přidání"
-#: ../../diskdrake.pm_.c:882
+#: ../../diskdrake.pm_.c:920 ../../diskdrake.pm_.c:946
msgid "new"
msgstr "nový"
+#: ../../diskdrake.pm_.c:944
+msgid "Choose an existing LVM to add to"
+msgstr "Zvolte existující LVM pro přidání"
+
+#: ../../diskdrake.pm_.c:949
+msgid "LVM name?"
+msgstr "Jméno pro LVM?"
+
+#: ../../diskdrake.pm_.c:976
+msgid "Removable media automounting"
+msgstr "Automatické připojování vyjímatelných médií"
+
+#: ../../diskdrake.pm_.c:977
+msgid "Rescue partition table"
+msgstr "Zachránit tabulku oddílů"
+
+#: ../../diskdrake.pm_.c:979
+msgid "Reload"
+msgstr "Obnovit"
+
#: ../../fs.pm_.c:88 ../../fs.pm_.c:95 ../../fs.pm_.c:101 ../../fs.pm_.c:107
#, c-format
msgid "%s formatting of %s failed"
msgstr "%s formátování %s skončilo chybou"
-#: ../../fs.pm_.c:133
+#: ../../fs.pm_.c:135
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "nevím jak naformátovat %s na typ %s"
-#: ../../fs.pm_.c:218
+#: ../../fs.pm_.c:220
msgid "mount failed: "
msgstr "chyba připojování: "
-#: ../../fs.pm_.c:230
+#: ../../fs.pm_.c:232
#, c-format
msgid "error unmounting %s: %s"
msgstr "chyba odpojování %s: %s"
-#: ../../fsedit.pm_.c:235
+#: ../../fsedit.pm_.c:21
+msgid "simple"
+msgstr "jednoduchý"
+
+#: ../../fsedit.pm_.c:30
+msgid "server"
+msgstr "server"
+
+#: ../../fsedit.pm_.c:261
msgid "Mount points must begin with a leading /"
msgstr "Přípojné body (mount points) musí začínat '/'"
-#: ../../fsedit.pm_.c:238
+#: ../../fsedit.pm_.c:264
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Oddíl s přípojným bodem %s už existuje\n"
-#: ../../fsedit.pm_.c:246
+#: ../../fsedit.pm_.c:272
#, c-format
msgid "Circular mounts %s\n"
msgstr "Propletené přípojné body %s\n"
-#: ../../fsedit.pm_.c:258
+#: ../../fsedit.pm_.c:284
+#, c-format
+msgid "You can't use a LVM Logical Volume for mount point %s"
+msgstr "Nelze použít LVM Logického disku na připojený bod %s"
+
+#: ../../fsedit.pm_.c:285
msgid "This directory should remain within the root filesystem"
-msgstr ""
+msgstr "Tento adresář musí kromě kořenového souborového systému zůstat"
-#: ../../fsedit.pm_.c:259
+#: ../../fsedit.pm_.c:286
msgid "You need a true filesystem (ext2, reiserfs) for this mount point\n"
msgstr ""
"Pro tento přípojný bod potřebujete opravdový souborový systém (Ext2, "
"ReiserFS)\n"
-#: ../../fsedit.pm_.c:335
+#: ../../fsedit.pm_.c:368
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Chyba při otevírání %s pro zápis: %s"
-#: ../../fsedit.pm_.c:417
+#: ../../fsedit.pm_.c:452
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"
@@ -1504,12 +1886,11 @@ msgstr ""
"Stala se chyba - nebylo nalezeno žádné zařízení na kterém by se daly "
"vytvořit nové souborové systémy. Zkontrolujte prosím hardware"
-#: ../../fsedit.pm_.c:431
+#: ../../fsedit.pm_.c:466
msgid "You don't have any partitions!"
msgstr "Nemáte žádné oddíly!"
#: ../../help.pm_.c:9
-#, fuzzy
msgid ""
"Please choose your preferred language for installation and system usage."
msgstr "Zvolte si jazyk pro instalaci a používání systému."
@@ -1526,6 +1907,14 @@ msgid ""
"end without modifying your current\n"
"configuration."
msgstr ""
+"Pro pokračování v instalaci je nutné odsouhlasit licenci.\n"
+"\n"
+"\n"
+"Klikněte na \"Potvrdit\", pokud s ní souhlasíte.\n"
+"\n"
+"\n"
+"Klikněte na \"Odmítnout\", pokud s ní nesouhlasíte. Instalace skončí bez\n"
+"jakéhokoliv zásahu do aktuálního nastavení."
#: ../../help.pm_.c:22
msgid "Choose the layout corresponding to your keyboard from the list above"
@@ -1538,6 +1927,9 @@ msgid ""
"chose\n"
"them in list above. If you want select all, you just need to select \"All\"."
msgstr ""
+"Pokud plánujete po instalaci používat jiné jazyky (kromě toho, který jste\n"
+"si vybrali při instalaci), vyberte jej z následujícího seznamu.\n"
+"Lze také vybrat všechny jazyky volbou \"Všechny\"."
#: ../../help.pm_.c:30
msgid ""
@@ -1554,15 +1946,15 @@ msgid ""
"levels to install or update your\n"
"Linux-Mandrake operating system:\n"
"\n"
-"\t* Recommanded: if you have never installed a GNU/Linux operating system "
+"\t* Recommended: if you have never installed a GNU/Linux operating system "
"choose this. Installation will be\n"
"\t be very easy and you will be asked only on few questions.\n"
"\n"
"\n"
"\t* Customized: if you are familiar enough with GNU/Linux, you may choose "
"the primary usage (workstation, server,\n"
-"\t development) of your sytem. You will need to answer to more questions "
-"than in \"Recommanded\" installation\n"
+"\t development) of your system. You will need to answer to more questions "
+"than in \"Recommended\" installation\n"
"\t class, so you need to know how GNU/Linux works to choose this "
"installation class.\n"
"\n"
@@ -1577,6 +1969,36 @@ msgid ""
"knowledge in GNU/Linux. So, don't choose\n"
"\t this installation class unless you know what you are doing."
msgstr ""
+"Vyberte si volbu \"Instalovat\" pokud nemáte instalovánu žádnou předchozí\n"
+"verzi systému Linux-Mandrake nebo chcete používat více operačních systémů.\n"
+"\n"
+"\n"
+"Zvolte \"Aktualizovat\" pokud chcete aktualizovat předchozí verzi distribuce "
+"Linux-Mandrake.\n"
+"\n"
+"\n"
+"V závislosti na vašich znalostech GNU/Linuxu si můžete vybrat z "
+"následujících\n"
+"úrovní instalace nebo aktualizace operačního systému Linux-Mandrake:\n"
+"\n"
+"\n"
+"\t* Doporučená: volte pokud jste ještě nikdy neinstalovali GNU/Linux. "
+"Instalace bude velmi jednoduchá a budete dotázáni pouze na několik otázek.\n"
+"\n"
+"\n"
+"\t* Vlastní: jestliže znáte Linux, můžete si vybrat typické použití "
+"nainstalovaného systému (pracovní stanice, server, počítač pro vývoj).\n"
+"\t Budete dotázáni na více otázek než při Doporučené metodě, takže "
+"potřebujete vědět o Linuxu daleko více.\n"
+"\n"
+"\n"
+"\t* Expertní: jestliže jste dobře obeznámeni s GNU/Linuxem a chcete provést\n"
+"precizní nastavení instalace, je právě pro vás tato volba. Budete si moci\n"
+"vybrat typické použití vašeho systému stejně jako v případě \"Vlastní\" "
+"instalace.\n"
+"\t Odpovědi na otázky budou velmi těžké pro ty, kteří nemají velmi dobré "
+"znalosti GNU/Linuxu.\n"
+"\t Nevolte tuto volbu, pokud přesně nevíte, co děláte."
#: ../../help.pm_.c:56
msgid ""
@@ -1606,11 +2028,10 @@ msgstr ""
"\n"
" - Expert: Jestliže jste dobře obeznámeni s GNU/Linuxem a chcete provést\n"
"precizní nastavení instalace, je právě pro Vás tato volba. Budete si moci\n"
-"vybrat typické použití Vašeho systému stejně jako v případě \"Vlastní\"\n"
+"vybrat typické použití vašeho systému stejně jako v případě \"Vlastní\"\n"
"instalace."
#: ../../help.pm_.c:68
-#, fuzzy
msgid ""
"You must now define your machine usage. Choices are:\n"
"\n"
@@ -1633,24 +2054,26 @@ msgid ""
"\t server and so on. As such, do not expect any gimmicks (KDE, GNOME, etc.) "
"to be installed."
msgstr ""
-"Různé možnosti použití vašeho počítače (pokud jste zvolili \"Vlastní\"\n"
-"nebo \"Expert\" třídu instalace) jsou:\n"
+"Nyní musíte určit styl pouřitá počítače. Volby jsou následující:\n"
+"\n"
+"\t* Pracovní stanice: nejlepší volba, pokud s pošítašem pracujete kařdý den "
+"jak v práci\n"
+"\t tak i doma.\n"
+"\n"
"\n"
-" - Normální: Tato volba je pro obyčejné, každodenní používání počítače\n"
-" (kancelářské práce, tvorba obrázků, atd.). Nebude nainstalován žádný\n"
-" překladač (compiler) nebo vývojový nástroj.\n"
+"\t* Vývojovář: pokud plánujete používat počítač primárně pro vývoj "
+"softwaru,\n"
+"\t je tato volba ideální. Budete mít k dispozici kolekci softwaru pro "
+"kompilaci\n"
+"\t zdrojového kódu, ladění a vytváření softwarových balíčků.\n"
"\n"
-" - Vývojový: Tak jak říká název. Toto si zvolte pokud budete používat\n"
-" převážně pro vývoj software. Dostanete kompletní sadu programů pro\n"
-" kompilaci, ladění, formátování zdrojového kódu, vytváření balíčků, atd.\n"
"\n"
-" - Server: Počítač bude používán obecně jako server. Buď jako souborový\n"
-" (NFS, SMB), nebo jako tiskový (unixový lp protokol, nebo Windows\n"
-" SMB protokol), nebo jako ověřovací (NIS), databázový, atd. Neočekávejte\n"
-" žádné KDE nebo GNOME.\n"
+"\t* Server: počítač bude používán obecně jako server. Buď jako souborový\n"
+"\t (NFS, SMB) nebo jako tiskový (pro Unix nebo Windows)\n"
+"\t nebo jako ověřovací (NIS), či databázový, atd. Neočekávejte\n"
+"\t žádné KDE nebo GNOME."
#: ../../help.pm_.c:84
-#, fuzzy
msgid ""
"DrakX will attempt to look for PCI SCSI adapter(s). If DrakX\n"
"finds an SCSI adapter and knows which driver to use, it will be "
@@ -1683,25 +2106,25 @@ msgid ""
"(if you have it on your system)."
msgstr ""
"DrakX se nejdříve pokusí najít PCI SCSI adaptéry. Pokud nějaké najde,\n"
-"a bude vědět který ovladač pro ně použít, automaticky ho použije.\n"
+"a bude vědět, který ovladač pro ně použít, automaticky ho použije.\n"
"\n"
"\n"
-"Pokud je váš SCSI adaptér na ISA sběrnici, nebo je na sběrnici PCI ale "
-"DrakX\n"
-"neví který ovladač pro něj použít, a nebo nemáte žádný SCSI adaptér, budete\n"
-"dotázáni zda vůbec máte nějaký SCSI adaptér. Jestli žádný nemáte\n"
+"Pokud je váš SCSI adaptér na ISA sběrnici nebo je na sběrnici PCI ale DrakX\n"
+"neví, který ovladač pro něj použít, a nebo nemáte žádný SCSI adaptér, "
+"budete\n"
+"dotázáni, zda vůbec máte nějaký SCSI adaptér. Jestliže žádný nemáte,\n"
"odpovězte \"Ne\". V opačném případě se objeví seznam ovladačů, ze kterého\n"
-"si budete moct vybrat.\n"
+"si budete moci vybrat.\n"
"\n"
"\n"
-"Poté co jste si vybrali ovladač se Vás DrakX zeptá jestli pro něj\n"
+"Pokud si vybrerete ovladač, DrakX se zeptá, zda pro něj\n"
"chcete zadat nějaké informace. Nechat ovladač samostatně prozkoumat "
"hardware\n"
"většinou funguje dobře, proto to zkuste jako první věc.\n"
"\n"
"\n"
-"Pokud to nebude fungovat budete muset zadat další informace pro ovladač\n"
-"Pro další nápovědu se podívejte do instalační příručky, kde je popsáno\n"
+"Pokud to nebude fungovat, budete muset zadat další informace pro ovladač.\n"
+"Pro další nápovědu se podívejte do instalační příručky, kde je popsáno,\n"
"jak získat tyto informace z Windows (pokud je máte na počítači), z\n"
"dokumentace k hardware, nebo z internetové stránky výrobce (pokud máte\n"
"přístup k internetu."
@@ -1776,6 +2199,54 @@ msgid ""
"lose all your data very easily. So,\n"
"\t don't choose this solution unless you know what you are doing."
msgstr ""
+"V tomto bodě si musíte definovat, na které diskové oddíly budete\n"
+"instalovat nový operační systém Linux-Mandrake. Pokud je disk prázdný\n"
+"nebo existující operační systém používá celý disk, je nutné ho rozdělit.\n"
+"Rozdělení disku spočívá ve vytvoření volného prostoru pro instalaci\n"
+"Linux-Mandrake.\n"
+"\n"
+"\n"
+"Protože rozděllení disku je nenávratná operace, je to velmi nebezpečná\n"
+"akce pro ty uživatele, kteří nemají žádné zkušenosti.\n"
+"Pro tyto uživatele je dobrý průvodce, který zjednoduší daný proces.\n"
+"Ještě před započetím rozdělování disku si pročtěte manuál.\n"
+"\n"
+"\n"
+"Potřebujete vytvořit nejméně dva diskové oddíly. Jeden je pro vlastní "
+"operační systém a druhý oddíl slouží jako vituální paměť, tzv. Swap.\n"
+"\n"
+"\n"
+"Pokud máte již vytvořeny diskové oddíly z předchozích instalací nebo\n"
+"od jiných diskových nástrojů, lze je nyní použít pro instalaci.\n"
+"\n"
+"\n"
+"Pokud nejsou definovány žádné diskové oddíly, je nutné je vytvořit.\n"
+"K tomu slouží průvodce, který provede několik řešení:\n"
+"\n"
+"\t* Použít existující oddíly: průvodce detekoval jeden nebo více "
+"existujících Linuxových oddílů a použijí se pro instalaci.\n"
+"\n"
+"\n"
+"\t* Zrušit celý disk: pokud chcete smazat veškerá data a všechny oddíly na "
+"disku a použít je pro instalaci systému Linux-Mandrake,\n"
+"\t vyberte toto řešení. Zde postupujte opatrně, po výběru již není možné "
+"vzít volbu zpět.\n"
+"\n"
+"\t* Použít volné místo na oddíle s Windows: pokud máte na disku "
+"nainstalovány Microsoft Windows a zabírají celý disk, je možné\n"
+"\t tento prostor změnšit a použít ho pro instalaci.\n"
+"\t Změna velikost oddílu je provedena bez ztráty dat. Toto je doporučený "
+"postup, pokud chcete na disku provozovat jak systém\n"
+"Linux-Mnadrake tak i Microsoft Windows.\n"
+"\n"
+"\n"
+"\t Před touto volbou si uvědomte, že velikost oddílu s Microsoft Windows "
+"bude menší než je nyní. To znamená, že budete mít méně\n"
+"\t místa pro instalaci programů do Microsoft Windows.\n"
+"\n"
+"\t* Expertní režim: rozdělení disku můžete provést manuálně.\n"
+"\t Před touto volbou buďte opatrní, je sice mocná ale nebezpečná.\n"
+"\t Nedoporučuje se těm, kteří přesně nevědí, co dělají."
#: ../../help.pm_.c:160
msgid ""
@@ -1802,7 +2273,7 @@ msgid ""
"hard drive.\n"
"\n"
"\n"
-" * Auto allocate:: this option allows you to automatically create Ext2 and "
+" * Auto allocate: this option allows you to automatically create Ext2 and "
"swap partitions in free space of your\n"
" hard drive.\n"
"\n"
@@ -1849,10 +2320,83 @@ msgid ""
"\n"
" * Ctrl-d to delete a partition\n"
"\n"
-" * Ctrl-m to set the mount point"
+" * Ctrl-m to set the mount point\n"
+" \n"
+"\n"
+" \n"
+"If you are installing on a PPC Machine, you will want to create a small HFS "
+"'bootstrap' partition of at least 1MB for use\n"
+"by the yaboot bootloader. If you opt to make the partition a bit larger, say "
+"50MB, you may find it a useful place to store \n"
+"a spare kernel and ramdisk image for emergency boot situations."
msgstr ""
+"V tomto bodě si musíte definovat, na které diskové oddíly budete\n"
+"instalovat nový operační systém Linux-Mandrake. Pokud již máte diskové\n"
+"oddíly definovány (např. z dřívější instalace GNU/Linuxu nebo jiným\n"
+"diskovým nástrojem), můžete je bez obav použít. V jiných případech\n"
+"musí být diskové oddíly na disku vytvořeny.\n"
+"\n"
+"\n"
+"Pro vytvoření diskových oddílů musíte nejdříve vybrat pevný disk. První\n"
+"IDE disk lze vybrat klinutím na \"hda\", druhý IDE disk \"hdb\",\n"
+"pro první SCSI disk zvolte \"sda\" atd.\n"
+"\n"
+"\n"
+"Rozdělit disk na oddíly lze několika způsoby:\n"
+"\n"
+" * Smazat vše: tato volba smaže všechna předchozí rozdělení na vybraném\n"
+" disku.\n"
+"\n"
+"\n"
+" * Automaticky rozmístit: tato volba dokáže automaticky rozmístit souborý "
+"systém\n"
+" ext2 a odkládací oddíl na volném místě na disku.\n"
+"\n"
+"\n"
+" * Obnovit: pokud máte poškozenou tabulku rozdělení disku, můžete zkusit "
+"její obnovu touto volbou. Buďte opatrní a mějte na paměti, že tato volba "
+"může selhat.\n"
+"\n"
+"\n"
+" * Zpět: touto volbou vrátíte zpět všechny provedené změny.\n"
+"\n"
+"\n"
+" * Průvodce: pokud chcete použít při rozdělování disku průvodce, zvolte\n"
+" tuto možnost. Je to doporučená volba, pokud nemáte žádné zkušenosti s "
+"rozdělováním disku.\n"
+"\n"
+"\n"
+" * Obnovit z diskety: pokud jste si uložili obsah tabulky rozdělení disku "
+" na disku při předchozí instalaci, lze ji nyní obnovit.\n"
+"\n"
+"\n"
+" * Uložit na disketu: pro obnovu tabulky rozdělení disku máte možnost si "
+"obsah tabulky uložit na disketu. Je doporučeno využít této volby.\n"
+"\n"
+"\n"
+" * Hotovo: při ukončení všech změn v rozdělení disku použijte tuto volbu "
+" pro uložení všech změn.\n"
+"\n"
+"\n"
+"Pro informaci: do všech nabídek se lze dostat pouřitím kláves Tab a "
+"kurzorových šipek Nahoru/Dolů.\n"
+"\n"
+"\n"
+"Pokud je vybrán diskový oddíl, lze použít:\n"
+"\n"
+" * Ctrl-c pro vytvoření nového diskové oddílu (pokud existuje prázdné "
+"místo na disku)\n"
+"\n"
+" * Ctrl-d pro zrušení oddílu\n"
+"\n"
+" * Ctrl-m pro zadání přípojného bodu\n"
+"\n"
+"Pokud instalujete na PowerPC, budete muset vytvořit malý HFS 'bootstrap' "
+"oddíl o velikosti minimálně 1MB, protože ho používá zavaděč yaboot.\n"
+"Pokud tento oddíl vytvoříte větší, řekněme o velikosti 50MB, bude to vhodné "
+"místo pro uložení obrazu jádra na disk při záchranných situacích."
-#: ../../help.pm_.c:218
+#: ../../help.pm_.c:224
msgid ""
"Above are listed the existing Linux partitions detected on\n"
"your hard drive. You can keep choices make by the wizard, they are good for "
@@ -1895,16 +2439,51 @@ msgid ""
"With SCSI hard drives, a \"a\" means \"primary hard drive\", a \"b\" means "
"\"secondary hard drive\", etc..."
msgstr ""
+"Níže je seznam existujících diskových oddílů tak, jak byl detekován.\n"
+"Změny provedené průvodcem lze v obvyklých případech takto nechat.\n"
+"Pokud chcete přesto provést změny, musíte zachovat nejméně kořenový\n"
+"oddíl (\"/\"). Nezmenšujte příliš velikost diskových oddílů, protože\n"
+"potom nebudete moci nainstalovat všechen potřebný software.\n"
+"Pokud chcete mít svá data na oddělením diskovém oddílu, vyberte také\n"
+"\"/home\" (přístupné pouze pokud máte více než jeden Linuxový oddíl).\n"
+"\n"
+"\n"
+"Pro informaci: každý diskový oddíl v seznamu má \"Jméno\" a \"Velikost\".\n"
+"\n"
+"\n"
+"\"Jméno\" je složeno následovně: \"typ pevného disku\", \"číslo disku\",\n"
+"\"číslo diskového oddílu\" (např. \"hda1\")\n"
+"\n"
+"\n"
+"\"Typ pevného disku\" je \"hd\" pro IDE zařízení a \"sd\" pro SCSI disk.\n"
+"\n"
+"\n"
+"\"Číslo disku\" je písmeno za \"hd\" nebo \"sd\". Pro IDE disky platí:\n"
+"\n"
+" * \"a\" znamená \"master disk na primárním IDE řadiči\",\n"
+"\n"
+" * \"b\" znamená \"slave disk na primárním IDE řadiči\",\n"
+"\n"
+" * \"c\" znamená \"master disk na sekundárním IDE řadiči\",\n"
+"\n"
+" * \"d\" znamená \"slave disk na sekundárním IDE řadiči\".\n"
+"\n"
+"\n"
+"Pro SCSI disky \"a\" znamená primární pevný disk, \"b\" znamená sekundární\n"
+"pevný disk, atd."
-#: ../../help.pm_.c:252
+#: ../../help.pm_.c:258
msgid ""
"Choose the hard drive you want to erase to install your\n"
"new Linux-Mandrake partition. Be careful, all data present on it will be "
"lost\n"
"and will not be recoverable."
msgstr ""
+"Vyberte si disk a diskový oddíl pro novou instalaci systému Linux-Mandrake.\n"
+"Mějte na paměti, že všechna souřasná data na disku budou ztracena\n"
+"a nelze je obnovit."
-#: ../../help.pm_.c:257
+#: ../../help.pm_.c:263
msgid ""
"Click on \"OK\" if you want to delete all data and\n"
"partitions present on this hard drive. Be careful, after clicking on \"OK\", "
@@ -1917,8 +2496,17 @@ msgid ""
"Click on \"Cancel\" to cancel this operation without losing any data and\n"
"partitions present on this hard drive."
msgstr ""
+"Klikněte na \"OK\", pokud chcete zrušit všechna soužasná data a diskové "
+"oddíly\n"
+"na disku. Buďte opatrní, po kliknutí na \"OK\" již nelze obnovit žádná "
+"data,\n"
+"která zde byla před instalací, všetně dat z Windows.\n"
+"\n"
+"\n"
+"Kliknutím na \"Zrušit\" zrušíte operaci bez ztráty dat a bez změny tabulky\n"
+"rozdělení disku."
-#: ../../help.pm_.c:267
+#: ../../help.pm_.c:273
msgid ""
"More than one Microsoft Windows partition have been\n"
"detected on your hard drive. Please choose the one you want resize to "
@@ -1959,12 +2547,44 @@ msgid ""
"disk\n"
"or partition is called \"C:\")."
msgstr ""
+"Byl detekován více než jeden oddíl s Microsoft Windows. Vyberte si prosím\n"
+"jeden z nich, kterému změníte velikost a bude se na něj instalovat\n"
+"operační systém Linux-Mandrake.\n"
+"\n"
+"\n"
+"Pro informaci: každý diskový oddíl má \"Jméno\", \"Windows jméno\"\n"
+"a \"Velikost\".\n"
+"\n"
+"\n"
+"\"Jméno\" je složeno následovně: \"typ pevného disku\", \"číslo disku\",\n"
+"\"číslo diskového oddílu\" (např. \"hda1\")\n"
+"\n"
+"\n"
+"\"Typ pevného disku\" je \"hd\" pro IDE zařízení a \"sd\" pro SCSI disk.\n"
+"\n"
+"\n"
+"\"Číslo disku\" je písmeno za \"hd\" nebo \"sd\". Pro IDE disky platí:\n"
+"\n"
+" * \"a\" znamená \"master disk na primárním IDE řadiči\",\n"
+"\n"
+" * \"b\" znamená \"slave disk na primárním IDE řadiči\",\n"
+"\n"
+" * \"c\" znamená \"master disk na sekundárním IDE řadiči\",\n"
+"\n"
+" * \"d\" znamená \"slave disk na sekundárním IDE řadiči\".\n"
+"\n"
+"\n"
+"Pro SCSI disky \"a\" znamená primární pevný disk, \"b\" znamená sekundární\n"
+"pevný disk, atd.\n"
+"\n"
+"\n"
+"\"Windows jméno\" jsou písmena počínaje písmenem \"C:\"."
-#: ../../help.pm_.c:300
+#: ../../help.pm_.c:306
msgid "Please be patient. This operation can take several minutes."
-msgstr ""
+msgstr "Buďte trpěliví. Tato operace může trvat několik minut."
-#: ../../help.pm_.c:303
+#: ../../help.pm_.c:309
msgid ""
"Any partitions that have been newly defined must be\n"
"formatted for use (formatting meaning creating a filesystem).\n"
@@ -1997,9 +2617,34 @@ msgid ""
"new\n"
"Linux-Mandrake operating system."
msgstr ""
+"Každý nově vytvořený diskový oddíl musí být před použitím zformátován\n"
+"(formátováním se myslí vytvoření souborového systému).\n"
+"\n"
+"\n"
+"Nyní lze formátovat již existující diskové oddíly pro vymazání\n"
+"všech dat, která obsahují. Pokud to chcete provést, vyberte diskové oddíly\n"
+"pro přeformátování.\n"
+"\n"
+"\n"
+"Není ale nutné přeformátovat všechny již existující diskové oddíly.\n"
+"Je nutné přeformátovat oddíly, které obsahují operační systém (jako je "
+"\"/\",\n"
+"\"/usr\" nebo \"/var\") ale není nutné přeformátovat oddíly, které obsahují\n"
+"data, která chcete zachovat (typicky /home).\n"
+"\n"
+"\n"
+"Při výběru diskových oddílů, které se budou formátovat buďte opatrní, "
+"všechna\n"
+"data na formátovaných oddílech budou ztracena a nelze je již obnovit\n"
+"\n"
+"\n"
+"Pokud je vše připraveno pro formátování, klikněte na \"OK\".\n"
+"\n"
+"\n"
+"Klikněte na \"Zrušit\" pokud chcete vybrat jiné oddíly pro instalaci\n"
+"systému Linux-Mandrake."
-#: ../../help.pm_.c:329
-#, fuzzy
+#: ../../help.pm_.c:335
msgid ""
"You may now select the group of packages you wish to\n"
"install or upgrade.\n"
@@ -2018,13 +2663,13 @@ msgstr ""
"Nyní si můžete vybrat skupiny balíčků pro instalaci nebo obnovení.\n"
"\n"
"DrakX potom otestuje, zda máte dostatek prostoru pro instalaci všech\n"
-"zvolených balíčků. Varuje vás pokud dostatek prostoru nemáte. Ale i přesto\n"
+"zvolených balíčků. Varuje vás, pokud dostatek prostoru nemáte. Ale i přesto\n"
"můžete pokračovat s tím, že DrakX nenainstaluje některé balíčky s nižší\n"
"prioritou. Na konci seznamu si můžete zvolit \"Výběr jednotlivých "
"balíčků\",\n"
"což znamená, že budete procházet více jak 1000 programů..."
-#: ../../help.pm_.c:341
+#: ../../help.pm_.c:347
msgid ""
"You can now choose individually all the packages you\n"
"wish to install.\n"
@@ -2044,9 +2689,23 @@ msgid ""
"silently\n"
"unselect several other packages which depend on it."
msgstr ""
+"Nyní si lze vybrat individuální balíčky, které chcete instalovat.\n"
+"\n"
+"\n"
+"Stromový seznam balíšků lze rozbalit a sbalit kliknutím na levý horní\n"
+"roh okna s nabídkou balíčků.\n"
+"\n"
+"\n"
+"Pokud dáváte přednost seřazeným podle abecedy, klikněte na ikonu\n"
+"\"Řadit podle abecedy\".\n"
+"\n"
+"\n"
+"Jestliže nechcete být následně při výběru balíčku varováni závislostmi,\n"
+"klikněte na \"Automatické závislosti\". Tato volba způsobí, že při výběru\n"
+"i zrušení výběru balíčku se výběre i zruší výběr všech závislých\n"
+"balíčků."
-#: ../../help.pm_.c:358
-#, fuzzy
+#: ../../help.pm_.c:364
msgid ""
"If you have all the CDs in the list above, click Ok. If you have\n"
"none of those CDs, click Cancel. If only some CDs are missing, unselect "
@@ -2055,9 +2714,9 @@ msgid ""
msgstr ""
"Pokud máte všechna CD vypsaná výše, klepněte na Ok.\n"
"Pokud nemáte žádné z nich, klepněte na Zrušit.\n"
-"Pokud Vám chybí pouze některé z nich, od-označte je, a zvolte Ok."
+"Pokud vám chybí pouze některé z nich, odoznačte je, a zvolte Ok."
-#: ../../help.pm_.c:363
+#: ../../help.pm_.c:369
msgid ""
"Your new Linux-Mandrake operating system is currently being\n"
"installed. This operation should take a few minutes (it depends on size you\n"
@@ -2066,24 +2725,33 @@ msgid ""
"\n"
"Please be patient."
msgstr ""
+"Nyní začne nová instalace operačního systému Linux-Mandrake.\n"
+"Tato operace může trvat několik desítek minut (záleží na množství\n"
+"balíčků, které jste si vybrali pro instalaci a rychlosti vašeho počítače).\n"
+"\n"
+"\n"
+"Mějte prosím trpělivost a vyčkejte."
-#: ../../help.pm_.c:371
+#: ../../help.pm_.c:377
msgid ""
"You can now test your mouse. Use buttons and wheel to verify\n"
"if settings are good. If not, you can click on \"Cancel\" to choose another\n"
"driver."
msgstr ""
+"Nyní můžete otestovat svoji myš. Použijte tlačítka i kolečko pro ověření,\n"
+"že je vše dobře nastaveno. Pokud ne, klikněte na \"Zrušit\" a vyberte si "
+"jiný\n"
+"ovladač."
-#: ../../help.pm_.c:376
-#, fuzzy
+#: ../../help.pm_.c:382
msgid ""
"Please select the correct port. For example, the COM1\n"
"port under MS Windows is named ttyS0 under GNU/Linux."
msgstr ""
-"Prosím zvolte sériový port. Například COM1 v MS Windows je pojmenován\n"
-"v GNU/Linuxu ttyS0."
+"Prosím zvolte správný sériový port. Například COM1\n"
+"v MS Windows je v GNU/Linuxu pojmenován ttyS0."
-#: ../../help.pm_.c:380
+#: ../../help.pm_.c:386
msgid ""
"If you wish to connect your computer to the Internet or\n"
"to a local network please choose the correct option. Please turn on your "
@@ -2100,8 +2768,19 @@ msgid ""
"have\n"
"finished to configure your network connection, choose \"Done\"."
msgstr ""
+"Pokud se chcete připojitk Internetu nebo k lokální síti, vyberte si\n"
+"správnou volbu. Před výběrem nejdříve zaponěnte dané ecterní zařízení,\n"
+"aby ho DrakX automaticky detekoval.\n"
+"\n"
+"\n"
+"Pokud nemáte připojení k Internetu nebo k lokální siti,\n"
+"vyberte volbu \"Vypnout síťové služby\".\n"
+"\n"
+"\n"
+"Pokud chcete nastavit síťové připojení po instalaci nebo již máte\n"
+"konfiguraci hotovou, vyberte \"Hotovo\"."
-#: ../../help.pm_.c:393
+#: ../../help.pm_.c:399
msgid ""
"No modem has been detected. Please select the serial port on which it is "
"plugged.\n"
@@ -2110,8 +2789,14 @@ msgid ""
"For information, the first serial port (called \"COM1\" under Microsoft\n"
"Windows) is called \"ttyS0\" under Linux."
msgstr ""
+"Nebyl detekován žádný modem. Vyberte prosím sériový port, na kterém je modem "
+"připojen.\n"
+"\n"
+"\n"
+"Pro informaci, první sériový port (nazvaný \"COM1\" v Microsoft Windows)\n"
+"je pojmenován v Linuxu \"ttyS0\"."
-#: ../../help.pm_.c:400
+#: ../../help.pm_.c:406
msgid ""
"You may now enter dialup options. If you don't know\n"
"or are not sure what to enter, the correct informations can be obtained "
@@ -2121,18 +2806,24 @@ msgid ""
"Service\n"
"Provider at connection time."
msgstr ""
+"Zde můžete zadat volby pro dialup připojení. Pokud nevíte co zadat, či si\n"
+"nejste jisti, zjistěte si správné informace od poskytovatele internetového\n"
+"připojení. Pokud nezadáte DNS (jmenný server), bude tato informace získána\n"
+"od poskytovatele při spojení."
-#: ../../help.pm_.c:407
+#: ../../help.pm_.c:413
msgid ""
"If your modem is an external modem, please turn on it now to let DrakX "
"detect it automatically."
msgstr ""
+"Pokud máte externí modem, zapněte jej, aby ho DrakX mohl automaticky "
+"detekovat."
-#: ../../help.pm_.c:410
+#: ../../help.pm_.c:416
msgid "Please turn on your modem and choose the correct one."
-msgstr ""
+msgstr "Zapněte prosím modem a vyberte správný typ."
-#: ../../help.pm_.c:413
+#: ../../help.pm_.c:419
msgid ""
"If you are not sure if informations above are\n"
"correct or if you don't know or are not sure what to enter, the correct\n"
@@ -2142,20 +2833,22 @@ msgid ""
"obtained\n"
"from your Internet Service Provider at connection time."
msgstr ""
+"Pokud nevíte, zda jsou předchozí informace správné nebo nevíte, co zadat,\n"
+"tak se obraťte na svého poskytovatele připojení pro správné informace.\n"
+"Když nezadáte informaci o DNS (jmenný server), bude tato informace získána "
+"od poskytovatele při připojení."
-#: ../../help.pm_.c:420
-#, fuzzy
+#: ../../help.pm_.c:426
msgid ""
"You may now enter your host name if needed. If you\n"
"don't know or are not sure what to enter, the correct informations can be\n"
"obtained from your Internet Service Provider."
msgstr ""
"Nyní můžete zadat parametry připojení k internetu přes modem. Pokud nevíte\n"
-"co zadat, můžete získat správné hodnoty od Vašeho internetového "
+"co zadat, můžete získat správné hodnoty od vašeho internetového "
"poskytovatele."
-#: ../../help.pm_.c:425
-#, fuzzy
+#: ../../help.pm_.c:431
msgid ""
"You may now configure your network device.\n"
"\n"
@@ -2173,57 +2866,57 @@ msgid ""
" \"IP address\". If you don't know or are not sure if you need to select "
"this option, ask your network administrator."
msgstr ""
-"Zadejte:\n"
+"Nyní lze nastavit síťové zařízení.\n"
"\n"
-" - IP adresa: jestliže ji neznáte, zeptejte se Vašeho správce sítě,\n"
+" * IP adresa: jestliže ji neznáte, zeptejte se vašeho správce sítě\n"
"nebo internetového poskytovatele.\n"
+" Nemusíte zadávat IP adresu pokud si zvolíte volbu \"Automatická IP\" "
+"níže.\n"
"\n"
-"\n"
-" - Síťová maska (netmask): Obyčejně se volí \"255.255.255.0\". Jestliže\n"
-"si nejste jisti, zeptejte se Vašeho správce sítě, nebo internetového\n"
+" * Síťová maska (netmask): Obyčejně se volí \"255.255.255.0\". Jestliže\n"
+"si nejste jisti, zeptejte se vašeho správce sítě nebo internetového\n"
"poskytovatele.\n"
"\n"
-" - Automatická IP: Zvolte tuto možnost, jestliže Vaše síť používá bootp\n"
-"nebo dhcp protokol. Do kolonky \"IP adresa\" nemusíte nic zapisovat.\n"
-"Pokud si nejste jistí, zeptejte se Vašeho správce sítě, nebo internetového\n"
-"poskytovatele.\n"
+" * Automatická IP: Zvolte tuto možnost, jestliže vaše síť používá BOOTP\n"
+"nebo DHCP protokol. Do kolonky \"IP adresa\" nemusíte nic zapisovat.\n"
+"Pokud si nejste jistí, zeptejte se vašeho správce sítě nebo internetového\n"
+"poskytovatele."
-#: ../../help.pm_.c:437
-#, fuzzy
+#: ../../help.pm_.c:443
msgid ""
"You may now enter your host name if needed. If you\n"
"don't know or are not sure what to enter, ask your network administrator."
msgstr ""
-"Jestliže Vaše síť používá NIS, zvolte \"Použij NIS\". Pokud si nejste "
-"jistí,\n"
-"zeptejte se Vašeho správce sítě."
+"Zde můžete zadat jméno počítače, pokud je to potřeba. Pokud ho neznáte\n"
+"nebo nevíte co zadat, zeptejte se vašeho správce sítě."
-#: ../../help.pm_.c:441
+#: ../../help.pm_.c:447
msgid ""
"You may now enter your host name if needed. If you\n"
"don't know or are not sure what to enter, leave blank."
msgstr ""
+"Zde můžete zadat jméno počítače, pokud je to potřeba. Pokud ho neznáte\n"
+"nebo nevíte co zadat, nechte políčko prázdné."
-#: ../../help.pm_.c:445
+#: ../../help.pm_.c:451
msgid ""
"You may now enter dialup options. If you're not sure what to enter, the\n"
"correct information can be obtained from your ISP."
msgstr ""
"Nyní můžete zadat parametry připojení k internetu přes modem. Pokud nevíte\n"
-"co zadat, můžete získat správné hodnoty od Vašeho internetového "
+"co zadat, můžete získat správné hodnoty od vašeho internetového "
"poskytovatele."
-#: ../../help.pm_.c:449
+#: ../../help.pm_.c:455
msgid ""
"If you will use proxies, please configure them now. If you don't know if\n"
"you should use proxies, ask your network administrator or your ISP."
msgstr ""
"Jestli budete používat proxy, nakonfigurujte je nyní, prosím. Když nevíte\n"
-"jestli proxy používat budete nebo ne, zeptejte se Vašeho správce sítě, nebo\n"
+"jestli proxy používat budete nebo ne, zeptejte se vašeho správce sítě, nebo\n"
"internetového poskytovatele."
-#: ../../help.pm_.c:453
-#, fuzzy
+#: ../../help.pm_.c:459
msgid ""
"You can install cryptographic package if your internet connection has been\n"
"set up correctly. First choose a mirror where you wish to download packages "
@@ -2235,18 +2928,18 @@ msgid ""
"to your legislation."
msgstr ""
"Pokud bylo připojení k internetu správně nakonfigurováno, můžete\n"
-"nainstalovat šifrovací balíčky. Nejprve si zvolte mirror ze kterého byste "
+"nainstalovat šifrovací balíčky. Nejprve si zvolte mirror, ze kterého byste "
"si\n"
-"rádi tyto balíčky stáhli a poté si zvolte které balíčky budete instalovat.\n"
+"rádi tyto balíčky stáhli a poté si zvolte, které balíčky budete instalovat.\n"
+"\n"
"\n"
"Poznámka: Mirror a balíčky si musíte zvolit podle místních zákonů"
-#: ../../help.pm_.c:462
+#: ../../help.pm_.c:468
msgid "You can now select your timezone according to where you live."
-msgstr ""
+msgstr "Nyní vyberte časovou zónu podle místa, kde žijete."
-#: ../../help.pm_.c:465
-#, fuzzy
+#: ../../help.pm_.c:471
msgid ""
"GNU/Linux manages time in GMT (Greenwich Manage\n"
"Time) and translates it in local time according to the time zone you have\n"
@@ -2255,15 +2948,13 @@ msgid ""
"\n"
"If you use Microsoft Windows on this computer, choose \"No\"."
msgstr ""
-"Nyní si můžete vybrat Vaše časové pásmo podle toho kde žijete.\n"
-"\n"
-"\n"
"GNU/Linux pracuje s časem v GMT (Greenwichský čas) a přepočítává ho na "
"místní,\n"
-"podle časového pásma, které si vyberete."
+"podle časového pásma, které si vyberete.\n"
+"\n"
+"Pokud používáte na počítači Microsoft Windows, vyberte \"Ne\"."
-#: ../../help.pm_.c:473
-#, fuzzy
+#: ../../help.pm_.c:479
msgid ""
"You may now choose which services you want to start at boot time.\n"
"\n"
@@ -2280,16 +2971,26 @@ msgid ""
"In general, select only the services that you really need."
msgstr ""
"Můžete si zvolit které služby mají být spuštěny při startu počítače.\n"
-"Pokud přejedete myší nad některou položku, objeví se malá nápověda s\n"
-"popisem co daná služba dělá."
+"\n"
+"\n"
+"Pokud přejedete myší nad některou položku, objeví se malá nápověda\n"
+"s popisem, co daná služba dělá.\n"
+"\n"
+"\n"
+"Rozvažte, co za služby spustit, zvláště pokud budete počítač provozovat\n"
+"jako server: nepotřebujete všechny služby. Pamatujte, že čím více služeb\n"
+"je spuštěno, tím je větší nebezpečí proniknutí do sítě. Takže povolte\n"
+"opravdu jen ty služby, které nezbytně potřebujete."
-#: ../../help.pm_.c:486
+#: ../../help.pm_.c:492
msgid ""
"You can configure a local printer (connected to your computer) or remote\n"
"printer (accessible via a Unix, Netware or Microsoft Windows network)."
msgstr ""
+"Zde lze konfigurovat lokální tiskárnu (připojenou k počítači) nebo\n"
+"vzdálenou tiskárnu (dostupnou přes Unix, Netware nebo Windows síť)."
-#: ../../help.pm_.c:490
+#: ../../help.pm_.c:496
msgid ""
"If you wish to be able to print, please choose one printing system between\n"
"CUPS and LPR.\n"
@@ -2307,8 +3008,21 @@ msgid ""
"\n"
"If you don't have printer, click on \"None\"."
msgstr ""
+"Pokud chcete tisknout, vyberte si mezi CUPS a LPR\n"
+"\n"
+"\n"
+"CUPS je nový, výkonný a flexibilní tiskový systém pro Unix (CUPS znamená\n"
+"\"Common Unix Printing System\"). Je to výchozí tiskový systém pro\n"
+"Linux-Mandrake.\n"
+"\n"
+"\n"
+"LPR je starší tiskový systém, používaný v předchozích verzích distribuce\n"
+"Linux-Mandrake.\n"
+"\n"
+"\n"
+"Pokud nemáte žádnou tiskárnu, klikněte na \"Žádná\"."
-#: ../../help.pm_.c:505
+#: ../../help.pm_.c:511
msgid ""
"GNU/Linux can deal with many types of printer. Each of these types requires\n"
"a different setup.\n"
@@ -2326,8 +3040,23 @@ msgid ""
"machine\n"
"(or on Unix machine using SMB protocol), select \"SMB/Windows 95/98/NT\"."
msgstr ""
+"GNU/Linux spolupracuje s více různými typy tiskáren. Každý z nich vyžaduje\n"
+"různé nastavení.\n"
+"\n"
+"\n"
+"Pokud je vaše tiskárna fyzicky připojena k počítači, vyberte \"Lokální\n"
+"tiskárna\".\n"
+"\n"
+"\n"
+"Pokud chcete přistupovat na tiskárnu připojenou ke vzdálenému Unix stroji,\n"
+"zvolte \"Vzdálená tiskárna\".\n"
+"\n"
+"\n"
+"Pokud chcete tisknout na tiskárně fyzicky připojené k počítači s Microsoft\n"
+"Windows (nebo na Unix stroji přes SMB prokotol), zvolte \n"
+"\"SMB/Windows 95/98/NT\"."
-#: ../../help.pm_.c:521
+#: ../../help.pm_.c:527
msgid ""
"Please turn on your printer before continuing to let DrakX detect it.\n"
"\n"
@@ -2352,8 +3081,27 @@ msgid ""
" printer location, put it here (you are free to write what\n"
" you want, for example \"2nd floor\").\n"
msgstr ""
+"Před dalším krokem zapněte prosím tiskárnu, aby ji DrakX mohl detekovat.\n"
+"\n"
+"Potřebujete zadat následující informace.\n"
+"\n"
+"\n"
+" * Jméno tiskárny: tisková spooler používá \"lp\" jako výchozí jméno pro "
+"jméno tiskárny. Takže musíte mít tiskárnu s tímto jménem.\n"
+" Pokud již tiskárnu máte, můžete ji přiřadit více jmen, která musí být "
+"oddělena znakem pipe (\"|\"). Pokud tedy preferujete lehce zapamatovatelná "
+"jména, můžete použít např. \"Moje tiskarna|lp\".\n"
+" Tiskárna, která má jméno \"lp\" je vždy výchozí tiskárnou.\n"
+"\n"
+"\n"
+" * Popis: nepovinné, ale užitečné, když potřebujete rozlišit více stejných "
+"tiskáren nebo dáváte svoji tiskárnu ke sdílení.\n"
+"\n"
+"\n"
+" * Umístění: zde lze zadat informace o tom, kde ji tiskárna umístěna\n"
+" (např. \"Druhé patro\").\n"
-#: ../../help.pm_.c:542
+#: ../../help.pm_.c:548
msgid ""
"You need to enter some informations here.\n"
"\n"
@@ -2386,8 +3134,34 @@ msgid ""
" If you want to acces a printer located on NetWare network, select "
"\"NetWare\".\n"
msgstr ""
+"Potřebujete zadat následující informace.\n"
+"\n"
+"\n"
+" * Jméno fronty: tisková fronta používá jako výchozí jméno tiskárny "
+"\"lp\". Takže musíte mít tiskárnu s tímto jménem.\n"
+" Pokud již tiskárnu máte, můžete ji přiřadit více jmen, která musí být "
+"oddělena znakem pipe (\"|\"). Pokud tedy preferujete lehce zapamatovatelná "
+"jména, můžete použít např. \"Moje tiskarna|lp\".\n"
+" Tiskárna, která má jméno \"lp\" je vždy výchozí tiskárnou.\n"
+"\n"
+"\n"
+" * Adresář pro tisk: je to adresář, kam jsou ukládány zpracovávané tiskové "
+"úlohy. Nechejte zde raději výchozí nastavení.\n"
+"\n"
+"\n"
+" * Připojení tiskárny: pokud máte připojenou tiskárnu přímo k počítači, "
+"vyberte \"Lokální tiskárna\".\n"
+" Pokud chcete tisknout na tiskárně připojení ke vzdáleneému Unix stroji, "
+"vyberte \"Vzdálená lpd tiskárna\".\n"
+"\n"
+"\n"
+" Pro přístup k tiskárně pčipojené k počítači s Microsoft Windows (nebo k "
+"Unix stroji protokolem SMB), vyberte \"SMB/Windows 95/98/NT\".\n"
+"\n"
+"\n"
+" Pro přístup k tiskárně v síti Netware, vyberte \"Netware\".\n"
-#: ../../help.pm_.c:567
+#: ../../help.pm_.c:573
msgid ""
"Your printer has not been detected. Please enter the name of the device on\n"
"which it is connected.\n"
@@ -2398,12 +3172,18 @@ msgid ""
"one is called \"/dev/lp0\" under GNU/Linux and \"LPT1\" under Microsoft "
"Windows."
msgstr ""
+"Nebyla detekována žádná tiskárna. Zadejte prosím zařízení, ke kterému je\n"
+"připojena.\n"
+"\n"
+"\n"
+"Pro informaci, většina tiskáren je připojena na první paralelní port.\n"
+"Ten se nazývá v GNU/Linuxu \"/dev/lp0\" a \"LPT1\" ve Windows."
-#: ../../help.pm_.c:575
+#: ../../help.pm_.c:581
msgid "You must now select your printer in the above list."
-msgstr ""
+msgstr "Vyberte si tiskárnu z následujícího seznamu."
-#: ../../help.pm_.c:578
+#: ../../help.pm_.c:584
msgid ""
"Please select the right options according to your printer.\n"
"Please see its documentation if you don't know what choose here.\n"
@@ -2412,9 +3192,14 @@ msgid ""
"You will be able to test your configuration in next step and you will be "
"able to modify it if it doesn't work as you want."
msgstr ""
+"Zadejte prosím správné volby pro vaši tiskárnu.\n"
+"Pokud neznáte správné hodnoty, podívejte se do dokumentace k tiskárně.\n"
+"\n"
+"\n"
+"V následujícím kroku můžete otestovat danou konfiguraci a případně ji\n"
+"lze také změnit, pokud nebude nastavení pracovat správně."
-#: ../../help.pm_.c:585
-#, fuzzy
+#: ../../help.pm_.c:591
msgid ""
"You can now enter the root password for your Linux-Mandrake system.\n"
"The password must be entered twice to verify that both password entries are "
@@ -2443,14 +3228,18 @@ msgstr ""
"\n"
"Superuživatel (root) je správce systému, a je jediný uživatel oprávněný\n"
"měnit nastavení systému. Proto volte toto heslo opatrně. Neoprávněné\n"
-"použití superuživatelského účtu může být nesmírně nebezpečné pro Váš\n"
-"systém a jeho data, i pro ostatní systémy k němu připojené. Heslo by mělo\n"
-"být alespoň osm znaků dlouhá směs písmen a číslic. Nikdy by nemělo být\n"
-"*nikde* poznamenané. Ale na druhou stranu si nedělejte heslo příliš dlouhé\n"
-"nebo komplikované, protože musíte být schopni si ho zapamatovat bez příliš\n"
-"velké námahy."
+"použití superuživatelského účtu může být nesmírně nebezpečné pro váš\n"
+"systém a jeho data, i pro ostatní systémy k němu připojené.\n"
+"\n"
+"\n"
+"Heslo by mělo být alespoň osm znaků dlouhá směs písmen a číslic. Nikdy by\n"
+"nemělo být *nikde* poznamenané.\n"
+"\n"
+"\n"
+"Nedělejte si heslo příliš dlouhé nebo komplikované, protože musíte být\n"
+"schopni si ho zapamatovat bez příliš velké námahy."
-#: ../../help.pm_.c:603
+#: ../../help.pm_.c:609
msgid ""
"To enable a more secure system, you should select \"Use shadow file\" and\n"
"\"Use MD5 passwords\"."
@@ -2458,16 +3247,16 @@ msgstr ""
"Pro bezpečnější systém byste si měli zvolit \"Používání stínování\"\n"
"(shadow file) a \"Používání MD5 hesel\"."
-#: ../../help.pm_.c:607
+#: ../../help.pm_.c:613
msgid ""
"If your network uses NIS, select \"Use NIS\". If you don't know, ask your\n"
"network administrator."
msgstr ""
-"Jestliže Vaše síť používá NIS, zvolte \"Použij NIS\". Pokud si nejste "
+"Jestliže vaše síť používá NIS, zvolte \"Použij NIS\". Pokud si nejste "
"jistí,\n"
-"zeptejte se Vašeho správce sítě."
+"zeptejte se vašeho správce sítě."
-#: ../../help.pm_.c:611
+#: ../../help.pm_.c:617
msgid ""
"You may now create one or more \"regular\" user account(s), as\n"
"opposed to the \"privileged\" user account, root. You can create\n"
@@ -2509,14 +3298,17 @@ msgstr ""
"který si zde vytvoříte, a jako superuživatel se přihlašovat pouze pro\n"
"spravování systému."
-#: ../../help.pm_.c:630
+#: ../../help.pm_.c:636
msgid ""
"Creating a boot disk is strongly recommended. If you can't\n"
"boot your computer, it's the only way to rescue your system without\n"
"reinstalling it."
msgstr ""
+"Vytvoření bootovací diskety je vřele doporučováno. Pokud nelze zavést\n"
+"operační systém, je to jediná cesta, jak obnovit systém bez nutnosti\n"
+"provést reinstalaci."
-#: ../../help.pm_.c:635
+#: ../../help.pm_.c:641
msgid ""
"You need to indicate where you wish\n"
"to place the information required to boot to GNU/Linux.\n"
@@ -2525,13 +3317,13 @@ msgid ""
"Unless you know exactly what you are doing, choose \"First sector of\n"
"drive (MBR)\"."
msgstr ""
-"Je zapotřebí zadat kam si přejete umístit\n"
+"Je zapotřebí zadat, kam si přejete umístit\n"
"informaci potřebnou k nastartování GNU/Linuxu.\n"
"\n"
"\n"
"Pokud nevíte přesně co děláte, zvolte \"První sektor disku (MBR)\"."
-#: ../../help.pm_.c:643
+#: ../../help.pm_.c:649
msgid ""
"Unless you know specifically otherwise, the usual choice is \"/dev/hda\"\n"
" (primary master IDE disk) or \"/dev/sda\" (first SCSI disk)."
@@ -2539,7 +3331,7 @@ msgstr ""
"Pokud nemáte jiný speciální požadavek, obvykle se volí \"/dev/hda\"\n"
"(master disk na prvním řadiči) nebo \"/dev/sda\" (první SCSI disk)."
-#: ../../help.pm_.c:647
+#: ../../help.pm_.c:653
msgid ""
"LILO (the LInux LOader) and Grub are bootloaders: they are able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -2553,14 +3345,13 @@ msgid ""
"in this case, you will need a boot disk in order to boot them!"
msgstr ""
"LILO (LInux LOader) a Grub jsou zaváděcí programy, což znamená, že mohou\n"
-"spustit buď GNU/Linux, nebo kterýkoliv jiný operační systém, který je na "
-"Vašem\n"
+"spustit buď GNU/Linux nebo kterýkoliv jiný operační systém, který je na "
+"vašem\n"
"počítači. Normálně jsou všechny takovéto systémy detekovány a nastaveny.\n"
"Pokud se tak nestalo, můžete v této obrazovce ručně přidat další záznam.\n"
"Musíte ale správně zadat některé parametry daného systému."
-#: ../../help.pm_.c:659
-#, fuzzy
+#: ../../help.pm_.c:665
msgid ""
"LILO and grub main options are:\n"
" - Boot device: Sets the name of the device (e.g. a hard disk\n"
@@ -2580,10 +3371,25 @@ msgid ""
"\n"
" * normal: select normal 80x25 text mode.\n"
"\n"
-" * <number>: use the corresponding text mode."
+" * <number>: use the corresponding text mode.\n"
+"\n"
+"\n"
+" - Clean \"/tmp\" at each boot: if you want delete all files and "
+"directories\n"
+"stored in \"/tmp\" when you boot your system, select this option.\n"
+"\n"
+"\n"
+" - Precise RAM if needed: unfortunately, there is no standard method to ask "
+"the\n"
+"BIOS about the amount of RAM present in your computer. As consequence, Linux "
+"may\n"
+"fail to detect your amount of RAM correctly. If this is the case, you can\n"
+"specify the correct amount or RAM here. Please note that a difference of 2 "
+"or 4\n"
+"MB between detected memory and memory present in your system is normal."
msgstr ""
"Hlavní možnosti pro LILO a Grub jsou:\n"
-" - Startovací zařízení: Nastavíte jméno zařízení (např. diskový oddíl)\n"
+" - Startovací zařízení: Nastavíte jméno zařízení (např. diskový oddíl),\n"
"který obsahuje startovací sektor (boot sector). Pokud nemáte jiný speciální\n"
"požadavek, zvolte \"/dev/hda\".\n"
"\n"
@@ -2593,15 +3399,249 @@ msgstr ""
"bude zaváděcí program čekat, než spustí standardní volbu. Toto je šikovné "
"pro\n"
"počítače, které okamžitě po zapnutí klávesnice začnou startovat. Zaváděcí\n"
-"program nebude čekat pokud je tato hodnota nastavena na 0, nebo není zadána\n"
+"program nebude čekat pokud je tato hodnota nastavena na 0 nebo není zadána\n"
"vůbec.\n"
"\n"
-" - Textový režim: určuje který textový mód by měl být při startu zvolen.\n"
+" - Textový režim: určuje, který textový mód by měl být při startu zvolen.\n"
"Můžete použít tyto hodnoty:\n"
" * normální: standardní režim 80x25 znaků\n"
-" * <číslo>: použije odpovídající režim."
+"\n"
+" * <číslo>: použije odpovídající režim.\n"
+"\n"
+"\n"
+" - Vyčistit \"/tmp\" při každém spuštění: pokud chcete smazat všechny "
+"soubory a adresáře, \n"
+"které jsou v \"/tmp\" při startu systému, vyberte tuto volbu.\n"
+"\n"
+"\n"
+" - Specifikovat velikost RAM: bohužel neexistuje jednoduchý způsob, jak "
+"pomocí\n"
+"BIOSu zjistit, kolik paměti má váš počítač. Může se tedy stát, že Linux\n"
+"chybně detekuje velikost RAM. V těchto případech teď máte zde možnost\n"
+"zadat správnou velikost paměti. Všimněte si, že je rozdíl 2 nebo 4 MB mezi\n"
+"detekovanou velikostí a velikostí paměti, kterou používá systém."
+
+#: ../../help.pm_.c:697
+msgid ""
+"Yaboot is a bootloader for NewWorld MacIntosh hardware. It is able\n"
+"to boot either GNU/Linux, MacOS, or MacOSX, if present on your computer.\n"
+"Normally, these other operating systems are correctly detected and\n"
+"installed. If this is not the case, you can add an entry by hand in this\n"
+"screen. Be careful as to choose the correct parameters.\n"
+"\n"
+"\n"
+"Yaboot main options are:\n"
+"\n"
+"\n"
+" - Init Message: A simple text message that is displayed before the boot\n"
+"prompt.\n"
+"\n"
+"\n"
+" - Boot Device: Indicate where you want to place the information required "
+"to \n"
+"boot to GNU/Linux. Generally, you will have setup a bootstrap partition "
+"earlier \n"
+"to hold this information.\n"
+"\n"
+"\n"
+" - Open Firmware Delay: Unlike LILO, there are two delays available with \n"
+"yaboot. The first delay is measured in seconds and at this point you can \n"
+"choose between CD, OF boot, MacOS, or Linux.\n"
+"\n"
+"\n"
+" - Kernel Boot Timeout: This timeout is similar to the LILO boot delay. "
+"After \n"
+"selecting Linux, you will have this delay in 0.1 seconds before your "
+"default\n"
+"kernel description is selected.\n"
+"\n"
+"\n"
+" - Enable CD Boot?: Checking this option will allow you to choose 'C' for "
+"CD at\n"
+"the first boot prompt.\n"
+"\n"
+"\n"
+" - Enable OF Boot?: Checking this option will allow you to choose 'N' for "
+"Open\n"
+"Firmware at the first boot prompt.\n"
+"\n"
+"\n"
+" - Default OS: You can select which OS will boot by default when the Open "
+"Firmware \n"
+"Delay expires."
+msgstr ""
+"Yaboot je zavaděč systému pro hardware od NewWorld MacIntosh. Je možné s "
+"ním\n"
+"zavést jak GNU/Linux, MacOS tak i MacOSX.\n"
+"Běžně jsou tyto systémy správně detekovány a instalovány.\n"
+"V jiných případech je možné přidat položky v této obrazovce.\n"
+"Volte opatrně správné parametry.\n"
+"\n"
+"\n"
+"Hlavní volby pro Yaboot jsou:\n"
+"\n"
+"\n"
+" - Úvodní zpráva: jednoduchá textová zpráva, která je zobrazena před\n"
+"zavaděčem.\n"
+"\n"
+"\n"
+" - Spouštěcí zařízení: ukazuje na místo, odkud jsou brány všechny potřebné\n"
+"informace pro zavedení GNU/Linuxu. Obvykle se zde zadává oddíl, který má\n"
+"potřebné informace pro spuštění.\n"
+"\n"
+"\n"
+" - Povolit prodlevu pro fimware: Narozdíl od LILa jsou zde dvě prodlevy, \n"
+"které lze použít pro yaboot. První prodleva v sekundách umožňuje vybrat "
+"mezi\n"
+"CD, OF boot, MacOS a Linuxem\n"
+"\n"
+"\n"
+" - Prodleva při spuštění jádra: Tato prodleva je pro LILO.\n"
+" Po vybrání Linuxu je prodleva v násobcích 0,1 vteřiny před spuštěním "
+"výchozího \n"
+"jádra. \n"
+"\n"
+"\n"
+" - Povolit OF Boot? Zvolením této volby umožňuje vybrat 'N' pro Open "
+"Firmware\n"
+"při prvním výzvě po spuštění.\n"
+"\n"
+" - Výchozí OS: Vyberte, který z OS bude spuštěn jako výchozí až skončí "
+"prodleva\n"
+"pro zavedení firmware."
+
+#: ../../help.pm_.c:738
+msgid ""
+"You can add additional entries for yaboot, either for other operating "
+"systems,\n"
+"alternate kernels, or for an emergency boot image.\n"
+"\n"
+"\n"
+"For other OS's - the entry consists only of a label and the root partition.\n"
+"\n"
+"\n"
+"For Linux, there are a few possible options: \n"
+"\n"
+"\n"
+" - Label: This is simply the name will type at the yaboot prompt to select "
+"this \n"
+"boot option.\n"
+"\n"
+"\n"
+" - Image: This would be the name of the kernel to boot. Typically vmlinux "
+"or\n"
+"a variation of vmlinux with an extension.\n"
+"\n"
+"\n"
+" - Root: The root device or '/' for your Linux installation.\n"
+"\n"
+"\n"
+" \n"
+" - Append: On Apple hardware, the kernel append option is used quite often "
+"to\n"
+"assist in initializing video hardware, or to enable keyboard mouse button "
+"emulation\n"
+"for the often lacking 2nd and 3rd mouse buttons on a stock Apple mouse. The "
+"following \n"
+"are some examples:\n"
+"\n"
+"\n"
+"\t\t video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+"hda=autotune\n"
+"\n"
+"\t\t video=atyfb:vmode:12,cmode:24 adb_buttons=103,111 \n"
+"\n"
+"\n"
+" \n"
+" - Initrd: This option can be used either to load initial modules, before "
+"the boot \n"
+"device is available, or to load a ramdisk image for an emergency boot "
+"situation.\n"
+"\n"
+"\n"
+" - Initrd-size: The default ramdisk size is generally 4096 bytes. If you "
+"should need\n"
+"to allocate a large ramdisk, this option can be used.\n"
+"\n"
+"\n"
+" - Read-write: Normally the 'root' partition is initially brought up "
+"read-only, to allow\n"
+"a filesystem check before the system becomes 'live'. You can override this "
+"option here.\n"
+"\n"
+"\n"
+" - NoVideo: Should the Apple video hardware prove to be exceptionally "
+"problematic, you can\n"
+"select this option to boot in 'novideo' mode, with native framebuffer "
+"support.\n"
+"\n"
+"\n"
+" - Default: Selects this entry as being the default Linux selection, "
+"selectable by just\n"
+"pressing ENTER at the yaboot prompt. This entry will also be highlighted "
+"with a '*', if you\n"
+"press TAB to see the boot selections."
+msgstr ""
+"Zde můžete přidat další volby pro yaboot, pro další operační systémy, "
+"alternatvní\n"
+"jádra nebo záchranný disk.\n"
+"\n"
+"\n"
+"Pro další OS - záznam obsahuje název a kořenový oddíl.\n"
+"\n"
+"\n"
+"Pro Linux jsou zde další volby:\n"
+"\n"
+"\n"
+" - Jmenovka: Je to krátký název, který se bude psát na výzvu yaboot.\n"
+"\n"
+"\n"
+" - Obraz: Je to název souboru s jádrem, které bude spuštěno. Běžně je to "
+"vmlinux\n"
+"nebo kombinace vmlinux a různých přípon.\n"
+"\n"
+"\n"
+" - Kořenový oddíl: Kořenový oddíl '/' pro instalace Linuxu.\n"
+"\n"
+"\n"
+" - Přidat: Při intalaci na počítače Apple je toto často využíváno při "
+"inicializaci\n"
+"grafické karty, emulaci dalších tlačítek na klávesnici, protože myš pro "
+"Apple\n"
+"má pouze jedno tlačítko. Zde jsou některé příklady:\n"
+"\n"
+"\t\t video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111 "
+"hda=autotune\n"
+"\t\t video=atyfb:vmode:12,cmode:24 adb_buttons=103,111 \n"
+"\n"
+"\n"
+" - Initrd: Tato volba se použita buď pro nahrání modulů před spuštěním "
+"systému\n"
+"nebo nahrání obrazu do ramdisku při záchranném režimu.\n"
+"\n"
+"\n"
+" - Initrd-size: Obyčejně je velikost ramdisku 4096 bytů. Pokud potřebujete "
+"místo\n"
+"pro větší ramdisk, je možné zde zadat požadovanou velikost.\n"
+"\n"
+"\n"
+" - Read-write: Běžně je 'kořenový' oddíl připojen v read-only režimu kvůli\n"
+"testování souborového systému před jeho připojením. Zde můžete tento stav "
+"změnit\n"
+"\n"
+"\n"
+" - BezVidea: na počítačích Apple může inicializace videa způsobit "
+"problémy,\n"
+"tato volba umožňuje spustit systém bez grafiky s nativní podporou "
+"framebufferu.\n"
+"\n"
+"\n"
+" - Výchozí: Tato volba je výchozí volbou, která se volí pouze stiskem\n"
+"ENTER na yaboot výzvu. Pokud stisknete klávesu TAB při výběru spuštění "
+"systému,\n"
+"je tato volba vysvícena a označena '*'."
-#: ../../help.pm_.c:680
+#: ../../help.pm_.c:793
msgid ""
"SILO is a bootloader for SPARC: it is able to boot\n"
"either GNU/Linux or any other operating system present on your computer.\n"
@@ -2614,13 +3654,17 @@ msgid ""
"anyone, in which case you can delete the corresponding entries. But\n"
"in this case, you will need a boot disk in order to boot them!"
msgstr ""
-"SILO je zaváděcí program pro SPARC: umí nastartovat buď GNU/Linux, nebo\n"
-"jakýkoliv jiný operační systém na Vašem počítači. Normálně jsou všechny\n"
+"SILO je zaváděcí program pro SPARC: umí nastartovat buď GNU/Linux nebo\n"
+"jakýkoliv jiný operační systém na vašem počítači. Normálně jsou všechny\n"
"takovéto systémy detekovány a nastaveny. Pokud se tak nestalo, můžete\n"
"v této obrazovce ručně přidat další záznam. Musíte ale správně zadat\n"
-"některé parametry daného systému."
+"některé parametry daného systému.\n"
+"\n"
+"Pokud nechcete umožnit přístup k těmto operačním systémům komukoliv,\n"
+"můžete smazat odpovídající záznamy. Ale v těchto případech budete\n"
+"pro spuštění těchto systémů potřebovat spouštěcí disk!"
-#: ../../help.pm_.c:692
+#: ../../help.pm_.c:805
msgid ""
"SILO main options are:\n"
" - Bootloader installation: Indicate where you want to place the\n"
@@ -2648,7 +3692,7 @@ msgstr ""
"program nebude čekat pokud je tato hodnota nastavena na 0, nebo není zadána\n"
"vůbec."
-#: ../../help.pm_.c:705
+#: ../../help.pm_.c:818
msgid ""
"Now it's time to configure the X Window System, which is the\n"
"core of the GNU/Linux GUI (Graphical User Interface). For this purpose,\n"
@@ -2663,18 +3707,18 @@ msgid ""
"change them, as many times as necessary."
msgstr ""
"Teď je čas nastavit grafický systém X, což je jádro GNU/Linuxového GUI\n"
-"(Grafického Uživatelského Rozhraní). K tomuto účelu musíte nastavit\n"
-"Vaši grafickou kartu a monitor. Většina této práce je prováděna\n"
-"automaticky, takže na Vás by měla zbýt pouze kontrola toho co bylo\n"
+"(grafického uživatelského rozhraní). K tomuto účelu musíte nastavit\n"
+"vaši grafickou kartu a monitor. Většina této práce je prováděna\n"
+"automaticky, takže na vás by měla zbýt pouze kontrola toho, co bylo\n"
"provedeno a odsouhlasení nastavení :)\n"
"\n"
"\n"
"Když je nastavení dokončeno, budou X-ka nastartována (pokud nepožádáte\n"
-"DrakX o opak), takže si můžete vyzkoušet jestli Vám nastavení vyhovují.\n"
-"Pokud Vám vyhovovat nebudou, můžete se vrátit a měnit je tak dlouho,\n"
+"DrakX o opak), takže si můžete vyzkoušet, zda vám nastavení vyhovují.\n"
+"Pokud vám vyhovovat nebudou, můžete se vrátit a měnit je tak dlouho,\n"
"dokud to bude zapotřebí."
-#: ../../help.pm_.c:718
+#: ../../help.pm_.c:831
msgid ""
"If something is wrong in X configuration, use these options to correctly\n"
"configure the X Window System."
@@ -2682,7 +3726,7 @@ msgstr ""
"Pokud je nastavení X špatné, použijte tyto možnosti pro správné nastavení\n"
"grafického systému."
-#: ../../help.pm_.c:722
+#: ../../help.pm_.c:835
msgid ""
"If you prefer to use a graphical login, select \"Yes\". Otherwise, select\n"
"\"No\"."
@@ -2690,80 +3734,18 @@ msgstr ""
"Jestliže raději používáte přihlašování v grafickém režimu, zvolte \"Ano\".\n"
"Jinak zvolte \"Ne\"."
-#: ../../help.pm_.c:726
-#, fuzzy
+#: ../../help.pm_.c:839
msgid ""
-"You can now select some miscellaneous options for your system.\n"
-"\n"
-"* Use hard drive optimizations: this option can improve hard disk "
-"performance but is only for advanced users. Some buggy\n"
-" chipsets can ruin your data, so beware. Note that the kernel has a builtin "
-"blacklist of drives and chipsets, but if\n"
-" you want to avoid bad surprises, leave this option unset.\n"
-"\n"
-"\n"
-"* Choose security level: you can choose a security level for your system. "
-"Please refer to the manual for complete\n"
+"You can choose a security level for your system. Please refer to the manual "
+"for complete\n"
" information. Basically, if you don't know what to choose, keep the default "
"option.\n"
-"\n"
-"\n"
-"* Precise RAM if needed: unfortunately, there is no standard method to ask "
-"the BIOS about the amount of RAM present in\n"
-" your computer. As consequence, Linux may fail to detect your amount of RAM "
-"correctly. If this is the case, you can\n"
-" specify the correct amount or RAM here. Please note that a difference of 2 "
-"or 4 MB between detected memory and memory\n"
-" present in your system is normal.\n"
-"\n"
-"\n"
-"* Removable media automounting: if you would prefer not to manually mount "
-"removable media (CD-Rom, floppy, Zip, etc.) by\n"
-" typing \"mount\" and \"umount\", select this option.\n"
-"\n"
-"\n"
-"* Clean \"/tmp\" at each boot: if you want delete all files and directories "
-"stored in \"/tmp\" when you boot your system,\n"
-" select this option.\n"
-"\n"
-"\n"
-"* Enable num lock at startup: if you want NumLock key enabled after booting, "
-"select this option. Please note that you\n"
-" should not enable this option on laptops and that NumLock may or may not "
-"work under X."
msgstr ""
-"Nyní můžete změnit různé nastavení Vašeho systému.\n"
-"\n"
-" - Použít optimalizace hardisku: Toto nastavení může zlepšit výkonost\n"
-"hardisku, ale je pouze pro zkušené uživatele (hdparm, UltraDMA). Některé\n"
-"chybové čipsety mohou zničit data na Vašem hardisku, takže si dejte pozor.\n"
-"Kernel sice obsahuje seznam disků a čipsetů, kde tyto optimalizace nebudou\n"
-"zapnuty, ale pokud se chcete vyvarovat nepříjemných překvapení nechte tuto\n"
-"volbu nezapnutou.\n"
-"\n"
-"\n"
-" - Zvolte si úroveň zabezpečení: Můžete si vybrat jak moc si přejete\n"
-"zabezpečit Váš systém. Bližší informace můžete najít v instalační\n"
-"příručce. Pokud nevíte co zvolit, bude nejvhodnější volba \"Střední\".\n"
-"\n"
-"\n"
-" - Pokud třeba, upřesněte velikost RAM: Bohužel v dnešní době neexistuje\n"
-"standardní metoda kolik paměti obsahuje Váš počítač. Může se tedy stát,\n"
-"že Linux chybně určí velikost paměti. Pokut se to stane, zadejte správnou "
-"hodnotu. Pozn. rozdíl 2-4 Mb je normální.\n"
-"\n"
-"\n"
-" - Automatické připojování médií: Jestliže raději necháte připojování "
-"(mount)\n"
-"a odpojování (umount) výměnných médií (CD-ROM, diskety, Zip) na počítači,\n"
-"potom zvolte tuto možnost.\n"
-"\n"
-"\n"
-" - Při startu zapni Numlock: Jestli chcete aby byl po startu Numlock "
-"zapnut,\n"
-"pak zvolte tuto možnost. (Pozn.: Numlock může a nemusí fungovat v X)."
+"Vyberte si úroveň bezpečnosti pro váš systém. Pro kompletní informace se "
+"podívejte\n"
+"do manuálu. Pokud nevíte co vybrat, nechte výchozí volbu.\n"
-#: ../../help.pm_.c:755
+#: ../../help.pm_.c:844
msgid ""
"Your system is going to reboot.\n"
"\n"
@@ -2773,110 +3755,155 @@ msgid ""
msgstr ""
"Váš systém se nyní restartuje.\n"
"\n"
-"Po resetu se Váš nový Mandrake Linux automaticky spustí. Jestli chcete\n"
+"Po resetu se váš nový Mandrake Linux automaticky spustí. Jestli chcete\n"
"nastartovat jiný existující operační systém, přečtěte si další informace."
-#: ../../install2.pm_.c:40
+#: ../../install2.pm_.c:39
msgid "Choose your language"
-msgstr "Zvolte si jazyk"
+msgstr "Výběr jazyka"
-#: ../../install2.pm_.c:41
+#: ../../install2.pm_.c:40
msgid "Select installation class"
-msgstr "Zvolte si typ instalace"
+msgstr "Volba typu instalace"
-#: ../../install2.pm_.c:42
+#: ../../install2.pm_.c:41
msgid "Hard drive detection"
msgstr "Detekce hardisků"
-#: ../../install2.pm_.c:43
+#: ../../install2.pm_.c:42
msgid "Configure mouse"
msgstr "Nastavení myši"
-#: ../../install2.pm_.c:44
+#: ../../install2.pm_.c:43
msgid "Choose your keyboard"
-msgstr "Zvolte si klávesnici"
+msgstr "Výběr klávesnice"
-#: ../../install2.pm_.c:45 ../../install_steps_interactive.pm_.c:497
-msgid "Miscellaneous"
-msgstr "Různé"
+#: ../../install2.pm_.c:44
+msgid "Security"
+msgstr "Bezpečnost"
-#: ../../install2.pm_.c:46
+#: ../../install2.pm_.c:45
msgid "Setup filesystems"
msgstr "Souborové systémy"
-#: ../../install2.pm_.c:47
+#: ../../install2.pm_.c:46
msgid "Format partitions"
msgstr "Formátování oddílů"
-#: ../../install2.pm_.c:48
+#: ../../install2.pm_.c:47
msgid "Choose packages to install"
-msgstr "Výběr balíčků k instalaci"
+msgstr "Výběr balíčků pro instalaci"
-#: ../../install2.pm_.c:49
+#: ../../install2.pm_.c:48
msgid "Install system"
-msgstr "Nainstalování sytému"
+msgstr "Istalace systému"
+
+#: ../../install2.pm_.c:49 ../../install_steps_interactive.pm_.c:894
+#: ../../install_steps_interactive.pm_.c:895
+msgid "Set root password"
+msgstr "Hlavní(root) heslo"
#: ../../install2.pm_.c:50
+msgid "Add a user"
+msgstr "Přidání uživatele"
+
+#: ../../install2.pm_.c:51
msgid "Configure networking"
msgstr "Nastavení sítí"
-#: ../../install2.pm_.c:52
-msgid "Configure timezone"
-msgstr "Časové pásmo"
+#: ../../install2.pm_.c:53 ../../install_steps_interactive.pm_.c:818
+msgid "Summary"
+msgstr "Souhrn"
-#: ../../install2.pm_.c:53
+#: ../../install2.pm_.c:54
msgid "Configure services"
msgstr "Nastavení služeb"
-#: ../../install2.pm_.c:54
-msgid "Configure printer"
-msgstr "Nastavení tiskárny"
-
-#: ../../install2.pm_.c:55 ../../install_steps_interactive.pm_.c:762
-#: ../../install_steps_interactive.pm_.c:763
-msgid "Set root password"
-msgstr "Hlavní(root) heslo"
-
#: ../../install2.pm_.c:56
-msgid "Add a user"
-msgstr "Přidání uživatele"
-
-#: ../../install2.pm_.c:58
msgid "Create a bootdisk"
msgstr "Startovací disketa"
-#: ../../install2.pm_.c:60
+#: ../../install2.pm_.c:58
msgid "Install bootloader"
msgstr "Zaváděcí program"
-#: ../../install2.pm_.c:61
+#: ../../install2.pm_.c:59
msgid "Configure X"
msgstr "Nastavení X"
-#: ../../install2.pm_.c:63
-msgid "Auto install floppy"
-msgstr "Auto-instalační disketa"
-
-#: ../../install2.pm_.c:65
+#: ../../install2.pm_.c:60
msgid "Exit install"
msgstr "Ukončit instalaci"
-#: ../../install_any.pm_.c:578
+#: ../../install_any.pm_.c:373
+#, c-format
+msgid ""
+"You have selected the following server(s): %s\n"
+"\n"
+"\n"
+"These servers are activated by default. They don't have any known security\n"
+"issues, but some new could be found. In that case, you must make sure to "
+"upgrade\n"
+"as soon as possible.\n"
+"\n"
+"\n"
+"Do you really want to install these servers?\n"
+msgstr ""
+"Vybrali jste pro instalaci následující server(y): %s\n"
+"\n"
+"\n"
+"Tyto servery budou standardně aktivovány. Přestože není známý žádný\n"
+"bezpečnostní problém, mohou se přesto vyskytnout. Je proto důležité "
+"aktualizovat\n"
+"vždy, když je to potřeba.\n"
+"\n"
+"\n"
+"Chcete opravdu nainstalovat tyto servery?\n"
+
+#: ../../install_any.pm_.c:404
+msgid "Can't use broadcast with no NIS domain"
+msgstr ""
+
+#: ../../install_any.pm_.c:647
+#, c-format
+msgid "Insert a FAT formatted floppy in drive %s"
+msgstr "Vložte naformátovanou disketu do %s"
+
+#: ../../install_any.pm_.c:651
+msgid "This floppy is not FAT formatted"
+msgstr "Tato disketa není formátována"
+
+#: ../../install_any.pm_.c:661
+msgid ""
+"To use this saved packages selection, boot installation with ``linux "
+"defcfg=floppy''"
+msgstr ""
+"Pokud chcete použít uložený výběr balíčků, spusťte instalaci takto: 'linux "
+"defcfg=floppy'"
+
+#: ../../install_any.pm_.c:683
msgid "Error reading file $f"
msgstr "Chyba při čtení souboru $f"
-#: ../../install_gtk.pm_.c:426
+#: ../../install_gtk.pm_.c:84 ../../install_steps_gtk.pm_.c:310
+#: ../../interactive.pm_.c:95 ../../interactive.pm_.c:110
+#: ../../interactive.pm_.c:265 ../../interactive_newt.pm_.c:166
+#: ../../interactive_stdio.pm_.c:27 ../../my_gtk.pm_.c:356
+#: ../../my_gtk.pm_.c:616 ../../my_gtk.pm_.c:639
+msgid "Ok"
+msgstr "Ok"
+
+#: ../../install_gtk.pm_.c:423
msgid "Please test the mouse"
-msgstr "Vyzkoušejte prosím, zda myš funguje"
+msgstr "Vyzkoušejte prosím, zda fungujei myš"
-#: ../../install_gtk.pm_.c:427
-#, fuzzy
+#: ../../install_gtk.pm_.c:424
msgid "To activate the mouse,"
-msgstr "Vyzkoušejte prosím, zda myš funguje"
+msgstr "Vyzkoušejte na myši,"
-#: ../../install_gtk.pm_.c:428
+#: ../../install_gtk.pm_.c:425
msgid "MOVE YOUR WHEEL!"
-msgstr ""
+msgstr "TOČIT KOLEČKEM!"
#: ../../install_interactive.pm_.c:23
#, c-format
@@ -2884,7 +3911,7 @@ msgid ""
"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
"You can find some information about them at: %s"
msgstr ""
-"Některá část vašeho hardware potřebuje ``speciální'' ovladače, aby mohla "
+"Některá část vašeho hardware potřebuje 'speciální' ovladače, aby mohla "
"pracovat.\n"
"Další informace můžete nalézt na: %s"
@@ -2896,8 +3923,8 @@ msgid ""
msgstr ""
"Musíte mít kořenový oddíl.\n"
"K jeho vytvoření musíte zvolit jeden existující oddíl\n"
-"(nebo vytvořit nový), zvolit ``Přípojný bod''\n"
-"a nastavit ho na `/'"
+"(nebo vytvořit nový), zvolit 'Přípojný bod'\n"
+"a nastavit ho na '/'"
#: ../../install_interactive.pm_.c:46 ../../install_steps_graphical.pm_.c:259
msgid "You must have a swap partition"
@@ -2934,7 +3961,6 @@ msgid "Use the Windows partition for loopback"
msgstr "Použít Windows oddíl jako loopback"
#: ../../install_interactive.pm_.c:90
-#, fuzzy
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Který diskový oddíl chcete použít pro Linux4Win?"
@@ -2975,7 +4001,7 @@ msgstr ""
msgid "Your Windows partition is too fragmented, please run ``defrag'' first"
msgstr ""
"Váš diskový oddíl s Windows je příliš fragmentován, použijte nejdříve "
-"``defrag''"
+"program 'defrag'"
#: ../../install_interactive.pm_.c:114
msgid ""
@@ -2991,7 +4017,7 @@ msgstr ""
"\n"
"DrakX nyní musí zmenšit oddíl s Windows. Buďte opatrní: tato operace je\n"
"nebezpečná. Pokud jste tak již neučinili, měli byste nejprve ukončit "
-"instalaci\n"
+"instalaci,\n"
"spustit scandisk ve Windows (popřípadě i defrag) a potom instalaci znovu "
"spustit\n"
"Také byste si měli data zálohovat. Až si budete jistí, že chcete pokračovat\n"
@@ -3034,15 +4060,11 @@ msgstr "Máte více než jeden pevný disk, na který chcete instalovat Linux?"
#: ../../install_interactive.pm_.c:157
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
-msgstr "Všechny diskové oddíly a data na disku %s budou zrušena"
+msgstr "VŠECHNY diskové oddíly a data na disku %s budou zrušena"
#: ../../install_interactive.pm_.c:165
-msgid "Expert mode"
-msgstr "Mód pro Experty"
-
-#: ../../install_interactive.pm_.c:165
-msgid "Use diskdrake"
-msgstr "Použít DiskDrake"
+msgid "Custom disk partitioning"
+msgstr "Vlastní rozdělení disku"
#: ../../install_interactive.pm_.c:169
msgid "Use fdisk"
@@ -3054,37 +4076,35 @@ msgid ""
"You can now partition %s.\n"
"When you are done, don't forget to save using `w'"
msgstr ""
-"Nyní můžete rozdělit Váš %s hardisk\n"
-"Až skončíte, nezapomeňte uložit změny pomocí `w'"
+"Nyní můžete rozdělit váš hardisk %s.\n"
+"Až skončíte, nezapomeňte uložit změny pomocí 'w'"
-#: ../../install_interactive.pm_.c:196
-#, fuzzy
+#: ../../install_interactive.pm_.c:201
msgid "You don't have enough free space on your Windows partition"
-msgstr "Použít volné místo na Windows oddílu"
+msgstr "Nemáte dostatek volného místa na oddílu s Windows"
-#: ../../install_interactive.pm_.c:211
-#, fuzzy
+#: ../../install_interactive.pm_.c:217
msgid "I can't find any room for installing"
-msgstr "Nemůžu přidat žádný další oddíl"
+msgstr "Nemůžu najít žádné volné místo pro instalaci"
-#: ../../install_interactive.pm_.c:214
+#: ../../install_interactive.pm_.c:221
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "Průvodce DrakX našel následující řešení:"
-#: ../../install_interactive.pm_.c:219
+#: ../../install_interactive.pm_.c:226
#, c-format
msgid "Partitioning failed: %s"
msgstr "Vytváření diskových oddílů selhalo: %s"
-#: ../../install_interactive.pm_.c:234
+#: ../../install_interactive.pm_.c:232
msgid "Bringing up the network"
msgstr "Startuji síť"
-#: ../../install_interactive.pm_.c:239
+#: ../../install_interactive.pm_.c:237
msgid "Bringing down the network"
msgstr "Zastavuji síť"
-#: ../../install_steps.pm_.c:74
+#: ../../install_steps.pm_.c:73
msgid ""
"An error occurred, but I don't know how to handle it nicely.\n"
"Continue at your own risk."
@@ -3092,7 +4112,7 @@ msgstr ""
"Stala se chyba, ale nevím jak jí správně interpretovat.\n"
"Pokračujte na vlastní riziko."
-#: ../../install_steps.pm_.c:202
+#: ../../install_steps.pm_.c:203
#, c-format
msgid "Duplicate mount point %s"
msgstr "Zdvojený přípojný bod %s"
@@ -3105,121 +4125,119 @@ msgid ""
"Mandrake/RPMS/*.rpm\"\n"
msgstr ""
"Některé důležité balíčky nebyly správně nainstalované.\n"
-"Je možné, že je poškozen CD disk nebo CD-ROM mechanika\n"
+"Je možné, že je poškozen CD disk nebo CD-ROM mechanika.\n"
"Zkontrolujete to použitím příkazu \"rpm -qpl Mandrake/RPMS/*.rpm\"\n"
-#: ../../install_steps.pm_.c:458
+#: ../../install_steps.pm_.c:451
#, c-format
msgid "Welcome to %s"
-msgstr "Vítejte na %s"
+msgstr "Vítá vás %s"
-#: ../../install_steps.pm_.c:670
+#: ../../install_steps.pm_.c:634
msgid "No floppy drive available"
msgstr "Není dostupná žádná disketová mechanika"
-#: ../../install_steps_auto_install.pm_.c:43
+#: ../../install_steps_auto_install.pm_.c:51
#: ../../install_steps_stdio.pm_.c:23
#, c-format
msgid "Entering step `%s'\n"
-msgstr "Začínám `%s'\n"
+msgstr "Začínám '%s'\n"
#: ../../install_steps_graphical.pm_.c:287
msgid "Choose the size you want to install"
-msgstr "Zadejte velikost kterou chcete pro nainstalovaný systém"
+msgstr "Zadejte velikost pro instalovaný systém"
#: ../../install_steps_graphical.pm_.c:334
msgid "Total size: "
msgstr "Celková velikost: "
-#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:353
-#: ../../standalone/rpmdrake_.c:136
+#: ../../install_steps_graphical.pm_.c:346 ../../install_steps_gtk.pm_.c:437
#, c-format
msgid "Version: %s\n"
msgstr "Verze: %s\n"
-#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:354
-#: ../../standalone/rpmdrake_.c:137
+#: ../../install_steps_graphical.pm_.c:347 ../../install_steps_gtk.pm_.c:438
#, c-format
msgid "Size: %d KB\n"
msgstr "Velikost: %d kB\n"
-#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:260
+#: ../../install_steps_graphical.pm_.c:462 ../../install_steps_gtk.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:520
msgid "Choose the packages you want to install"
-msgstr "Vyberte si balíčky které chcete nainstalovat"
+msgstr "Vyberte si balíčky, které chcete nainstalovat"
-#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:263
+#: ../../install_steps_graphical.pm_.c:465 ../../install_steps_gtk.pm_.c:340
msgid "Info"
msgstr "Informace"
-#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:268
-#: ../../install_steps_interactive.pm_.c:216 ../../standalone/rpmdrake_.c:161
+#: ../../install_steps_graphical.pm_.c:473 ../../install_steps_gtk.pm_.c:345
+#: ../../install_steps_interactive.pm_.c:226
msgid "Install"
-msgstr "Instaluj"
+msgstr "Instalovat"
-#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:466
-#: ../../install_steps_interactive.pm_.c:594
+#: ../../install_steps_graphical.pm_.c:492 ../../install_steps_gtk.pm_.c:558
+#: ../../install_steps_interactive.pm_.c:675
msgid "Installing"
msgstr "Instaluji"
-#: ../../install_steps_graphical.pm_.c:499 ../../install_steps_gtk.pm_.c:472
+#: ../../install_steps_graphical.pm_.c:499
msgid "Please wait, "
-msgstr "Prosím počkejte, "
+msgstr "Čekejte prosím "
-#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:474
+#: ../../install_steps_graphical.pm_.c:501 ../../install_steps_gtk.pm_.c:570
msgid "Time remaining "
msgstr "Zbývající čas "
-#: ../../install_steps_graphical.pm_.c:502 ../../install_steps_gtk.pm_.c:475
+#: ../../install_steps_graphical.pm_.c:502
msgid "Total time "
msgstr "Celkový čas "
-#: ../../install_steps_graphical.pm_.c:507 ../../install_steps_gtk.pm_.c:484
-#: ../../install_steps_interactive.pm_.c:594
+#: ../../install_steps_graphical.pm_.c:507
+#: ../../install_steps_interactive.pm_.c:675
msgid "Preparing installation"
msgstr "Připravuji instalaci"
-#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:500
+#: ../../install_steps_graphical.pm_.c:528 ../../install_steps_gtk.pm_.c:618
#, c-format
msgid "Installing package %s"
msgstr "Instaluji balíček %s"
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:569
-#: ../../install_steps_gtk.pm_.c:573
+#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:695
+#: ../../install_steps_gtk.pm_.c:699
msgid "Go on anyway?"
msgstr "Přesto pokračovat?"
-#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:569
+#: ../../install_steps_graphical.pm_.c:553 ../../install_steps_gtk.pm_.c:695
msgid "There was an error ordering packages:"
msgstr "Stala se chyba při řazení balíčků:"
#: ../../install_steps_graphical.pm_.c:577
-#: ../../install_steps_interactive.pm_.c:1003
msgid "Use existing configuration for X11?"
msgstr "Použít existující nastavení pro X11?"
-#: ../../install_steps_gtk.pm_.c:136
+#: ../../install_steps_gtk.pm_.c:142
msgid ""
"Your system is low on resource. You may have some problem installing\n"
"Linux-Mandrake. If that occurs, you can try a text install instead. For "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
-"Váš systém má málo prostředků. Při instalaci Mandrake Linuxu se\n"
+"Váš systém má málo systémových prostředků. Při instalaci Mandrake Linuxu se\n"
"můžete setkat s různými problémy. Pokud se tak stane, zkuste textovou\n"
-"verzi instalačního programu. Ten se spouští tak, že při startu z\n"
-"CD mechaniky stisknete `F1' a poté napíšete `text'."
+"verzi instalačního programu. Ta se spouští tak, že při startu\n"
+"z CD mechaniky stisknete 'F1' a poté napíšete 'text'."
-#: ../../install_steps_gtk.pm_.c:150
+#: ../../install_steps_gtk.pm_.c:156
msgid "Please, choose one of the following classes of installation:"
msgstr "Prosím zvolte jednu z následujících instalačních tříd:"
-#: ../../install_steps_gtk.pm_.c:215
+#: ../../install_steps_gtk.pm_.c:222
#, c-format
msgid ""
"The total size for the groups you have selected is approximately %d MB.\n"
msgstr "Celková velikost zvolených balíčků je přibližně %d MB.\n"
-#: ../../install_steps_gtk.pm_.c:217
+#: ../../install_steps_gtk.pm_.c:224
msgid ""
"If you wish to install less than this size,\n"
"select the percentage of packages that you want to install.\n"
@@ -3233,7 +4251,7 @@ msgstr ""
"Malý počet procent nainstaluje pouze ty nejdůležitější balíčky, 100%%\n"
"nainstaluje všechny zvolené."
-#: ../../install_steps_gtk.pm_.c:222
+#: ../../install_steps_gtk.pm_.c:229
msgid ""
"You have space on your disk for only %d%% of these packages.\n"
"\n"
@@ -3242,82 +4260,90 @@ msgid ""
"A low percentage will install only the most important packages;\n"
"a percentage of %d%% will install as many packages as possible."
msgstr ""
-"Na Vašem hardisku je místo pouze pro %d%% těchto balíčků.\n"
+"Na vašem hardisku je místo pouze pro %d%% těchto balíčků.\n"
"\n"
"Pokud jich chcete nainstalovat ještě méně, zvolte jiný počet\n"
"procent. Malý počet procent nainstaluje pouze ty nejdůležitější\n"
"balíčky, %d%% nainstaluje maximální možné množství balíčků."
-#: ../../install_steps_gtk.pm_.c:228
+#: ../../install_steps_gtk.pm_.c:235
msgid "You will be able to choose them more specifically in the next step."
msgstr "Přesněji si budete moci vybrat v příštím kroku"
-#: ../../install_steps_gtk.pm_.c:230
+#: ../../install_steps_gtk.pm_.c:237
msgid "Percentage of packages to install"
msgstr "Procent balíčků k instalaci"
-#: ../../install_steps_gtk.pm_.c:272
-msgid "Automatic dependencies"
-msgstr "Automatické závislosti"
+#: ../../install_steps_gtk.pm_.c:285 ../../install_steps_interactive.pm_.c:599
+msgid "Package Group Selection"
+msgstr "Výběr skupiny balíčků"
+
+#: ../../install_steps_gtk.pm_.c:305 ../../install_steps_interactive.pm_.c:614
+msgid "Individual package selection"
+msgstr "Výběr jednotlivých balíčků"
+
+#: ../../install_steps_gtk.pm_.c:349
+msgid "Show automatically selected packages"
+msgstr "Ukázat automaticky vybrané balíčky"
-#: ../../install_steps_gtk.pm_.c:332 ../../standalone/rpmdrake_.c:101
+#: ../../install_steps_gtk.pm_.c:416
msgid "Expand Tree"
msgstr "Rozbal větev"
-#: ../../install_steps_gtk.pm_.c:333 ../../standalone/rpmdrake_.c:102
+#: ../../install_steps_gtk.pm_.c:417
msgid "Collapse Tree"
msgstr "Sbal větev"
-#: ../../install_steps_gtk.pm_.c:334
+#: ../../install_steps_gtk.pm_.c:418
msgid "Toggle between flat and group sorted"
-msgstr "Přepnutí mezi celkovým a skupinovým rovnáním"
+msgstr "Přepnutí mezi abcedním a skupinovým řazením"
-#: ../../install_steps_gtk.pm_.c:351
+#: ../../install_steps_gtk.pm_.c:435
msgid "Bad package"
msgstr "Špatný balíček"
-#: ../../install_steps_gtk.pm_.c:352
+#: ../../install_steps_gtk.pm_.c:436
#, c-format
msgid "Name: %s\n"
msgstr "Jméno: %s\n"
-#: ../../install_steps_gtk.pm_.c:355
+#: ../../install_steps_gtk.pm_.c:439
#, c-format
msgid "Importance: %s\n"
msgstr "Důležitost: %s\n"
-#: ../../install_steps_gtk.pm_.c:363
+#: ../../install_steps_gtk.pm_.c:448 ../../install_steps_interactive.pm_.c:578
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Celková velikost: %d / %d MB"
-#: ../../install_steps_gtk.pm_.c:382
+#: ../../install_steps_gtk.pm_.c:467
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Nemůžete označit tento balíček, protože pro jeho instalaci není dost místa"
-#: ../../install_steps_gtk.pm_.c:386
+#: ../../install_steps_gtk.pm_.c:471
msgid "The following packages are going to be installed"
msgstr "Tyto balíčky budou instalovány"
-#: ../../install_steps_gtk.pm_.c:387
+#: ../../install_steps_gtk.pm_.c:472
msgid "The following packages are going to be removed"
msgstr "Tyto balíčky budou odebrány"
-#: ../../install_steps_gtk.pm_.c:397
+#: ../../install_steps_gtk.pm_.c:482
msgid "You can't select/unselect this package"
msgstr "Nemůžete vybrat/nevybrat tento balíček"
-#: ../../install_steps_gtk.pm_.c:416
+#: ../../install_steps_gtk.pm_.c:501
msgid "This is a mandatory package, it can't be unselected"
msgstr "Toto je nepostradatelný balíček, nemůže být odstraněn"
-#: ../../install_steps_gtk.pm_.c:418
+#: ../../install_steps_gtk.pm_.c:503
msgid "You can't unselect this package. It is already installed"
msgstr "Nemůžete od-označit tento balíček, protože je už nainstalovaný"
-#: ../../install_steps_gtk.pm_.c:422
+#: ../../install_steps_gtk.pm_.c:507
msgid ""
"This package must be upgraded\n"
"Are you sure you want to deselect it?"
@@ -3325,27 +4351,24 @@ msgstr ""
"Tento balíček musí být obnoven\n"
"Jste si jisti, že ho nechcete zvolit?"
-#: ../../install_steps_gtk.pm_.c:425
+#: ../../install_steps_gtk.pm_.c:510
msgid "You can't unselect this package. It must be upgraded"
msgstr "Tento balíček musí být obnoven, nemůžete ho nezvolit"
-#: ../../install_steps_gtk.pm_.c:469
+#: ../../install_steps_gtk.pm_.c:563
msgid "Estimating"
msgstr "Odhaduji"
-#: ../../install_steps_gtk.pm_.c:481 ../../interactive.pm_.c:86
-#: ../../interactive.pm_.c:249 ../../interactive_newt.pm_.c:51
-#: ../../interactive_newt.pm_.c:99 ../../interactive_stdio.pm_.c:27
-#: ../../my_gtk.pm_.c:246 ../../my_gtk.pm_.c:486
-msgid "Cancel"
-msgstr "Zrušit"
+#: ../../install_steps_gtk.pm_.c:582
+msgid "Please wait, preparing installation"
+msgstr "Čekejte prosím, připravuji instalaci"
-#: ../../install_steps_gtk.pm_.c:495
+#: ../../install_steps_gtk.pm_.c:613
#, c-format
msgid "%d packages"
-msgstr "%d balíčků"
+msgstr "%d balíčků(y)"
-#: ../../install_steps_gtk.pm_.c:531
+#: ../../install_steps_gtk.pm_.c:652
msgid ""
"\n"
"Warning\n"
@@ -3376,13 +4399,41 @@ msgid ""
"respective authors and are protected by intellectual property and \n"
"copyright laws applicable to software programs.\n"
msgstr ""
+"\n"
+"Varování\n"
+"\n"
+"Přečtěte si prosím pozorně následující termíny. Pokud s nimi nesouhlasíte,\n"
+"nejste oprávněn pokračovat v instalaci následujícím CD. Stiskněte\n"
+"\"Odmítnout\" pro pokračování v instalaci bez tohoto média.\n"
+"\n"
+"\n"
+"Některé programy na dalším CD médiu nejsou šířeny podle licence GPL či\n"
+"podobné. Každý z těchto programů je šířen podle vlastní licence a podmínek.\n"
+"Čtete pozorně tyto licence a podmínky před tím, než začnete daný software\n"
+"používat nebo šířit.\n"
+"Některé licence zakazují přenášení, vytváření duplikatů (mimo záložní "
+"kopii),\n"
+"další šíření, dekompilaci, reverzní engineering nebo modifikaci komponent.\n"
+"Každé porušení podmínek okamžitě přerušeuje vaše práva podle dané licence.\n"
+"I když dané licence davají nejaká práva, není dovoleno instalovat daný\n"
+"program na více systémů, přizpůsobovat ho provozu na síti. V případě\n"
+"pochybností kontaktujte distributora nebo výrobce daného programu.\n"
+"Přenechání práv třetím osobám nebo kopírování části komponent či\n"
+"dokumentace je také zakázáno.\n"
+"\n"
+"\n"
+"Všechna práva na programy na dalším CD médiu patří jejím pravoplatným\n"
+"vlastníkům podle autorského zákona.\n"
-#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
-#, fuzzy
+#: ../../install_steps_gtk.pm_.c:680 ../../install_steps_interactive.pm_.c:163
msgid "Accept"
-msgstr "Vytvořit uživatele"
+msgstr "Potvrdit"
+
+#: ../../install_steps_gtk.pm_.c:680 ../../install_steps_interactive.pm_.c:163
+msgid "Refuse"
+msgstr "Odmítnout"
-#: ../../install_steps_gtk.pm_.c:559
+#: ../../install_steps_gtk.pm_.c:681
#, c-format
msgid ""
"Change your Cd-Rom!\n"
@@ -3395,30 +4446,34 @@ msgstr ""
"\n"
"Prosím vložte CD označené \"%s\" do mechaniky a stiskněte Ok.\n"
"\n"
-"Pokud toto CD nemáte stiskněte Zrušit a toto CD nebude nainstalováno."
-
-#: ../../install_steps_gtk.pm_.c:559 ../../install_steps_interactive.pm_.c:147
-#, fuzzy
-msgid "Refuse"
-msgstr "Změnit velikost"
+"Pokud toto CD nemáte, stiskněte Zrušit a toto CD nebude nainstalováno."
-#: ../../install_steps_gtk.pm_.c:573
+#: ../../install_steps_gtk.pm_.c:699
msgid "There was an error installing packages:"
msgstr "Stala se chyba při instalaci balíčků:"
-#: ../../install_steps_interactive.pm_.c:38
+#: ../../install_steps_interactive.pm_.c:37
msgid "An error occurred"
msgstr "Stala se chyba"
-#: ../../install_steps_interactive.pm_.c:54
+#: ../../install_steps_interactive.pm_.c:55
msgid "Please, choose a language to use."
msgstr "Prosím zvolte si, který jazyk chcete používat."
-#: ../../install_steps_interactive.pm_.c:70
+#: ../../install_steps_interactive.pm_.c:56
+msgid "You can choose other languages that will be available after install"
+msgstr "Můžete si zvolit další jazyky, které budou dostupné po instalaci"
+
+#: ../../install_steps_interactive.pm_.c:68
+#: ../../install_steps_interactive.pm_.c:613
+msgid "All"
+msgstr "Všechno"
+
+#: ../../install_steps_interactive.pm_.c:86
msgid "License agreement"
-msgstr ""
+msgstr "Souhlas s licencí"
-#: ../../install_steps_interactive.pm_.c:71
+#: ../../install_steps_interactive.pm_.c:87
msgid ""
"Introduction\n"
"\n"
@@ -3538,136 +4593,219 @@ msgid ""
"Paris - France.\n"
"For any question on this document, please contact MandrakeSoft S.A. \n"
msgstr ""
+"Uvod\n"
+"\n"
+"Operacni system a ruzne casti dostupne v distribuci Linux-Mandrake jsou "
+"nazyvany \"Softwarove produkty\" (\"Software Products\"). Softwarové "
+"produkty zahrnuji, ale nejsou omezeny, na programy, metody pravidla a "
+"dokumentaci vztahujici se k operacnimu systemu a dalsim komponentam "
+"distribuce Linux-Mandrake.\n"
+"\n"
+"\n"
+"1. License Agreement\n"
+"\n"
+"Please read carefully this document. This document is a license agreement "
+"between you and \n"
+"MandrakeSoft S.A. which applies to the Software Products.\n"
+"By installing, duplicating or using 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.\n"
+"\n"
+"\n"
+"2. Limited Warranty\n"
+"\n"
+"The Software Products and attached documentation are provided \"as is\", "
+"with no warranty, to the \n"
+"extent permitted by law.\n"
+"MandrakeSoft S.A. will, in no circumstances and to the extent permitted by "
+"law, be liable for any special,\n"
+"incidental, direct or indirect damages whatsoever (including without "
+"limitation damages for loss of \n"
+"business, interruption of business, financial loss, legal fees and penalties "
+"resulting from a court \n"
+"judgment, or any other consequential loss) arising out of the use or "
+"inability to use the Software \n"
+"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
+"occurance of such \n"
+"damages.\n"
+"\n"
+"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
+"COUNTRIES\n"
+"\n"
+"To the extent permitted by law, MandrakeSoft S.A. or its distributors will, "
+"in no circumstances, be \n"
+"liable for any special, incidental, direct or indirect damages whatsoever "
+"(including without \n"
+"limitation damages for loss of business, interruption of business, financial "
+"loss, legal fees \n"
+"and penalties resulting from a court judgment, or any other consequential "
+"loss) arising out \n"
+"of the possession and use of software components or arising out of "
+"downloading software components \n"
+"from one of Linux-Mandrake sites which are 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"
+"\n"
+"\n"
+"3. The GPL License and Related Licenses\n"
+"\n"
+"The Software Products consist of components created by different persons or "
+"entities. Most \n"
+"of these components are governed under the terms and conditions of the GNU "
+"General Public \n"
+"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
+"licenses allow you to use, \n"
+"duplicate, adapt or redistribute the components which they cover. Please "
+"read carefully the terms \n"
+"and conditions of the license agreement for each component before using any "
+"component. Any question \n"
+"on a component license should be addressed to the component author and not "
+"to MandrakeSoft.\n"
+"The programs developed by MandrakeSoft S.A. are governed by the GPL License. "
+"Documentation written \n"
+"by MandrakeSoft S.A. is governed by a specific license. Please refer to the "
+"documentation for \n"
+"further details.\n"
+"\n"
+"\n"
+"4. Intellectual Property Rights\n"
+"\n"
+"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"
+"MandrakeSoft S.A. reserves its rights to modify or adapt the Software "
+"Products, as a whole or in \n"
+"parts, by all means and for all purposes.\n"
+"\"Mandrake\", \"Linux-Mandrake\" and associated logos are trademarks of "
+"MandrakeSoft S.A. \n"
+"\n"
+"\n"
+"5. Governing Laws \n"
+"\n"
+"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 MandrakeSoft S.A. \n"
-#: ../../install_steps_interactive.pm_.c:154
-#: ../../standalone/keyboarddrake_.c:21
+#: ../../install_steps_interactive.pm_.c:182
+#: ../../install_steps_interactive.pm_.c:822
+#: ../../standalone/keyboarddrake_.c:28
msgid "Keyboard"
msgstr "Klávesnice"
-#: ../../install_steps_interactive.pm_.c:155
-#: ../../standalone/keyboarddrake_.c:22
+#: ../../install_steps_interactive.pm_.c:183
+#: ../../standalone/keyboarddrake_.c:29
msgid "Please, choose your keyboard layout."
-msgstr "Jaké je rozložení Vaší klávesnice?"
+msgstr "Jaké je rozložení vaší klávesnice?"
-#: ../../install_steps_interactive.pm_.c:166
-msgid "You can choose other languages that will be available after install"
-msgstr "Můžete si zvolit další jazyky, které budou dostupné po instalaci"
+#: ../../install_steps_interactive.pm_.c:184
+msgid "Here is the full list of keyboards available"
+msgstr "Zde je kompletní seznam dostupných klávesnic"
-#: ../../install_steps_interactive.pm_.c:173
-#: ../../install_steps_interactive.pm_.c:520
-msgid "All"
-msgstr ""
-
-#: ../../install_steps_interactive.pm_.c:181
-#: ../../install_steps_interactive.pm_.c:227
+#: ../../install_steps_interactive.pm_.c:201
msgid "Install Class"
msgstr "Typ instalace"
-#: ../../install_steps_interactive.pm_.c:181
+#: ../../install_steps_interactive.pm_.c:201
msgid "Which installation class do you want?"
msgstr "Který typ instalace chcete?"
-#: ../../install_steps_interactive.pm_.c:183
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:203
msgid "Install/Update"
-msgstr "Instalace/Upgrade"
+msgstr "Instalace/Aktualizace"
-#: ../../install_steps_interactive.pm_.c:183
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:203
msgid "Is this an install or an update?"
-msgstr "Je to instalace nebo záchrana?"
+msgstr "Je to instalace nebo aktualizace?"
-#: ../../install_steps_interactive.pm_.c:192
+#: ../../install_steps_interactive.pm_.c:212
msgid "Recommended"
msgstr "Doporučená"
-#: ../../install_steps_interactive.pm_.c:195
-#: ../../install_steps_interactive.pm_.c:211
-msgid "Customized"
-msgstr "Vlastní"
-
-#: ../../install_steps_interactive.pm_.c:196
-#: ../../install_steps_interactive.pm_.c:211
+#: ../../install_steps_interactive.pm_.c:215
+#: ../../install_steps_interactive.pm_.c:218
msgid "Expert"
-msgstr "Expert"
+msgstr "Expertní"
-#: ../../install_steps_interactive.pm_.c:206
-msgid ""
-"Are you sure you are an expert? \n"
-"You will be allowed to make powerful but dangerous things here.\n"
-"\n"
-"You will be asked questions such as: ``Use shadow file for passwords?'',\n"
-"are you ready to answer that kind of questions?"
-msgstr ""
-"Jste si jistý, že jste expert?\n"
-"Pozor na to, budete moct provádět i nebezpečné věci.\n"
-"\n"
-"Budete dotazováni na otázky jako např. ``Použít stínová(shadow) hesla?''.\n"
-"Umíte na takovéto otázky odpovědět?"
-
-#: ../../install_steps_interactive.pm_.c:216
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:226
msgid "Update"
-msgstr "Upgrade"
-
-#: ../../install_steps_interactive.pm_.c:222
-msgid "Workstation"
-msgstr "Pracovní stanice"
-
-#: ../../install_steps_interactive.pm_.c:223
-msgid "Development"
-msgstr "Vývojový"
-
-#: ../../install_steps_interactive.pm_.c:224
-msgid "Server"
-msgstr "Server"
-
-#: ../../install_steps_interactive.pm_.c:228
-#, fuzzy
-msgid "What is your system used for?"
-msgstr "Jak budete počítač využívat ?"
+msgstr "Aktualizovat"
-#: ../../install_steps_interactive.pm_.c:244 ../../standalone/mousedrake_.c:24
+#: ../../install_steps_interactive.pm_.c:238 ../../standalone/mousedrake_.c:31
msgid "Please, choose the type of your mouse."
-msgstr "Jaký je typ Vaší myši?"
+msgstr "Jaký je typ vaší myši?"
-#: ../../install_steps_interactive.pm_.c:251 ../../standalone/mousedrake_.c:40
+#: ../../install_steps_interactive.pm_.c:244 ../../standalone/mousedrake_.c:46
msgid "Mouse Port"
msgstr "Připojení myši"
-#: ../../install_steps_interactive.pm_.c:252
+#: ../../install_steps_interactive.pm_.c:245 ../../standalone/mousedrake_.c:47
msgid "Please choose on which serial port your mouse is connected to."
-msgstr "Ke kterému sériovému portu je připojena Vaše myš?"
+msgstr "Ke kterému sériovému portu je připojena vaše myš?"
+
+#: ../../install_steps_interactive.pm_.c:253
+msgid "Buttons emulation"
+msgstr "Emulace tlačítek"
+
+#: ../../install_steps_interactive.pm_.c:255
+msgid "Button 2 Emulation"
+msgstr "Emulace 2 tlačítka"
+
+#: ../../install_steps_interactive.pm_.c:256
+msgid "Button 3 Emulation"
+msgstr "Emulace 3 tlačítka"
-#: ../../install_steps_interactive.pm_.c:271
+#: ../../install_steps_interactive.pm_.c:275
msgid "Configuring PCMCIA cards..."
-msgstr "Nastavuji PCMCIA karty"
+msgstr "Nastavuji PCMCIA karty..."
-#: ../../install_steps_interactive.pm_.c:271
+#: ../../install_steps_interactive.pm_.c:275
msgid "PCMCIA"
msgstr "PCMCIA"
-#: ../../install_steps_interactive.pm_.c:275
+#: ../../install_steps_interactive.pm_.c:280
msgid "Configuring IDE"
msgstr "Nastavuji IDE"
-#: ../../install_steps_interactive.pm_.c:275
+#: ../../install_steps_interactive.pm_.c:280
msgid "IDE"
msgstr "IDE"
-#: ../../install_steps_interactive.pm_.c:288
+#: ../../install_steps_interactive.pm_.c:295
msgid "no available partitions"
msgstr "nejsou dostupné žádné diskové oddíly"
-#: ../../install_steps_interactive.pm_.c:291
+#: ../../install_steps_interactive.pm_.c:298
msgid "Scanning partitions to find mount points"
-msgstr ""
+msgstr "Hledám oddíly, které lze připojit"
-#: ../../install_steps_interactive.pm_.c:299
+#: ../../install_steps_interactive.pm_.c:306
msgid "Choose the mount points"
msgstr "Zvolte si přípojné(mount) body"
-#: ../../install_steps_interactive.pm_.c:316
+#: ../../install_steps_interactive.pm_.c:323
#, c-format
msgid ""
"I can't read your partition table, it's too corrupted for me :(\n"
@@ -3677,14 +4815,14 @@ msgid ""
"\n"
"Do you agree to loose all the partitions?\n"
msgstr ""
-"Nemůžu přečíst Vaši tabulku oddílů, je pro mě příliš porušená :(\n"
+"Nemůžu přečíst vaši tabulku oddílů, je pro mě příliš porušená :(\n"
"Můžu se pokusit pokračovat v čištění špatných oddílů (VŠECHNA\n"
"DATA budou ztracena!). Jiná možnost je zakázat DrakX měnit tabulku\n"
"oddílů (chyba je %s)\n"
"\n"
"Souhlasíte s tím, že příjdete o všechny oddíly?\n"
-#: ../../install_steps_interactive.pm_.c:329
+#: ../../install_steps_interactive.pm_.c:336
msgid ""
"DiskDrake failed to read correctly the partition table.\n"
"Continue at your own risk!"
@@ -3692,87 +4830,78 @@ msgstr ""
"DiskDrake neuspěl při čtení tabulky oddílů.\n"
"Pokračujte pouze na vlastní riziko!"
-#: ../../install_steps_interactive.pm_.c:337
+#: ../../install_steps_interactive.pm_.c:361
msgid "Root Partition"
msgstr "Kořenový oddíl"
-#: ../../install_steps_interactive.pm_.c:338
+#: ../../install_steps_interactive.pm_.c:362
msgid "What is the root partition (/) of your system?"
msgstr "Který diskový oddíl je kořenový (/) ?"
-#: ../../install_steps_interactive.pm_.c:352
+#: ../../install_steps_interactive.pm_.c:376
msgid "You need to reboot for the partition table modifications to take place"
msgstr "Musíte restartovat počítač aby se projevily změny v tabulce oddílů"
-#: ../../install_steps_interactive.pm_.c:376
+#: ../../install_steps_interactive.pm_.c:403
msgid "Choose the partitions you want to format"
msgstr "Zvolte diskové oddíly které chcete naformátovat"
-#: ../../install_steps_interactive.pm_.c:386
+#: ../../install_steps_interactive.pm_.c:404
msgid "Check bad blocks?"
msgstr "Otestovat na vadné stopy?"
-#: ../../install_steps_interactive.pm_.c:397
+#: ../../install_steps_interactive.pm_.c:427
msgid "Formatting partitions"
msgstr "Formátuji oddíly"
-#: ../../install_steps_interactive.pm_.c:401
+#: ../../install_steps_interactive.pm_.c:429
#, c-format
msgid "Creating and formatting file %s"
msgstr "Vytvářím a formátuji soubor %s"
-#: ../../install_steps_interactive.pm_.c:404
+#: ../../install_steps_interactive.pm_.c:432
msgid "Not enough swap to fulfill installation, please add some"
msgstr "Není dostatek odkládacího prostoru k instalaci, prosím přidejte nějaký"
-#: ../../install_steps_interactive.pm_.c:410
+#: ../../install_steps_interactive.pm_.c:438
msgid "Looking for available packages"
msgstr "Hledám dostupné balíčky"
-#: ../../install_steps_interactive.pm_.c:416
+#: ../../install_steps_interactive.pm_.c:444
msgid "Finding packages to upgrade"
msgstr "Vyhledávám balíčky pro upgrade"
-#: ../../install_steps_interactive.pm_.c:433
+#: ../../install_steps_interactive.pm_.c:461
#, c-format
msgid ""
"Your system has not enough space left for installation or upgrade (%d > %d)"
msgstr ""
-"Na Vašem systému není dostatek místa pro instalaci nebo upgrade (%d > %d)"
+"Na vašem systému není dostatek místa pro instalaci nebo upgrade (%d > %d)"
-#: ../../install_steps_interactive.pm_.c:449
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid "Complete (%dMB)"
msgstr "Kompletní (%dMB)"
-#: ../../install_steps_interactive.pm_.c:449
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid "Minimum (%dMB)"
msgstr "Minimální (%dMB)"
-#: ../../install_steps_interactive.pm_.c:449
+#: ../../install_steps_interactive.pm_.c:480
#, c-format
msgid "Recommended (%dMB)"
msgstr "Doporučená (%dMB)"
-#: ../../install_steps_interactive.pm_.c:455
-#, fuzzy
+#: ../../install_steps_interactive.pm_.c:486
msgid "Custom"
msgstr "Vlastní"
-#: ../../install_steps_interactive.pm_.c:462
-msgid "Select the size you want to install"
-msgstr "Zadejte velikost kterou chcete použít pro nainstalovaný systém"
-
-#: ../../install_steps_interactive.pm_.c:508
-msgid "Package Group Selection"
-msgstr "Výběr skupiny balíčků"
-
-#: ../../install_steps_interactive.pm_.c:521
-msgid "Individual package selection"
-msgstr "Výběr jednotlivých balíčků"
+#: ../../install_steps_interactive.pm_.c:585
+msgid "Selected size is larger than available space"
+msgstr ""
-#: ../../install_steps_interactive.pm_.c:570
+#: ../../install_steps_interactive.pm_.c:650
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
@@ -3780,14 +4909,14 @@ msgid ""
msgstr ""
"Pokud máte všechna CD vypsaná níže, klepněte na Ok.\n"
"Pokud nemáte žádné z nich, klepněte na Zrušit.\n"
-"Pokud Vám chybí pouze některé z nich, od-označte je, a zvolte Ok."
+"Pokud Vám chybí pouze některé z nich, odoznačte je, a zvolte Ok."
-#: ../../install_steps_interactive.pm_.c:575
+#: ../../install_steps_interactive.pm_.c:655
#, c-format
msgid "Cd-Rom labeled \"%s\""
-msgstr "CD-ROM č. \"%s\""
+msgstr "CD-ROM označené \"%s\""
-#: ../../install_steps_interactive.pm_.c:603
+#: ../../install_steps_interactive.pm_.c:684
msgid ""
"Installing package %s\n"
"%d%%"
@@ -3795,11 +4924,11 @@ msgstr ""
"Instaluji balíček %s\n"
"%d%%"
-#: ../../install_steps_interactive.pm_.c:612
+#: ../../install_steps_interactive.pm_.c:693
msgid "Post-install configuration"
msgstr "Nastavení po instalaci"
-#: ../../install_steps_interactive.pm_.c:637
+#: ../../install_steps_interactive.pm_.c:718
msgid ""
"You have now the possibility to download software aimed for encryption.\n"
"\n"
@@ -3837,7 +4966,7 @@ msgid ""
"Altadena California 91001\n"
"USA"
msgstr ""
-"Nyní si můžete stáhnout šifrovací software. Chcete tak učinit Přijmout ?\n"
+"Nyní si můžete stáhnout šifrovací software.\n"
"\n"
"VAROVÁNÍ:\n"
"\n"
@@ -3867,143 +4996,93 @@ msgstr ""
"Altadena California 91001\n"
"USA"
-#: ../../install_steps_interactive.pm_.c:669
+#: ../../install_steps_interactive.pm_.c:750
msgid "Choose a mirror from which to get the packages"
msgstr "Zvolte si zrcadlo(mirror) pro stahování balíčků"
-#: ../../install_steps_interactive.pm_.c:680
+#: ../../install_steps_interactive.pm_.c:761
msgid "Contacting the mirror to get the list of available packages"
msgstr "Stahuji ze zrcadla(mirror) seznam dostupných balíčků"
-#: ../../install_steps_interactive.pm_.c:683
+#: ../../install_steps_interactive.pm_.c:764
msgid "Please choose the packages you want to install."
msgstr "Prosím vyberte si balíčky které chcete nainstalovat."
-#: ../../install_steps_interactive.pm_.c:695
+#: ../../install_steps_interactive.pm_.c:776
msgid "Which is your timezone?"
msgstr "Jaké je vaše časové pásmo?"
-#: ../../install_steps_interactive.pm_.c:697
+#: ../../install_steps_interactive.pm_.c:778
msgid "Is your hardware clock set to GMT?"
-msgstr "Jsou Vaše hardwarové hodiny nastaveny na GMT?"
+msgstr "Jsou vaše hardwarové hodiny nastaveny na GMT?"
-#: ../../install_steps_interactive.pm_.c:735
-msgid "Which printing system do you want to use?"
-msgstr "Který systém chcete použít pro tisk?"
+#: ../../install_steps_interactive.pm_.c:806 ../../printer.pm_.c:22
+#: ../../printerdrake.pm_.c:415
+msgid "Remote CUPS server"
+msgstr "Vzdálený CUPS server"
-#: ../../install_steps_interactive.pm_.c:762
-msgid "No password"
-msgstr "Žádné heslo"
+#: ../../install_steps_interactive.pm_.c:807
+msgid "No printer"
+msgstr "Bez tiskárny"
-#: ../../install_steps_interactive.pm_.c:767
-msgid "Use shadow file"
-msgstr "Použít stínový soubor (shadow)"
+#: ../../install_steps_interactive.pm_.c:821
+msgid "Mouse"
+msgstr "Myš"
-#: ../../install_steps_interactive.pm_.c:767
-msgid "shadow"
-msgstr "stín"
+#: ../../install_steps_interactive.pm_.c:823
+msgid "Timezone"
+msgstr "Časová zóna"
-#: ../../install_steps_interactive.pm_.c:768
-msgid "MD5"
-msgstr "MD5"
+#: ../../install_steps_interactive.pm_.c:824 ../../printerdrake.pm_.c:344
+msgid "Printer"
+msgstr "Tiskárna"
-#: ../../install_steps_interactive.pm_.c:768
-msgid "Use MD5 passwords"
-msgstr "Používat MD5 hesla"
+#: ../../install_steps_interactive.pm_.c:826
+msgid "ISDN card"
+msgstr "ISDN karta"
-#: ../../install_steps_interactive.pm_.c:770
-msgid "Use NIS"
-msgstr "Používat NIS"
+#: ../../install_steps_interactive.pm_.c:829
+msgid "Sound card"
+msgstr "Zvuková karta"
-#: ../../install_steps_interactive.pm_.c:770
-msgid "yellow pages"
-msgstr "žluté stránky"
+#: ../../install_steps_interactive.pm_.c:832
+msgid "TV card"
+msgstr "TV karta"
-#: ../../install_steps_interactive.pm_.c:776
+#: ../../install_steps_interactive.pm_.c:862
+msgid "Which printing system do you want to use?"
+msgstr "Který systém chcete použít pro tisk?"
+
+#: ../../install_steps_interactive.pm_.c:896
+msgid "No password"
+msgstr "Žádné heslo"
+
+#: ../../install_steps_interactive.pm_.c:901
#, c-format
msgid "This password is too simple (must be at least %d characters long)"
msgstr "Toto heslo je příliš jednoduché (musí být alespoň %d znaků dlouhé)"
-#: ../../install_steps_interactive.pm_.c:783
+#: ../../install_steps_interactive.pm_.c:907
+msgid "Use NIS"
+msgstr "Používat NIS"
+
+#: ../../install_steps_interactive.pm_.c:907
+msgid "yellow pages"
+msgstr "žluté stránky - NIS"
+
+#: ../../install_steps_interactive.pm_.c:912
msgid "Authentification NIS"
msgstr "Ověření pravosti NIS"
-#: ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_interactive.pm_.c:913
msgid "NIS Domain"
msgstr "NIS Doména"
-#: ../../install_steps_interactive.pm_.c:784
+#: ../../install_steps_interactive.pm_.c:914
msgid "NIS Server"
msgstr "NIS Server"
-#: ../../install_steps_interactive.pm_.c:809
-#: ../../standalone/adduserdrake_.c:36
-msgid "Accept user"
-msgstr "Vytvořit uživatele"
-
-#: ../../install_steps_interactive.pm_.c:809
-#: ../../standalone/adduserdrake_.c:36
-msgid "Add user"
-msgstr "Přidat uživatele"
-
-#: ../../install_steps_interactive.pm_.c:810
-#: ../../standalone/adduserdrake_.c:37
-#, c-format
-msgid "(already added %s)"
-msgstr "(už byl přidán %s)"
-
-#: ../../install_steps_interactive.pm_.c:810
-#: ../../standalone/adduserdrake_.c:37
-#, c-format
-msgid ""
-"Enter a user\n"
-"%s"
-msgstr ""
-"Zadejte uživatele\n"
-"%s"
-
-#: ../../install_steps_interactive.pm_.c:812
-#: ../../standalone/adduserdrake_.c:39
-msgid "Real name"
-msgstr "Skutečné jméno"
-
-#: ../../install_steps_interactive.pm_.c:813 ../../printerdrake.pm_.c:93
-#: ../../printerdrake.pm_.c:127 ../../standalone/adduserdrake_.c:40
-msgid "User name"
-msgstr "Uživatelské jméno"
-
-#: ../../install_steps_interactive.pm_.c:818
-#: ../../standalone/adduserdrake_.c:45
-msgid "Shell"
-msgstr "Shell"
-
-#: ../../install_steps_interactive.pm_.c:820
-#: ../../standalone/adduserdrake_.c:47
-msgid "Icon"
-msgstr "Ikona"
-
-#: ../../install_steps_interactive.pm_.c:830
-#: ../../standalone/adduserdrake_.c:57
-msgid "This password is too simple"
-msgstr "Toto heslo je příliš jednoduché"
-
-#: ../../install_steps_interactive.pm_.c:831
-#: ../../standalone/adduserdrake_.c:58
-msgid "Please give a user name"
-msgstr "Prosím zadejte uživatelské jméno"
-
-#: ../../install_steps_interactive.pm_.c:832
-#: ../../standalone/adduserdrake_.c:59
-msgid ""
-"The user name must contain only lower cased letters, numbers, `-' and `_'"
-msgstr "Uživatelské jméno může obsahovat pouze malá písmena, čísla, `-' a `_'"
-
-#: ../../install_steps_interactive.pm_.c:833
-#: ../../standalone/adduserdrake_.c:60
-msgid "This user name is already added"
-msgstr "Toto uživatelské jméno už bylo přidáno"
-
-#: ../../install_steps_interactive.pm_.c:857
+#: ../../install_steps_interactive.pm_.c:948
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 "
@@ -4020,28 +5099,28 @@ msgid ""
"first\n"
"drive and press \"Ok\"."
msgstr ""
-"Pomocí startovací diskety můžete nastartovat Linux, bez použití normálního\n"
+"Pomocí startovací diskety můžete spustit Linux bez použití normálního\n"
"zaváděcího programu (bootloader). To je užitečné pokud nechcete instalovat\n"
-"SILO, nebo jiný operační systém odstraní SILO, nebo SILO\n"
-"na Vašem počítači nefunguje. Vlastní startovací disketa také může být\n"
-"použita spolu s\"Mandrake záchranným diskem\" (rescue image), což poskytuje\n"
+"SILO nebo jiný operační systém odstraní SILO, nebo SILO\n"
+"na vašem počítači nefunguje. Vlastní startovací disketa také může být\n"
+"použita spolu se záchranným diskem Mandraku (rescue image), což poskytuje\n"
"účinnou pomoc při havárii systému.\n"
"Jestliže chcete vytvořit startovací disketu, nejdříve vložte disketu do\n"
"mechaniky a potom stiskněte \"Ok\"."
-#: ../../install_steps_interactive.pm_.c:873
+#: ../../install_steps_interactive.pm_.c:964
msgid "First floppy drive"
-msgstr "První disketa"
+msgstr "první mechaniky"
-#: ../../install_steps_interactive.pm_.c:874
+#: ../../install_steps_interactive.pm_.c:965
msgid "Second floppy drive"
-msgstr "Druhá disketa"
+msgstr "druhé mechaniky"
-#: ../../install_steps_interactive.pm_.c:875
+#: ../../install_steps_interactive.pm_.c:966
msgid "Skip"
msgstr "Přeskočit"
-#: ../../install_steps_interactive.pm_.c:880
+#: ../../install_steps_interactive.pm_.c:971
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 "
@@ -4054,39 +5133,40 @@ msgid ""
"system\n"
"failures. Would you like to create a bootdisk for your system?"
msgstr ""
-"Pomocí startovací diskety můžete nastartovat Linux, bez použití normálního\n"
+"Pomocí startovací diskety můžete spustit Linux bez použití normálního\n"
"zaváděcího programu (bootloader). To je užitečné pokud nechcete instalovat\n"
"LILO (nebo Grub), nebo jiný operační systém odstraní LILO, nebo LILO\n"
-"na Vašem počítači nefunguje. Vlastní startovací disketa také může být\n"
-"použita spolu s\"Mandrake záchranným diskem\" (rescue image), což poskytuje\n"
-"účinnou pomoc při havárii systému. Chcete vytvořit startovací disketu ?"
+"na vašem počítači nefunguje. Vlastní startovací disketa také může být\n"
+"použita spolu s \"Mandrake záchranným diskem\" (rescue image), což "
+"poskytuje\n"
+"účinnou pomoc při havárii systému. Chcete vytvořit startovací disketu?"
-#: ../../install_steps_interactive.pm_.c:889
+#: ../../install_steps_interactive.pm_.c:980
msgid "Sorry, no floppy drive available"
msgstr "Bohužel není dostupná žádná disketová mechanika"
-#: ../../install_steps_interactive.pm_.c:892
+#: ../../install_steps_interactive.pm_.c:984
msgid "Choose the floppy drive you want to use to make the bootdisk"
-msgstr "Zvolte mechaniku kde chcete vytvořit startovací disketu"
+msgstr "Zvolte mechaniku, kde chcete vytvořit startovací disketu"
-#: ../../install_steps_interactive.pm_.c:898
+#: ../../install_steps_interactive.pm_.c:988
#, c-format
msgid "Insert a floppy in drive %s"
-msgstr "Vložte disketu do mechaniky %s"
+msgstr "Vložte disketu do %s"
-#: ../../install_steps_interactive.pm_.c:901
+#: ../../install_steps_interactive.pm_.c:991
msgid "Creating bootdisk"
msgstr "Vytvářím startovací disketu"
-#: ../../install_steps_interactive.pm_.c:908
+#: ../../install_steps_interactive.pm_.c:998
msgid "Preparing bootloader"
msgstr "Připravuji zaváděcí program"
-#: ../../install_steps_interactive.pm_.c:917
+#: ../../install_steps_interactive.pm_.c:1007
msgid "Do you want to use aboot?"
msgstr "Chcete použít aboot?"
-#: ../../install_steps_interactive.pm_.c:920
+#: ../../install_steps_interactive.pm_.c:1010
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
@@ -4094,123 +5174,67 @@ msgstr ""
"Stala se chyba při instalaci aboot,\n"
"mám se pokusit o instalaci i když to zruší první oddíl na disku?"
-#: ../../install_steps_interactive.pm_.c:929
+#: ../../install_steps_interactive.pm_.c:1019
msgid "Installation of bootloader failed. The following error occured:"
msgstr "Instalace zaváděcího programu neuspěla. Stala se tato chyba:"
-#: ../../install_steps_interactive.pm_.c:943 ../../standalone/draksec_.c:20
-msgid "Welcome To Crackers"
-msgstr "Dveře dokořán"
-
-#: ../../install_steps_interactive.pm_.c:944 ../../standalone/draksec_.c:21
-msgid "Poor"
-msgstr "Slabá"
+#: ../../install_steps_interactive.pm_.c:1027
+msgid ""
+"You may need to change your Open Firmware boot-device to\n"
+" enable the bootloader. If you don't see the bootloader prompt at\n"
+" reboot, hold down Command-Option-O-F at reboot and enter:\n"
+" setenv boot-device $of_boot,\\\\tbxi\n"
+" Then type: shut-down\n"
+"At your next boot you should see the bootloader prompt."
+msgstr ""
+"Můžete potřebovat změnit startovací zařízení pro Open Firmware\n"
+" pro aktivaci spouštěcího programu. Pokud nevidíte po spuštění prompt,\n"
+" stiskněte při startu Command-Option-O-F a zadajte:\n"
+" setenv boot-device $of_boot,\\\\tbxi\n"
+" Potom zadejte: shut-down\n"
+"Při dalším spuštění už uvidíte prompt."
-#: ../../install_steps_interactive.pm_.c:945 ../../standalone/draksec_.c:22
+#: ../../install_steps_interactive.pm_.c:1035 ../../standalone/draksec_.c:23
msgid "Low"
msgstr "Nízká"
-#: ../../install_steps_interactive.pm_.c:946 ../../standalone/draksec_.c:23
+#: ../../install_steps_interactive.pm_.c:1036 ../../standalone/draksec_.c:24
msgid "Medium"
msgstr "Střední"
-#: ../../install_steps_interactive.pm_.c:947 ../../standalone/draksec_.c:24
+#: ../../install_steps_interactive.pm_.c:1037 ../../standalone/draksec_.c:25
msgid "High"
msgstr "Vysoká"
-#: ../../install_steps_interactive.pm_.c:948 ../../standalone/draksec_.c:25
-msgid "Paranoid"
-msgstr "Paranoidní"
-
-#: ../../install_steps_interactive.pm_.c:962
-msgid "Miscellaneous questions"
-msgstr "Různé otázky"
-
-#: ../../install_steps_interactive.pm_.c:963
-msgid "(may cause data corruption)"
-msgstr "(může způsobit narušení dat)"
-
-#: ../../install_steps_interactive.pm_.c:963
-msgid "Use hard drive optimisations?"
-msgstr "Mám použít optimalizace hardisku?"
-
-#: ../../install_steps_interactive.pm_.c:964 ../../standalone/draksec_.c:46
+#: ../../install_steps_interactive.pm_.c:1041 ../../standalone/draksec_.c:49
msgid "Choose security level"
msgstr "Zvolte si úroveň zabezpečení"
-#: ../../install_steps_interactive.pm_.c:965
-#, c-format
-msgid "Precise RAM size if needed (found %d MB)"
-msgstr "Pokud třeba, upřesněte velikost RAM (nalezeno %d MB)"
-
-#: ../../install_steps_interactive.pm_.c:967
-msgid "Removable media automounting"
-msgstr "Automatické připojování médií"
-
-#: ../../install_steps_interactive.pm_.c:969
-msgid "Clean /tmp at each boot"
-msgstr "Vyčistit /tmp při každém startu"
-
-#: ../../install_steps_interactive.pm_.c:972
-msgid "Enable multi profiles"
-msgstr "Povolit více profilů"
-
-#: ../../install_steps_interactive.pm_.c:974
-msgid "Enable num lock at startup"
-msgstr "Při startu zapni Numlock"
-
-#: ../../install_steps_interactive.pm_.c:977
-msgid "Give the ram size in MB"
-msgstr "Zadejte velikost paměti v MB"
-
-#: ../../install_steps_interactive.pm_.c:979
-msgid "Can't use supermount in high security level"
-msgstr "Při vysoké úrovni zabezpečení nemůžete použít supermount"
-
-#: ../../install_steps_interactive.pm_.c:981
-msgid ""
-"beware: IN THIS SECURITY LEVEL, ROOT LOGIN AT CONSOLE IS NOT ALLOWED!\n"
-"If you want to be root, you have to login as a user and then use \"su\".\n"
-"More generally, do not expect to use your machine for anything but as a "
-"server.\n"
-"You have been warned."
-msgstr ""
-"Pozor: V TÉTO ÚROVNI ZABEZPEČENÍ NENÍ MOŽNÉ SE PŘIHLÁSIT Z KONZOLE JAKO\n"
-"ROOT! Pokud chcete být root, musíte se nejdříve přihlásit jako normální\n"
-"uživatel a potom použít \"su\". Celkově neočekávejte, že budete moct použít\n"
-"počítač k něčemu jinému než jako server.\n"
-"Byli jste varováni."
-
-#: ../../install_steps_interactive.pm_.c:986
-msgid ""
-"Be carefull, having numlock enabled causes a lot of keystrokes to\n"
-"give digits instead of normal letters (eg: pressing `p' gives `6')"
-msgstr ""
-"Dejte si pozor, zda máte zapnutý Numlock, protože jinak mnoho kláves\n"
-"píše čísla místo písmen (např: při stisknutí `p' dostanete `6')"
-
-#: ../../install_steps_interactive.pm_.c:1032
+#: ../../install_steps_interactive.pm_.c:1074
msgid "Do you want to generate an auto install floppy for linux replication?"
-msgstr "Přejete si vytvořit auto instalační disketu pro replikaci Linuxu?"
+msgstr "Přejete si vytvořit disketu pro automatickou replikaci Linuxu?"
-#: ../../install_steps_interactive.pm_.c:1034
+#: ../../install_steps_interactive.pm_.c:1076
#, c-format
msgid "Insert a blank floppy in drive %s"
-msgstr "Vložte prázdnou disketu do mechaniky %s"
+msgstr "Vložte prázdnou disketu do %s"
-#: ../../install_steps_interactive.pm_.c:1049
-#: ../../install_steps_interactive.pm_.c:1079
+#: ../../install_steps_interactive.pm_.c:1090
+#: ../../install_steps_interactive.pm_.c:1122
msgid "Creating auto install floppy"
msgstr "Vytvářím disketu pro automatickou instalaci"
-#: ../../install_steps_interactive.pm_.c:1104
+#: ../../install_steps_interactive.pm_.c:1150
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
+"Některé kroky nebyly dokončeny.\n"
+"\n"
+"Chcete opravdu nyní skončit?"
-#: ../../install_steps_interactive.pm_.c:1113
+#: ../../install_steps_interactive.pm_.c:1161
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
@@ -4222,6 +5246,44 @@ msgid ""
"Information on configuring your system is available in the post\n"
"install chapter of the Official Linux-Mandrake User's Guide."
msgstr ""
+"Gratulujeme vám, instalace je dokončena.\n"
+"Vyjměte startovací média a stiskněte return pro restart.\n"
+"\n"
+"Na opravy této instalace systému Linux-Mandrake se lze informovat\n"
+"na stránce Errata na http://www.linux-mandrake.com/.\n"
+"\n"
+"Informace o konfiguraci systému po instalaci jsou dostupné\n"
+"v dané kapitole oficiální uživatelské příručky pro Linux-Mandrake."
+
+#: ../../install_steps_interactive.pm_.c:1173
+msgid "Generate auto install floppy"
+msgstr "Vytvořit disketu pro automatickou instalaci"
+
+#: ../../install_steps_interactive.pm_.c:1175
+msgid ""
+"The auto install can be fully automated if wanted,\n"
+"in that case it will take over the hard drive!!\n"
+"(this is meant for installing on another box).\n"
+"\n"
+"You may prefer to replay the installation.\n"
+msgstr ""
+"Instalace může být v případě potřeby plně automatická,\n"
+"ale použije se celý disk!!!\n"
+"(v případě instalace na druhý počítač)\n"
+"\n"
+"Takto lze jednoduše zopakovat instalaci.\n"
+
+#: ../../install_steps_interactive.pm_.c:1180
+msgid "Automated"
+msgstr "Automaticky"
+
+#: ../../install_steps_interactive.pm_.c:1180
+msgid "Replay"
+msgstr "Zopakovat"
+
+#: ../../install_steps_interactive.pm_.c:1183
+msgid "Save packages selection"
+msgstr "Uložit výběr jednotlivých balíčků"
#: ../../install_steps_newt.pm_.c:22
#, c-format
@@ -4232,9 +5294,17 @@ msgstr "Mandrake Linux Instalace %s"
msgid ""
" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen "
msgstr ""
-" <Tab>/<Alt-Tab> přep. mezi prvky | <Space> výběr | <F12> další obraz."
+" <Tab>/<Alt-Tab> přepn. mezi prvky | <Space> výběr | <F12> další obraz."
+
+#: ../../interactive.pm_.c:65
+msgid "kdesu missing"
+msgstr "chybí kdesu"
-#: ../../interactive.pm_.c:273
+#: ../../interactive.pm_.c:263
+msgid "Advanced"
+msgstr "Rozšíření"
+
+#: ../../interactive.pm_.c:286
msgid "Please wait"
msgstr "Prosím počkejte"
@@ -4251,270 +5321,282 @@ msgstr "Špatná volba, zkuste to znovu\n"
#: ../../interactive_stdio.pm_.c:39
#, c-format
msgid " ? (default %s) "
-msgstr " ? (standardně %s) "
+msgstr " ? (výchozí %s) "
#: ../../interactive_stdio.pm_.c:52
#, c-format
msgid "Your choice? (default %s) "
-msgstr "Vaše volba? (standardně %s)"
+msgstr "Vaše volba? (výchozí %s)"
#: ../../interactive_stdio.pm_.c:72
#, c-format
msgid "Your choice? (default %s enter `none' for none) "
-msgstr "Vaše volba? (standardně %s; zadejte `none' pro nic) "
+msgstr "Vaše volba? (výchozí %s; zadejte 'nic' pro nic) "
-#: ../../keyboard.pm_.c:105 ../../keyboard.pm_.c:135
+#: ../../keyboard.pm_.c:124 ../../keyboard.pm_.c:154
msgid "Czech (QWERTZ)"
msgstr "České (QWERTZ)"
-#: ../../keyboard.pm_.c:106 ../../keyboard.pm_.c:119 ../../keyboard.pm_.c:138
+#: ../../keyboard.pm_.c:125 ../../keyboard.pm_.c:138 ../../keyboard.pm_.c:157
msgid "German"
msgstr "Německé"
-#: ../../keyboard.pm_.c:107
+#: ../../keyboard.pm_.c:126
msgid "Dvorak"
msgstr "Dvořák"
-#: ../../keyboard.pm_.c:108 ../../keyboard.pm_.c:144
+#: ../../keyboard.pm_.c:127 ../../keyboard.pm_.c:163
msgid "Spanish"
msgstr "Španělské"
-#: ../../keyboard.pm_.c:109 ../../keyboard.pm_.c:145
+#: ../../keyboard.pm_.c:128 ../../keyboard.pm_.c:164
msgid "Finnish"
msgstr "Finské"
-#: ../../keyboard.pm_.c:110 ../../keyboard.pm_.c:120 ../../keyboard.pm_.c:146
+#: ../../keyboard.pm_.c:129 ../../keyboard.pm_.c:139 ../../keyboard.pm_.c:165
msgid "French"
msgstr "Francouzské"
-#: ../../keyboard.pm_.c:111 ../../keyboard.pm_.c:166
+#: ../../keyboard.pm_.c:130 ../../keyboard.pm_.c:186
msgid "Norwegian"
msgstr "Norské"
-#: ../../keyboard.pm_.c:112
+#: ../../keyboard.pm_.c:131
msgid "Polish"
msgstr "Polské"
-#: ../../keyboard.pm_.c:113 ../../keyboard.pm_.c:171
+#: ../../keyboard.pm_.c:132 ../../keyboard.pm_.c:191
msgid "Russian"
msgstr "Ruské"
-#: ../../keyboard.pm_.c:114 ../../keyboard.pm_.c:182
+#: ../../keyboard.pm_.c:133 ../../keyboard.pm_.c:202
msgid "UK keyboard"
msgstr "UK-Britské"
-#: ../../keyboard.pm_.c:115 ../../keyboard.pm_.c:118 ../../keyboard.pm_.c:183
+#: ../../keyboard.pm_.c:134 ../../keyboard.pm_.c:137 ../../keyboard.pm_.c:203
msgid "US keyboard"
msgstr "US-Americké"
-#: ../../keyboard.pm_.c:122
+#: ../../keyboard.pm_.c:141
msgid "Armenian (old)"
msgstr "Arménské (staré)"
-#: ../../keyboard.pm_.c:123
+#: ../../keyboard.pm_.c:142
msgid "Armenian (typewriter)"
msgstr "Arménské (psací stroj)"
-#: ../../keyboard.pm_.c:124
+#: ../../keyboard.pm_.c:143
msgid "Armenian (phonetic)"
msgstr "Arménské (foneticky)"
-#: ../../keyboard.pm_.c:127
+#: ../../keyboard.pm_.c:146
msgid "Azerbaidjani (latin)"
msgstr "Ázerbajdžánské (latinka)"
-#: ../../keyboard.pm_.c:128
+#: ../../keyboard.pm_.c:147
msgid "Azerbaidjani (cyrillic)"
msgstr "Ázerbajdžánské (cyrilice)"
-#: ../../keyboard.pm_.c:129
+#: ../../keyboard.pm_.c:148
msgid "Belgian"
msgstr "Belgické"
-#: ../../keyboard.pm_.c:130
+#: ../../keyboard.pm_.c:149
msgid "Bulgarian"
msgstr "Bulharské"
-#: ../../keyboard.pm_.c:131
+#: ../../keyboard.pm_.c:150
msgid "Brazilian (ABNT-2)"
msgstr "Brazilské (ABNT-2)"
-#: ../../keyboard.pm_.c:132
+#: ../../keyboard.pm_.c:151
msgid "Belarusian"
msgstr "Běloruské"
-#: ../../keyboard.pm_.c:133
+#: ../../keyboard.pm_.c:152
msgid "Swiss (German layout)"
msgstr "Švýcarské (Německý styl)"
-#: ../../keyboard.pm_.c:134
+#: ../../keyboard.pm_.c:153
msgid "Swiss (French layout)"
msgstr "Švýcarské (Francouzský styl)"
-#: ../../keyboard.pm_.c:136
+#: ../../keyboard.pm_.c:155
msgid "Czech (QWERTY)"
msgstr "České (QWERTY)"
-#: ../../keyboard.pm_.c:137
+#: ../../keyboard.pm_.c:156
msgid "Czech (Programmers)"
-msgstr ""
+msgstr "České (programátorské)"
-#: ../../keyboard.pm_.c:139
+#: ../../keyboard.pm_.c:158
msgid "German (no dead keys)"
msgstr "Německé (bez mrtvých kláves)"
-#: ../../keyboard.pm_.c:140
+#: ../../keyboard.pm_.c:159
msgid "Danish"
msgstr "Dánské"
-#: ../../keyboard.pm_.c:141
+#: ../../keyboard.pm_.c:160
msgid "Dvorak (US)"
msgstr "Dvořák (US)"
-#: ../../keyboard.pm_.c:142
+#: ../../keyboard.pm_.c:161
msgid "Dvorak (Norwegian)"
msgstr "Dvořák (Norské)"
-#: ../../keyboard.pm_.c:143
+#: ../../keyboard.pm_.c:162
msgid "Estonian"
msgstr "Estonské"
-#: ../../keyboard.pm_.c:147
+#: ../../keyboard.pm_.c:166
msgid "Georgian (\"Russian\" layout)"
msgstr "Gruzínské (\"Ruské\" rozložení)"
-#: ../../keyboard.pm_.c:148
+#: ../../keyboard.pm_.c:167
msgid "Georgian (\"Latin\" layout)"
msgstr "Gruzínské (rozložení \"Latin\")"
-#: ../../keyboard.pm_.c:149
+#: ../../keyboard.pm_.c:168
msgid "Greek"
msgstr "Řecké"
-#: ../../keyboard.pm_.c:150
+#: ../../keyboard.pm_.c:169
msgid "Hungarian"
msgstr "Maďarské"
-#: ../../keyboard.pm_.c:151
+#: ../../keyboard.pm_.c:170
msgid "Croatian"
msgstr "Chorvatské"
-#: ../../keyboard.pm_.c:152
+#: ../../keyboard.pm_.c:171
msgid "Israeli"
msgstr "Izraelské"
-#: ../../keyboard.pm_.c:153
+#: ../../keyboard.pm_.c:172
msgid "Israeli (Phonetic)"
msgstr "Izraelské (foneticky)"
-#: ../../keyboard.pm_.c:154
+#: ../../keyboard.pm_.c:173
msgid "Iranian"
msgstr "Íránské"
-#: ../../keyboard.pm_.c:155
+#: ../../keyboard.pm_.c:174
msgid "Icelandic"
msgstr "Islandské"
-#: ../../keyboard.pm_.c:156
+#: ../../keyboard.pm_.c:175
msgid "Italian"
msgstr "Italské"
-#: ../../keyboard.pm_.c:157
+#: ../../keyboard.pm_.c:176
msgid "Japanese 106 keys"
msgstr "Japonská 106 kláves"
-#: ../../keyboard.pm_.c:158
+#: ../../keyboard.pm_.c:177
+msgid "Korean keyboard"
+msgstr "Korejská klávesnice"
+
+#: ../../keyboard.pm_.c:178
msgid "Latin American"
msgstr "Latinsko-Americké"
-#: ../../keyboard.pm_.c:160
+#: ../../keyboard.pm_.c:179
+msgid "Macedonian"
+msgstr "Makedonské"
+
+#: ../../keyboard.pm_.c:180
msgid "Dutch"
msgstr "Holandské"
-#: ../../keyboard.pm_.c:161
+#: ../../keyboard.pm_.c:181
msgid "Lithuanian AZERTY (old)"
msgstr "Litevské AZERTY (stará)"
-#: ../../keyboard.pm_.c:163
+#: ../../keyboard.pm_.c:183
msgid "Lithuanian AZERTY (new)"
msgstr "Litevské AZERTY (nová)"
-#: ../../keyboard.pm_.c:164
+#: ../../keyboard.pm_.c:184
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Litevské \"číselná řada\" QWERTY"
-#: ../../keyboard.pm_.c:165
+#: ../../keyboard.pm_.c:185
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Litevské \"foneticky\" QWERTY"
-#: ../../keyboard.pm_.c:167
+#: ../../keyboard.pm_.c:187
msgid "Polish (qwerty layout)"
msgstr "Polské (rozložení QWERTY)"
-#: ../../keyboard.pm_.c:168
+#: ../../keyboard.pm_.c:188
msgid "Polish (qwertz layout)"
msgstr "Polské (rozložení QWERTZ)"
-#: ../../keyboard.pm_.c:169
+#: ../../keyboard.pm_.c:189
msgid "Portuguese"
msgstr "Portugalské"
-#: ../../keyboard.pm_.c:170
+#: ../../keyboard.pm_.c:190
msgid "Canadian (Quebec)"
msgstr "Kanadské (Quebec)"
-#: ../../keyboard.pm_.c:172
+#: ../../keyboard.pm_.c:192
msgid "Russian (Yawerty)"
msgstr "Ruské (Yawerty)"
-#: ../../keyboard.pm_.c:173
+#: ../../keyboard.pm_.c:193
msgid "Swedish"
msgstr "Švédské"
-#: ../../keyboard.pm_.c:174
+#: ../../keyboard.pm_.c:194
msgid "Slovenian"
msgstr "Slovinské"
-#: ../../keyboard.pm_.c:175
+#: ../../keyboard.pm_.c:195
msgid "Slovakian (QWERTZ)"
msgstr "Slovenské (QWERTZ)"
-#: ../../keyboard.pm_.c:176
+#: ../../keyboard.pm_.c:196
msgid "Slovakian (QWERTY)"
msgstr "Slovenské (QWERTY)"
-#: ../../keyboard.pm_.c:177
+#: ../../keyboard.pm_.c:197
msgid "Slovakian (Programmers)"
-msgstr ""
+msgstr "Slovenské (programátorská)"
-#: ../../keyboard.pm_.c:178
+#: ../../keyboard.pm_.c:198
msgid "Thai keyboard"
msgstr "Thaiské"
-#: ../../keyboard.pm_.c:179
+#: ../../keyboard.pm_.c:199
msgid "Turkish (traditional \"F\" model)"
msgstr "Turecké (tradiční model \"F\")"
-#: ../../keyboard.pm_.c:180
+#: ../../keyboard.pm_.c:200
msgid "Turkish (modern \"Q\" model)"
msgstr "Turecké (moderní model \"Q\")"
-#: ../../keyboard.pm_.c:181
+#: ../../keyboard.pm_.c:201
msgid "Ukrainian"
msgstr "Ukrajinské"
-#: ../../keyboard.pm_.c:184
+#: ../../keyboard.pm_.c:204
msgid "US keyboard (international)"
msgstr "US (mezinárodní)"
-#: ../../keyboard.pm_.c:185
+#: ../../keyboard.pm_.c:205
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamská \"číselná řada\" QWERTY"
-#: ../../keyboard.pm_.c:186
-msgid "Yugoslavian (latin layout)"
+#: ../../keyboard.pm_.c:206
+msgid "Yugoslavian (latin/cyrillic)"
msgstr "Jugoslávské (rozložení latin)"
+#: ../../lvm.pm_.c:70
+msgid "Remove the logical volumes first\n"
+msgstr "Odeberte nejdříve logické disky\n"
+
#: ../../mouse.pm_.c:25
msgid "Sun - Mouse"
msgstr "Sun - myš"
@@ -4528,19 +5610,18 @@ msgid "Logitech MouseMan+"
msgstr "Logitech MouseMan+"
#: ../../mouse.pm_.c:33
-#, fuzzy
msgid "Generic PS2 Wheel Mouse"
-msgstr "Standardní myš"
+msgstr "Standardní PS2 myš s kolečkem"
#: ../../mouse.pm_.c:34
msgid "GlidePoint"
msgstr "GlidePoint"
-#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:61
+#: ../../mouse.pm_.c:36 ../../mouse.pm_.c:62
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"
-#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:57
+#: ../../mouse.pm_.c:37 ../../mouse.pm_.c:58
msgid "Genius NetMouse"
msgstr "Genius NetMouse"
@@ -4548,122 +5629,139 @@ msgstr "Genius NetMouse"
msgid "Genius NetScroll"
msgstr "Genius NetScroll"
-#: ../../mouse.pm_.c:43
-msgid "Generic"
-msgstr "Obecný"
+#: ../../mouse.pm_.c:43 ../../mouse.pm_.c:67
+msgid "1 button"
+msgstr "1 tlačítko"
#: ../../mouse.pm_.c:44
+msgid "Generic"
+msgstr "Obecná"
+
+#: ../../mouse.pm_.c:45
msgid "Wheel"
-msgstr "Kolečko"
+msgstr "S kolečkem"
-#: ../../mouse.pm_.c:47
+#: ../../mouse.pm_.c:48
msgid "serial"
-msgstr "sériová"
+msgstr "Sériová"
-#: ../../mouse.pm_.c:49
+#: ../../mouse.pm_.c:50
msgid "Generic 2 Button Mouse"
-msgstr "Standardní třítlačítková Myš"
+msgstr "Standardní dvoutlačítková myš"
-#: ../../mouse.pm_.c:50
+#: ../../mouse.pm_.c:51
msgid "Generic 3 Button Mouse"
-msgstr "Standardní třítlačítková Myš"
+msgstr "Standardní třítlačítková myš"
-#: ../../mouse.pm_.c:51
+#: ../../mouse.pm_.c:52
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"
-#: ../../mouse.pm_.c:52
+#: ../../mouse.pm_.c:53
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan"
-#: ../../mouse.pm_.c:53
+#: ../../mouse.pm_.c:54
msgid "Mouse Systems"
msgstr "Mouse Systems"
-#: ../../mouse.pm_.c:55
+#: ../../mouse.pm_.c:56
msgid "Logitech CC Series"
msgstr "Logitech série CC (sériová)"
-#: ../../mouse.pm_.c:56
+#: ../../mouse.pm_.c:57
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"
-#: ../../mouse.pm_.c:58
+#: ../../mouse.pm_.c:59
msgid "MM Series"
msgstr "MM Series"
-#: ../../mouse.pm_.c:59
+#: ../../mouse.pm_.c:60
msgid "MM HitTablet"
msgstr "MM HitTablet"
-#: ../../mouse.pm_.c:60
+#: ../../mouse.pm_.c:61
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Logitech Mouse (sériová, starý C7 typ)"
-#: ../../mouse.pm_.c:64
-#, fuzzy
+#: ../../mouse.pm_.c:65
msgid "busmouse"
-msgstr "Bez myši"
+msgstr "Busmouse"
-#: ../../mouse.pm_.c:66
+#: ../../mouse.pm_.c:68
msgid "2 buttons"
-msgstr "2 tačítka"
+msgstr "2 tlačítka"
-#: ../../mouse.pm_.c:67
+#: ../../mouse.pm_.c:69
msgid "3 buttons"
msgstr "3 tlačítka"
-#: ../../mouse.pm_.c:70
+#: ../../mouse.pm_.c:72
msgid "none"
-msgstr "Žádný"
+msgstr "Žádná"
-#: ../../mouse.pm_.c:72
+#: ../../mouse.pm_.c:74
msgid "No mouse"
msgstr "Bez myši"
-#: ../../my_gtk.pm_.c:243
+#: ../../my_gtk.pm_.c:356
+msgid "Finish"
+msgstr "Ukončit"
+
+#: ../../my_gtk.pm_.c:356
msgid "Next ->"
msgstr "Další ->"
-#: ../../my_gtk.pm_.c:486
+#: ../../my_gtk.pm_.c:357
+msgid "<- Previous"
+msgstr "<- Předchozí"
+
+#: ../../my_gtk.pm_.c:616
msgid "Is this correct?"
msgstr "Je to správně?"
-#: ../../netconnect.pm_.c:93 ../../netconnect_new.pm_.c:151
+#: ../../netconnect.pm_.c:141
msgid "Internet configuration"
msgstr "Nastavení Internetu"
-#: ../../netconnect.pm_.c:94 ../../netconnect_new.pm_.c:152
+#: ../../netconnect.pm_.c:142
msgid "Do you want to try to connect to the Internet now?"
msgstr "Chcete se nyní pokusit připojit k internetu?"
-#: ../../netconnect.pm_.c:101 ../../netconnect_new.pm_.c:159
-#, fuzzy
+#: ../../netconnect.pm_.c:146
msgid "Testing your connection..."
-msgstr "Nastavení připojení k internetu"
+msgstr "Testuji připojení k internetu..."
# ../.vygenerovat ./netconnect.pm_.c:528
-#: ../../netconnect.pm_.c:106 ../../netconnect_new.pm_.c:164
-#, fuzzy
+#: ../../netconnect.pm_.c:152 ../../standalone/draknet_.c:196
msgid "The system is now connected to Internet."
-msgstr "Nepřipojovat se k internetu"
+msgstr "Počítač je nyní připojen k internetu"
-#: ../../netconnect.pm_.c:107 ../../netconnect_new.pm_.c:165
-#, fuzzy
+#: ../../netconnect.pm_.c:153
+msgid "For Security reason, it will be disconnected now."
+msgstr "Z bezpečnostních důvodů bude spojení ukončeno."
+
+#: ../../netconnect.pm_.c:154 ../../standalone/draknet_.c:196
msgid ""
"The system doesn't seem to be connected to internet.\n"
"Try to reconfigure your connection."
-msgstr "Připojení k Internetu / Nastavení místní sítě"
+msgstr ""
+"Nepodařilo se připojit k Internetu.\n"
+"Pokuste se překonfigurovat dané připojení."
+
+#: ../../netconnect.pm_.c:159 ../../netconnect.pm_.c:901
+#: ../../netconnect.pm_.c:930 ../../netconnect.pm_.c:1008
+msgid "Network Configuration"
+msgstr "Nastavení sítě"
-#: ../../netconnect.pm_.c:141 ../../netconnect.pm_.c:213
-#: ../../netconnect.pm_.c:232 ../../netconnect.pm_.c:244
-#: ../../netconnect.pm_.c:256 ../../netconnect_new.pm_.c:226
-#: ../../netconnect_new.pm_.c:300 ../../netconnect_new.pm_.c:319
-#: ../../netconnect_new.pm_.c:331 ../../netconnect_new.pm_.c:343
+#: ../../netconnect.pm_.c:220 ../../netconnect.pm_.c:264
+#: ../../netconnect.pm_.c:274 ../../netconnect.pm_.c:281
+#: ../../netconnect.pm_.c:291
msgid "ISDN Configuration"
msgstr "Nastavení ISDN"
-#: ../../netconnect.pm_.c:141 ../../netconnect_new.pm_.c:226
+#: ../../netconnect.pm_.c:220
msgid ""
"Select your provider.\n"
" If it's not in the list, choose Unlisted"
@@ -4671,115 +5769,107 @@ msgstr ""
"Vyberte si svého poskytovatele internetu.\n"
" Pokud není na seznamu, vyberte si Unlisted"
-#: ../../netconnect.pm_.c:158 ../../netconnect_new.pm_.c:245
+#: ../../netconnect.pm_.c:234
msgid "Connection Configuration"
-msgstr "Nastavení Připojení"
+msgstr "Nastavení připojení"
-#: ../../netconnect.pm_.c:159 ../../netconnect_new.pm_.c:246
+#: ../../netconnect.pm_.c:235
msgid "Please fill or check the field below"
msgstr "Prosím vyplňte nebo zkontrolujte následující údaje"
-#: ../../netconnect.pm_.c:161 ../../netconnect_new.pm_.c:248
+#: ../../netconnect.pm_.c:237 ../../standalone/draknet_.c:550
msgid "Card IRQ"
msgstr "IRQ karty"
-#: ../../netconnect.pm_.c:162 ../../netconnect_new.pm_.c:249
+#: ../../netconnect.pm_.c:238 ../../standalone/draknet_.c:551
msgid "Card mem (DMA)"
msgstr "DMA karty"
-#: ../../netconnect.pm_.c:163 ../../netconnect_new.pm_.c:250
+#: ../../netconnect.pm_.c:239 ../../standalone/draknet_.c:552
msgid "Card IO"
msgstr "IO karty"
-#: ../../netconnect.pm_.c:164 ../../netconnect_new.pm_.c:251
+#: ../../netconnect.pm_.c:240 ../../standalone/draknet_.c:553
msgid "Card IO_0"
msgstr "IO_0 karty"
-#: ../../netconnect.pm_.c:165 ../../netconnect_new.pm_.c:252
+#: ../../netconnect.pm_.c:241 ../../standalone/draknet_.c:554
msgid "Card IO_1"
msgstr "IO_1 karty"
-#: ../../netconnect.pm_.c:166 ../../netconnect_new.pm_.c:253
+#: ../../netconnect.pm_.c:242 ../../standalone/draknet_.c:555
msgid "Your personal phone number"
msgstr "Vaše osobní telefonní číslo"
-#: ../../netconnect.pm_.c:168 ../../netconnect_new.pm_.c:255
+#: ../../netconnect.pm_.c:243 ../../standalone/draknet_.c:556
msgid "Provider name (ex provider.net)"
msgstr "Jméno poskytovatele (např provider.net)"
-#: ../../netconnect.pm_.c:169 ../../netconnect_new.pm_.c:256
+#: ../../netconnect.pm_.c:244 ../../standalone/draknet_.c:557
msgid "Provider phone number"
-msgstr "Tel. číslo poskytovatele"
+msgstr "Telefonní číslo poskytovatele"
-#: ../../netconnect.pm_.c:170 ../../netconnect_new.pm_.c:257
+#: ../../netconnect.pm_.c:245
msgid "Provider dns 1"
msgstr "Primární DNS poskytovatele"
-#: ../../netconnect.pm_.c:171 ../../netconnect_new.pm_.c:258
+#: ../../netconnect.pm_.c:246
msgid "Provider dns 2"
msgstr "Sekundární DNS poskytovatele"
-#: ../../netconnect.pm_.c:172 ../../netconnect_new.pm_.c:259
+#: ../../netconnect.pm_.c:247 ../../standalone/draknet_.c:562
msgid "Dialing mode"
msgstr "Typ vytáčení"
-#: ../../netconnect.pm_.c:174 ../../netconnect_new.pm_.c:261
+#: ../../netconnect.pm_.c:248 ../../standalone/draknet_.c:560
msgid "Account Login (user name)"
msgstr "Váš účet (uživatelské jméno)"
-#: ../../netconnect.pm_.c:175 ../../netconnect_new.pm_.c:262
+#: ../../netconnect.pm_.c:249 ../../standalone/draknet_.c:561
msgid "Account Password"
msgstr "Heslo vašeho účtu"
-#: ../../netconnect.pm_.c:176 ../../netconnect_new.pm_.c:263
-msgid "Confirm Password"
-msgstr "Heslo vašeho účtu (ještě jednou)"
-
-#: ../../netconnect.pm_.c:208 ../../netconnect_new.pm_.c:295
+#: ../../netconnect.pm_.c:259
msgid "Europe"
msgstr "Evropa"
-#: ../../netconnect.pm_.c:208 ../../netconnect_new.pm_.c:295
+#: ../../netconnect.pm_.c:259
msgid "Europe (EDSS1)"
msgstr "Evropa (EDSS1)"
-#: ../../netconnect.pm_.c:210 ../../netconnect_new.pm_.c:297
+#: ../../netconnect.pm_.c:261
msgid "Rest of the world"
msgstr "Zbytek světa"
-#: ../../netconnect.pm_.c:210 ../../netconnect_new.pm_.c:297
-msgid "Rest of the world - no D-Channel (leased lines)"
-msgstr "Zbytek světa - žádný D-Channel (leased lines)"
+#: ../../netconnect.pm_.c:261
+msgid ""
+"Rest of the world \n"
+" no D-Channel (leased lines)"
+msgstr ""
+"Zbytek světa \n"
+" žádný D-kanál (leased lines)"
-#: ../../netconnect.pm_.c:214 ../../netconnect_new.pm_.c:301
+#: ../../netconnect.pm_.c:265
msgid "Which protocol do you want to use ?"
msgstr "Který protokol chcete použít?"
-#: ../../netconnect.pm_.c:224 ../../netconnect_new.pm_.c:311
-msgid "ISA / PCMCIA"
-msgstr "ISA / PCMCIA"
-
-#: ../../netconnect.pm_.c:226 ../../netconnect_new.pm_.c:313
-msgid "PCI"
-msgstr "PCI"
+#: ../../netconnect.pm_.c:275
+msgid "What kind of card do you have?"
+msgstr "Jaký typ karty máte?"
-#: ../../netconnect.pm_.c:228 ../../netconnect_new.pm_.c:315
+#: ../../netconnect.pm_.c:276
msgid "I don't know"
msgstr "Nevím"
-#: ../../netconnect.pm_.c:233 ../../netconnect_new.pm_.c:320
-msgid "What kind of card do you have?"
-msgstr "Jaký typ karty máte?"
-
-#: ../../netconnect.pm_.c:239 ../../netconnect_new.pm_.c:326
-msgid "Continue"
-msgstr "Pokračovat"
+#: ../../netconnect.pm_.c:276
+msgid "ISA / PCMCIA"
+msgstr "ISA / PCMCIA"
-#: ../../netconnect.pm_.c:241 ../../netconnect_new.pm_.c:328
-msgid "Abort"
-msgstr "Přerušit"
+#: ../../netconnect.pm_.c:276
+msgid "PCI"
+msgstr "PCI"
-#: ../../netconnect.pm_.c:245 ../../netconnect_new.pm_.c:332
+#: ../../netconnect.pm_.c:282
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
@@ -4792,15 +5882,19 @@ msgstr ""
"\n"
"Jestli máte PCMCIA kartu, musíte znát její IRQ a IO.\n"
-#: ../../netconnect.pm_.c:257 ../../netconnect_new.pm_.c:344
+#: ../../netconnect.pm_.c:286
+msgid "Abort"
+msgstr "Přerušit"
+
+#: ../../netconnect.pm_.c:286
+msgid "Continue"
+msgstr "Pokračovat"
+
+#: ../../netconnect.pm_.c:292
msgid "Which is your ISDN card ?"
msgstr "Kterou z těhto ISND karet máte?"
-#: ../../netconnect.pm_.c:282
-msgid "I have found an ISDN Card:\n"
-msgstr "Našel jsem ISDN kartu:\n"
-
-#: ../../netconnect.pm_.c:288 ../../netconnect_new.pm_.c:367
+#: ../../netconnect.pm_.c:312
msgid ""
"I have detected an ISDN PCI Card, but I don't know the type. Please select "
"one PCI card on the next screen."
@@ -4808,348 +5902,363 @@ msgstr ""
"Našel jsem ISDN PCI kartu, jejíž typ ale neznám. Prosím zvolte si jednu z "
"následujícího seznamu PCI karet."
-#: ../../netconnect.pm_.c:300 ../../netconnect_new.pm_.c:379
+#: ../../netconnect.pm_.c:321
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
"Nenašel jsem žádnou ISDN PCI kartu. Prosím zvolte si jednu z následující "
"nabídky"
-#: ../../netconnect.pm_.c:336 ../../netconnect_new.pm_.c:412
-#, fuzzy
+#: ../../netconnect.pm_.c:369
msgid ""
"No ethernet network adapter has been detected on your system.\n"
"I cannot set up this connection type."
msgstr ""
-"Na Vašem počítači nebyl nalezen žádný síťový adaptér. Spusťte prosím program "
-"pro nastavení hardware."
+"Ve vašem počítači nebyl nalezen žádný síťový adaptér.\n"
+"Nemohu nastavit typ spojení."
-#: ../../netconnect.pm_.c:340 ../../netconnect_new.pm_.c:417
-#: ../../standalone/drakgw_.c:222
+#: ../../netconnect.pm_.c:373 ../../standalone/drakgw_.c:232
msgid "Choose the network interface"
msgstr "Zvolte síťové rozhraní"
-#: ../../netconnect.pm_.c:341 ../../netconnect_new.pm_.c:418
-#, fuzzy
+#: ../../netconnect.pm_.c:374
msgid ""
"Please choose which network adapter you want to use to connect to Internet"
msgstr ""
-"Vyberte si prosím který síťový adaptér chcete použít pro připojení k "
+"Vyberte si prosím, který síťový adaptér chcete použít pro připojení k "
"internetu"
-#: ../../netconnect.pm_.c:356 ../../netconnect.pm_.c:635
-#: ../../netconnect.pm_.c:766 ../../netconnect_new.pm_.c:425
-#: ../../netconnect_new.pm_.c:777 ../../netconnect_new.pm_.c:908
-#: ../../standalone/drakgw_.c:217
+#: ../../netconnect.pm_.c:383 ../../netconnect.pm_.c:697
+#: ../../netconnect.pm_.c:842 ../../standalone/drakgw_.c:223
msgid "Network interface"
msgstr "Síťové rozhraní"
-#: ../../netconnect.pm_.c:357 ../../netconnect_new.pm_.c:426
+#: ../../netconnect.pm_.c:384
msgid ""
"\n"
"Do you agree?"
msgstr ""
+"\n"
+"Souhlasíte?"
-#: ../../netconnect.pm_.c:357 ../../netconnect_new.pm_.c:426
-#, fuzzy
+#: ../../netconnect.pm_.c:384
msgid "I'm about to restart the network device:\n"
-msgstr "Znovu spustím síťové rozhraní. Souhlasíte ?"
+msgstr "Znovu spustím síťové rozhraní:\n"
-#: ../../netconnect.pm_.c:473 ../../netconnect_new.pm_.c:512
+#: ../../netconnect.pm_.c:482
msgid "ADSL configuration"
msgstr "Nastavení ADSL"
-#: ../../netconnect.pm_.c:474 ../../netconnect_new.pm_.c:513
+#: ../../netconnect.pm_.c:483
msgid "Do you want to start your connection at boot?"
msgstr "Chcete se automaticky připojovat po startu počítače?"
-#: ../../netconnect.pm_.c:541 ../../netconnect_new.pm_.c:672
-msgid "Try to find a modem?"
-msgstr "Mám se pokusit najít modem?"
-
-#: ../../netconnect.pm_.c:551 ../../netconnect_new.pm_.c:677
+#: ../../netconnect.pm_.c:618
msgid "Please choose which serial port your modem is connected to."
-msgstr "Ke kterému sériovému portu je Váš modem připojen?"
+msgstr "Ke kterému sériovému portu je váš modem připojen?"
-#: ../../netconnect.pm_.c:556 ../../netconnect_new.pm_.c:682
+#: ../../netconnect.pm_.c:623
msgid "Dialup options"
msgstr "Možnosti vytáčení"
-#: ../../netconnect.pm_.c:557 ../../netconnect_new.pm_.c:683
+#: ../../netconnect.pm_.c:624 ../../standalone/draknet_.c:564
msgid "Connection name"
msgstr "Jméno připojení"
-#: ../../netconnect.pm_.c:558 ../../netconnect_new.pm_.c:684
+#: ../../netconnect.pm_.c:625 ../../standalone/draknet_.c:565
msgid "Phone number"
msgstr "Telefonní číslo"
-#: ../../netconnect.pm_.c:559 ../../netconnect_new.pm_.c:685
+#: ../../netconnect.pm_.c:626 ../../standalone/draknet_.c:566
msgid "Login ID"
msgstr "Přihlašovací jméno"
-#: ../../netconnect.pm_.c:561 ../../netconnect_new.pm_.c:687
+#: ../../netconnect.pm_.c:628 ../../standalone/draknet_.c:568
msgid "Authentication"
msgstr "Ověření"
-#: ../../netconnect.pm_.c:561 ../../netconnect_new.pm_.c:687
+#: ../../netconnect.pm_.c:628 ../../standalone/draknet_.c:568
msgid "PAP"
msgstr "PAP"
-#: ../../netconnect.pm_.c:561 ../../netconnect_new.pm_.c:687
+#: ../../netconnect.pm_.c:628 ../../standalone/draknet_.c:568
msgid "Script-based"
msgstr "Podle scénáře"
-#: ../../netconnect.pm_.c:561 ../../netconnect_new.pm_.c:687
+#: ../../netconnect.pm_.c:628 ../../standalone/draknet_.c:568
msgid "Terminal-based"
msgstr "Pomocí terminálu"
-#: ../../netconnect.pm_.c:562 ../../netconnect_new.pm_.c:688
+#: ../../netconnect.pm_.c:629 ../../standalone/draknet_.c:569
msgid "Domain name"
msgstr "Jméno domény"
-#: ../../netconnect.pm_.c:564 ../../netconnect_new.pm_.c:690
-msgid "First DNS Server"
-msgstr "První DNS Server"
+#: ../../netconnect.pm_.c:630 ../../standalone/draknet_.c:570
+msgid "First DNS Server (optional)"
+msgstr "První DNS Server (nepovinný)"
-#: ../../netconnect.pm_.c:565 ../../netconnect_new.pm_.c:691
-msgid "Second DNS Server"
-msgstr "Druhý DNS Server"
+#: ../../netconnect.pm_.c:631 ../../standalone/draknet_.c:571
+msgid "Second DNS Server (optional)"
+msgstr "Druhý DNS Server (nepovinný)"
-#: ../../netconnect.pm_.c:594 ../../netconnect_new.pm_.c:736
-#, fuzzy
+#: ../../netconnect.pm_.c:698
+msgid ""
+"I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"
+msgstr "Znovu spustím síťové rozhraní $netc->{NET_DEVICE}. Souhlasíte?"
+
+#: ../../netconnect.pm_.c:742
msgid ""
"\n"
-"You can connect to Internet or reconfigure your connection."
-msgstr "Připojení k Internetu / Nastavení místní sítě"
+"You can disconnect or reconfigure your connection."
+msgstr ""
+"\n"
+"Můžete se odpojit nebo překonfigurovat připojení."
-#: ../../netconnect.pm_.c:594 ../../netconnect.pm_.c:598
-#: ../../netconnect_new.pm_.c:736 ../../netconnect_new.pm_.c:740
-#, fuzzy
+#: ../../netconnect.pm_.c:742 ../../netconnect.pm_.c:745
msgid ""
"\n"
"You can reconfigure your connection."
-msgstr "Nastavení připojení k internetu"
+msgstr ""
+"\n"
+"Můžete překonfigurovat připojení."
-# ../.vygenerovat ./netconnect.pm_.c:528
-#: ../../netconnect.pm_.c:594 ../../netconnect_new.pm_.c:736
-#, fuzzy
-msgid "You are not currently connected to Internet."
-msgstr "Nepřipojovat se k internetu"
+#: ../../netconnect.pm_.c:742
+msgid "You are currently connected to internet."
+msgstr "V součastnosti jste připojeni k Internetu"
-#: ../../netconnect.pm_.c:598 ../../netconnect_new.pm_.c:740
+#: ../../netconnect.pm_.c:745
msgid ""
"\n"
-"You can disconnect or reconfigure your connection."
+"You can connect to Internet or reconfigure your connection."
msgstr ""
+"\n"
+"Nemůžete se připojit k Internetu nebo překonfigurovat řipojení."
-# ../.vygenerovat ./netconnect.pm_.c:528
-#: ../../netconnect.pm_.c:598 ../../netconnect_new.pm_.c:740
-#, fuzzy
-msgid "You are currently connected to internet."
-msgstr "Nepřipojovat se k internetu"
+#: ../../netconnect.pm_.c:745
+msgid "You are not currently connected to Internet."
+msgstr "V součastnosti nejste připojeni k Internetu."
-#: ../../netconnect.pm_.c:602 ../../netconnect_new.pm_.c:744
-#, fuzzy
+#: ../../netconnect.pm_.c:749 ../../standalone/net_monitor_.c:81
msgid "Connect to Internet"
msgstr "Připojit se k internetu"
-#: ../../netconnect.pm_.c:604 ../../netconnect_new.pm_.c:746
-#, fuzzy
+#: ../../netconnect.pm_.c:751
msgid "Disconnect from Internet"
msgstr "Odpojit se od internetu"
-#: ../../netconnect.pm_.c:606 ../../netconnect_new.pm_.c:748
-#, fuzzy
+#: ../../netconnect.pm_.c:753
msgid "Configure network connection (LAN or Internet)"
-msgstr "Nastavení připojení k internetu"
+msgstr "Nastavení síťového připojení (LAN nebo Internet)"
-#: ../../netconnect.pm_.c:609 ../../netconnect_new.pm_.c:751
+#: ../../netconnect.pm_.c:756
msgid "Internet connection & configuration"
msgstr "Nastavení a připojení k internetu"
-#: ../../netconnect.pm_.c:636 ../../netconnect.pm_.c:767
-#: ../../netconnect_new.pm_.c:778 ../../netconnect_new.pm_.c:909
-#, fuzzy
-msgid ""
-"I'm about to restart the network device $netc->{NET_DEVICE}. Do you agree?"
-msgstr "Znovu spustím síťové rozhraní. Souhlasíte ?"
-
-#: ../../netconnect.pm_.c:653 ../../netconnect_new.pm_.c:795
-#, fuzzy
-msgid "Configure a normal modem connection"
-msgstr "Nastavení připojení k internetu"
-
-#: ../../netconnect.pm_.c:673 ../../netconnect_new.pm_.c:815
-#, fuzzy
-msgid "Configure an ISDN connection"
-msgstr "Nastavení připojení k internetu"
-
-#: ../../netconnect.pm_.c:678 ../../netconnect_new.pm_.c:820
-msgid "Internal ISDN card"
-msgstr "Interní ISDN kartou"
+#: ../../netconnect.pm_.c:808 ../../netconnect.pm_.c:957
+#: ../../netconnect.pm_.c:967 ../../netconnect.pm_.c:982
+msgid "Network Configuration Wizard"
+msgstr "Průvodce nastavením sítě"
-#: ../../netconnect.pm_.c:680 ../../netconnect_new.pm_.c:822
-#, fuzzy
+#: ../../netconnect.pm_.c:809
msgid "External ISDN modem"
-msgstr "Externím modemem"
+msgstr "Externí ISDN modem"
-#: ../../netconnect.pm_.c:683 ../../netconnect.pm_.c:717
-#: ../../netconnect.pm_.c:729 ../../netconnect.pm_.c:753
-#: ../../netconnect.pm_.c:798 ../../netconnect_new.pm_.c:825
-#: ../../netconnect_new.pm_.c:859 ../../netconnect_new.pm_.c:871
-#: ../../netconnect_new.pm_.c:895 ../../netconnect_new.pm_.c:940
-msgid "Connect to the Internet"
-msgstr "Připojení k internetu"
+#: ../../netconnect.pm_.c:809
+msgid "Internal ISDN card"
+msgstr "Interní ISDN karta"
-#: ../../netconnect.pm_.c:684 ../../netconnect_new.pm_.c:826
+#: ../../netconnect.pm_.c:809
msgid "What kind is your ISDN connection?"
msgstr "Jaké je vaše ISDN připojení?"
-#: ../../netconnect.pm_.c:703 ../../netconnect_new.pm_.c:845
-#, fuzzy
-msgid "Configure a DSL (or ADSL) connection"
-msgstr "Nastavení připojení k internetu"
-
-#: ../../netconnect.pm_.c:712 ../../netconnect_new.pm_.c:854
-msgid "France"
-msgstr "Francie"
-
-#: ../../netconnect.pm_.c:714 ../../netconnect_new.pm_.c:856
-msgid "Other countries"
-msgstr "Ostatní země"
-
-#: ../../netconnect.pm_.c:718 ../../netconnect_new.pm_.c:860
-msgid "In which country are you located ?"
-msgstr "Ve které zemi se nacházíte?"
-
-#: ../../netconnect.pm_.c:724 ../../netconnect_new.pm_.c:866
-msgid "Alcatel modem"
-msgstr "Alcatel modem"
+#: ../../netconnect.pm_.c:830 ../../netconnect.pm_.c:879
+msgid "Connect to the Internet"
+msgstr "Připojení k Internetu"
-#: ../../netconnect.pm_.c:726 ../../netconnect_new.pm_.c:868
-msgid "ECI modem"
-msgstr "ECI modemem"
+#: ../../netconnect.pm_.c:831
+msgid ""
+"The most common way to connect with adsl is pppoe.\n"
+"Some connections use pptp, a few ones use dhcp.\n"
+"If you don't know, choose 'use pppoe'"
+msgstr ""
+"Nejběžněji se pro připojení pomocí adsl používá pppoe.\n"
+"Některá připojení používají pptp, některá pouze dhcp. Jestli si nejste "
+"jistí, zvolte 'použít pppoe'"
-#: ../../netconnect.pm_.c:730 ../../netconnect_new.pm_.c:872
-msgid "If your adsl modem is an Alcatel one, choose Alcatel. Otherwise, ECI."
-msgstr "Pokud je váš adsl modem Alcatel, zvolte Alcatel, jinak zvolte ECI."
+#: ../../netconnect.pm_.c:833
+msgid "use dhcp"
+msgstr "použít dhcp"
-#: ../../netconnect.pm_.c:748 ../../netconnect_new.pm_.c:890
+#: ../../netconnect.pm_.c:833
msgid "use pppoe"
msgstr "použít pppoe"
-#: ../../netconnect.pm_.c:750 ../../netconnect_new.pm_.c:892
-msgid "don't use pppoe"
-msgstr "nepoužívat pppoe"
-
-#: ../../netconnect.pm_.c:754 ../../netconnect_new.pm_.c:896
-msgid ""
-"The most common way to connect with adsl is dhcp + pppoe.\n"
-"However, some connections only use dhcp.\n"
-"If you don't know, choose 'use pppoe'"
-msgstr ""
-"Nejběžněji se pro připojení pomocí adsl používá dhcp + pppoe.\n"
-"Přesto ale existují připojení, které používají pouze dhcp. Jestli si nejste "
-"jistí, zvolte 'použít pppoe'"
+#: ../../netconnect.pm_.c:833
+msgid "use pptp"
+msgstr "použít pptp"
-#: ../../netconnect.pm_.c:777 ../../netconnect_new.pm_.c:919
-#, fuzzy
-msgid "Configure a cable connection"
-msgstr "Nastavení připojení k internetu"
+#: ../../netconnect.pm_.c:843
+#, c-format
+msgid "I'm about to restart the network device %s. Do you agree?"
+msgstr "Znovu spustím síťové rozhraní %s. Souhlasíte?"
-#: ../../netconnect.pm_.c:799 ../../netconnect_new.pm_.c:941
+#: ../../netconnect.pm_.c:880
msgid ""
"Which dhcp client do you want to use?\n"
-"Default is dhcpd"
+"Default is dhcpcd"
msgstr ""
"Kterého dhcp klienta chcete použít?\n"
-"Standardní je dhcpd"
-
-#: ../../netconnect.pm_.c:812 ../../netconnect_new.pm_.c:954
-#, fuzzy
-msgid "Disable Internet Connection"
-msgstr "Nastavení připojení k internetu"
+"Standardní je dhcpcd"
-#: ../../netconnect.pm_.c:823 ../../netconnect_new.pm_.c:965
-msgid "Configure local network"
-msgstr "Nastavení místní sítě"
-
-#: ../../netconnect.pm_.c:827 ../../netconnect_new.pm_.c:969
-#, fuzzy
+#: ../../netconnect.pm_.c:897
msgid "Network configuration"
msgstr "Nastavení sítě"
-#: ../../netconnect.pm_.c:828 ../../netconnect_new.pm_.c:970
-#, fuzzy
+#: ../../netconnect.pm_.c:898
msgid "Do you want to restart the network"
-msgstr "Chcete si vyzkoušet nastavení?"
+msgstr "Chcete restartovat síť?"
-#: ../../netconnect.pm_.c:836 ../../netconnect_new.pm_.c:978
-msgid "Disable networking"
-msgstr "Vypnutí síťových služeb"
+#: ../../netconnect.pm_.c:901
+#, c-format
+msgid ""
+"A problem occured while restarting the network: \n"
+"\n"
+"%s"
+msgstr ""
+"Vyskytl se problém při restartu sítě: \n"
+"\n"
+"%s"
-#: ../../netconnect.pm_.c:846 ../../netconnect_new.pm_.c:988
-#, fuzzy
-msgid "Configure the Internet connection / Configure local Network"
-msgstr "Připojení k Internetu / Nastavení místní sítě"
+#: ../../netconnect.pm_.c:931
+msgid ""
+"Because you are doing a network installation, your network is already "
+"configured.\n"
+"Click on Ok to keep your configuration, or cancel to reconfigure your "
+"Internet & Network connection.\n"
+msgstr ""
+"Protože provádíte instalaci po síti, je již síť nastavena.\n"
+"Klikněte na Ok pro zachování nastavení nebo klikněte na Zrušit pro nové "
+"nastavení připojení Internetu a k síti.\n"
-#: ../../netconnect.pm_.c:847 ../../netconnect_new.pm_.c:989
+#: ../../netconnect.pm_.c:958
msgid ""
-"Local networking has already been configured.\n"
-"Do you want to:"
+"Welcome to The Network Configuration Wizard\n"
+"\n"
+"We are about to configure your internet/network connection.\n"
+"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
-"Místní síť už byla nastavena.\n"
-"Chcete:"
+"Vítá vás průvodce připojením k síti\n"
+"\n"
+"Nyní lze nastavit připojení k síti nebo internetu.\n"
+"Pokud nechcete použít automatickou detekci, odoznačte políčko.\n"
+
+#: ../../netconnect.pm_.c:960
+msgid "Choose the profile to configure"
+msgstr "Zvolte profil pro nastavení"
+
+#: ../../netconnect.pm_.c:961
+msgid "Use auto detection"
+msgstr "Použít autodetekci"
+
+#: ../../netconnect.pm_.c:967 ../../printerdrake.pm_.c:19
+msgid "Detecting devices..."
+msgstr "Detekuji zařízení..."
+
+#: ../../netconnect.pm_.c:974
+msgid "Normal modem connection"
+msgstr "Modemové připojení"
+
+#: ../../netconnect.pm_.c:974
+#, c-format
+msgid "detected on port %s"
+msgstr "detekováno na portu %s"
+
+#: ../../netconnect.pm_.c:975
+msgid "ISDN connection"
+msgstr "ISDN připojení"
+
+#: ../../netconnect.pm_.c:975
+#, c-format
+msgid "detected %s"
+msgstr "detekováno %s"
+
+#: ../../netconnect.pm_.c:976
+msgid "DSL (or ADSL) connection"
+msgstr "DSL (nebo ADSL) připojení"
+
+#: ../../netconnect.pm_.c:976
+#, c-format
+msgid "detected on interface %s"
+msgstr "detekováno na rozhraní %s"
-#: ../../netconnect.pm_.c:848 ../../netconnect_new.pm_.c:990
+#: ../../netconnect.pm_.c:977
+msgid "Cable connection"
+msgstr "Kabelové připojení"
+
+#: ../../netconnect.pm_.c:978
+msgid "LAN connection"
+msgstr "Připojení k LAN"
+
+#: ../../netconnect.pm_.c:978
+msgid "ethernet card(s) detected"
+msgstr "detekovaná(é) síťová(é) karta(y)"
+
+#: ../../netconnect.pm_.c:983
msgid "How do you want to connect to the Internet?"
msgstr "Jak se chcete připojit k Internetu?"
-#: ../../netconnect.pm_.c:870 ../../netconnect_new.pm_.c:1012
-msgid "Network Configuration"
-msgstr "Nastavení sítě"
-
-#: ../../netconnect.pm_.c:871 ../../netconnect_new.pm_.c:1013
+#: ../../netconnect.pm_.c:1000
msgid ""
-"Now that your Internet connection is configured,\n"
-"your computer can be configured to share its Internet connection.\n"
-"Note: you need a dedicated Network Adapter to set up a Local Area Network "
-"(LAN).\n"
+"Congratulation, The network and internet configuration is finished.\n"
"\n"
-"Would you like to setup the Internet Connection Sharing?\n"
+"The configuration will now be applied to your system."
msgstr ""
+"Gratulujeme, konfigurace sítě a internetu je ukončena.\n"
+"\n"
+"Konfigurace bude nyní aktivována."
+
+#: ../../netconnect.pm_.c:1003
+msgid ""
+"After that is done, we recommend you to restart your X\n"
+"environnement to avoid hostname changing problem."
+msgstr ""
+"Doporučujeme po tomto kroku restartovat X Window,\n"
+"aby se předešlo problémům se změnou jména počítače."
#: ../../network.pm_.c:253
msgid "no network card found"
msgstr "nebyla nalezena síťová karta"
-#: ../../network.pm_.c:273 ../../network.pm_.c:340
+#: ../../network.pm_.c:277 ../../network.pm_.c:387
msgid "Configuring network"
msgstr "Nastavuji síť"
-#: ../../network.pm_.c:274
+#: ../../network.pm_.c:278
msgid ""
"Please enter your host name if you know it.\n"
"Some DHCP servers require the hostname to work.\n"
"Your host name should be a fully-qualified host name,\n"
"such as ``mybox.mylab.myco.com''."
msgstr ""
-"Prosím zadejte Vaše hostname, protože ji vyžadují některé\n"
-"DHCP servery. Vaše hostname musí být úplné, jako například\n"
-"``mybox.mylab.myco.com''."
+"Prosím zadejte jméno vašeho počítače, protože ho vyžadují některé\n"
+"DHCP servery. Toto jméno musí být úplné, jako například\n"
+"'mybox.mylab.myco.com'."
-#: ../../network.pm_.c:278 ../../network.pm_.c:345
+#: ../../network.pm_.c:282 ../../network.pm_.c:392
msgid "Host name"
-msgstr "Host name"
+msgstr "Jméno počítače"
-#: ../../network.pm_.c:297
+#: ../../network.pm_.c:319
msgid ""
"WARNING: This device has been previously configured to connect to the "
"Internet.\n"
-"Simply press OK to keep this device configured.\n"
+"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
msgstr ""
+"VAROVÁNÍ: Toto zařízení již bylo nastaveno pro připojení k Internetu.\n"
+"Klikněte na Ok pro zachování nastavení.\n"
+"Modifikace následujících položek přepíše toto nastavení."
-#: ../../network.pm_.c:302
+#: ../../network.pm_.c:324
msgid ""
"Please enter the IP configuration for this machine.\n"
"Each item should be entered as an IP address in dotted-decimal\n"
@@ -5159,80 +6268,85 @@ msgstr ""
"Každá položka musí být zadána jako IP adresa v 'desetinné' formě\n"
"(například 1.2.3.4)."
-#: ../../network.pm_.c:311 ../../network.pm_.c:312
+#: ../../network.pm_.c:333 ../../network.pm_.c:334
#, c-format
msgid "Configuring network device %s"
msgstr "Nastavuji síťové zařízení %s"
-#: ../../network.pm_.c:314
-msgid "Automatic IP"
-msgstr "Automatická IP"
+#: ../../network.pm_.c:334
+msgid " (driver $module)"
+msgstr " (ovladač $module)"
-#: ../../network.pm_.c:314
+#: ../../network.pm_.c:336 ../../standalone/draknet_.c:231
+#: ../../standalone/draknet_.c:425
msgid "IP address"
msgstr "IP adresa"
-#: ../../network.pm_.c:314
+#: ../../network.pm_.c:337 ../../standalone/draknet_.c:426
msgid "Netmask"
msgstr "Maska sítě"
-#: ../../network.pm_.c:315
+#: ../../network.pm_.c:338
msgid "(bootp/dhcp)"
msgstr "(bootp/dhcp)"
-#: ../../network.pm_.c:321 ../../printerdrake.pm_.c:98
-#: ../../printerdrake.pm_.c:420
+#: ../../network.pm_.c:338
+msgid "Automatic IP"
+msgstr "Automatická IP"
+
+#: ../../network.pm_.c:359 ../../printerdrake.pm_.c:102
+#: ../../printerdrake.pm_.c:425
msgid "IP address should be in format 1.2.3.4"
msgstr "IP adresa musí být ve formátu 1.2.3.4"
-#: ../../network.pm_.c:341
+#: ../../network.pm_.c:388
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
"such as ``mybox.mylab.myco.com''.\n"
"You may also enter the IP address of the gateway if you have one"
msgstr ""
-"Prosím zadejte Vaši hostname.\n"
-"Vaše hostname musí být úplná, jako ``mybox.mylab.myco.com''.\n"
+"Prosím zadejte jméno vašeho počítače.\n"
+"Toto jméno musí být úplné, jako 'mybox.mylab.myco.com'.\n"
"Pokud používáte bránu(gateway), můžete také zadat její adresu"
-#: ../../network.pm_.c:346
+#: ../../network.pm_.c:393
msgid "DNS server"
msgstr "DNS server"
-#: ../../network.pm_.c:347
+#: ../../network.pm_.c:394 ../../standalone/draknet_.c:563
msgid "Gateway"
msgstr "Brána(gateway)"
-#: ../../network.pm_.c:348
+#: ../../network.pm_.c:396
msgid "Gateway device"
msgstr "Zařízení brány(gateway)"
-#: ../../network.pm_.c:358
+#: ../../network.pm_.c:407
msgid "Proxies configuration"
msgstr "Nastavení proxy"
-#: ../../network.pm_.c:359
+#: ../../network.pm_.c:408
msgid "HTTP proxy"
msgstr "HTTP proxy"
-#: ../../network.pm_.c:360
+#: ../../network.pm_.c:409
msgid "FTP proxy"
msgstr "FTP proxy"
-#: ../../network.pm_.c:366
+#: ../../network.pm_.c:412
msgid "Proxy should be http://..."
msgstr "Proxy by měla být http://..."
-#: ../../network.pm_.c:367
+#: ../../network.pm_.c:413
msgid "Proxy should be ftp://..."
msgstr "Proxy by měla být ftp://..."
-#: ../../partition_table.pm_.c:540
+#: ../../partition_table.pm_.c:560
msgid "Extended partition not supported on this platform"
msgstr "Rozšířené diskové oddíly nejsou na tomto systému podporovány"
-#: ../../partition_table.pm_.c:558
+#: ../../partition_table.pm_.c:578
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
@@ -5242,155 +6356,136 @@ msgstr ""
"Jediné řešení je přesunout primární oddíly tak, abyste měli mezeru vedle\n"
"rozšířených oddílů."
-#: ../../partition_table.pm_.c:651
+#: ../../partition_table.pm_.c:672
#, c-format
msgid "Error reading file %s"
msgstr "Chyba při čtení souboru %s"
-#: ../../partition_table.pm_.c:658
+#: ../../partition_table.pm_.c:679
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Obnova ze souboru %s neuspěla: %s"
-#: ../../partition_table.pm_.c:660
+#: ../../partition_table.pm_.c:681
msgid "Bad backup file"
msgstr "Špatný záložní soubor"
-#: ../../partition_table.pm_.c:681
+#: ../../partition_table.pm_.c:703
#, c-format
msgid "Error writing to file %s"
msgstr "Chyba při zapisování do souboru %s"
-#: ../../pkgs.pm_.c:20
-msgid "mandatory"
-msgstr "povinné"
+#: ../../partition_table_raw.pm_.c:161
+msgid ""
+"Something bad is happening on your 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 trash"
+msgstr ""
+"Něco špatného se stalo s pevným diskem. \n"
+"Test na integritu dat selhal. \n"
+"To znamená, že zápis na tento disk může skončit nepředvídaně"
-#: ../../pkgs.pm_.c:21
+#: ../../pkgs.pm_.c:24
msgid "must have"
msgstr "musíte mít"
-#: ../../pkgs.pm_.c:22
+#: ../../pkgs.pm_.c:25
msgid "important"
msgstr "důležité"
-#: ../../pkgs.pm_.c:24
+#: ../../pkgs.pm_.c:26
msgid "very nice"
-msgstr "velmi pěkné"
+msgstr "nejmíň důležité"
-#: ../../pkgs.pm_.c:25
+#: ../../pkgs.pm_.c:27
msgid "nice"
-msgstr "pěkné"
-
-#: ../../pkgs.pm_.c:26 ../../pkgs.pm_.c:27
-msgid "interesting"
-msgstr "zajímavé"
+msgstr "nedůležité"
-#: ../../pkgs.pm_.c:28 ../../pkgs.pm_.c:29 ../../pkgs.pm_.c:30
-#: ../../pkgs.pm_.c:31
+#: ../../pkgs.pm_.c:28
msgid "maybe"
-msgstr "možná"
-
-#: ../../pkgs.pm_.c:34
-msgid "i18n (important)"
-msgstr "i18n (důležité)"
-
-#: ../../pkgs.pm_.c:35
-msgid "i18n (very nice)"
-msgstr "i18n (velmi pěkné)"
-
-#: ../../pkgs.pm_.c:36
-msgid "i18n (nice)"
-msgstr "i18n (pěkné)"
+msgstr "může se hodit"
-#: ../../printer.pm_.c:19
+#: ../../printer.pm_.c:20
msgid "Local printer"
msgstr "Místní tiskárna"
-#: ../../printer.pm_.c:20
+#: ../../printer.pm_.c:21
msgid "Remote printer"
msgstr "Vzdálená tiskárna"
-#: ../../printer.pm_.c:21 ../../printerdrake.pm_.c:410
-msgid "Remote CUPS server"
-msgstr "Vzdálený CUPS server"
-
-#: ../../printer.pm_.c:22
+#: ../../printer.pm_.c:23
msgid "Remote lpd server"
msgstr "Vzdálený lpd server"
-#: ../../printer.pm_.c:23
+#: ../../printer.pm_.c:24
msgid "Network printer (socket)"
msgstr "Síťová tiskárna (socket)"
-#: ../../printer.pm_.c:24
+#: ../../printer.pm_.c:25
msgid "SMB/Windows 95/98/NT"
msgstr "SMB/Windows 95/98/NT"
-#: ../../printer.pm_.c:25
+#: ../../printer.pm_.c:26
msgid "NetWare"
msgstr "NetWare"
-#: ../../printer.pm_.c:26 ../../printerdrake.pm_.c:154
-#: ../../printerdrake.pm_.c:156
+#: ../../printer.pm_.c:27 ../../printerdrake.pm_.c:158
+#: ../../printerdrake.pm_.c:160
msgid "Printer Device URI"
msgstr "URI Tiskového Zařízení"
#: ../../printerdrake.pm_.c:19
-msgid "Detecting devices..."
-msgstr "Detekuji zařízení..."
-
-#: ../../printerdrake.pm_.c:19
msgid "Test ports"
msgstr "Otestovat porty"
-#: ../../printerdrake.pm_.c:35
+#: ../../printerdrake.pm_.c:40
#, c-format
msgid "A printer, model \"%s\", has been detected on "
msgstr "Tiskárna typu \"%s\" byla nalezena na "
-#: ../../printerdrake.pm_.c:48
+#: ../../printerdrake.pm_.c:52
msgid "Local Printer Device"
msgstr "Místní Tiskárna"
-#: ../../printerdrake.pm_.c:49
+#: ../../printerdrake.pm_.c:53
msgid ""
"What device is your printer connected to \n"
"(note that /dev/lp0 is equivalent to LPT1:)?\n"
msgstr ""
-"Ke kterému zařízení je Vaše tiskárna připojena\n"
+"Ke kterému zařízení je vaše tiskárna připojena\n"
"(všimli jste si že /dev/lp0 odpovídá LPT1:)?\n"
-#: ../../printerdrake.pm_.c:51
+#: ../../printerdrake.pm_.c:55
msgid "Printer Device"
-msgstr "Zařízení Tiskárny"
+msgstr "Zařízení tiskárny"
-#: ../../printerdrake.pm_.c:70
+#: ../../printerdrake.pm_.c:74
msgid "Remote lpd Printer Options"
-msgstr "Možnosti Vzdálené lpd Tiskárny"
+msgstr "Možnosti vzdálené lpd tiskárny"
-#: ../../printerdrake.pm_.c:71
+#: ../../printerdrake.pm_.c:75
msgid ""
"To use a remote lpd print queue, you need to supply\n"
"the hostname of the printer server and the queue name\n"
"on that server which jobs should be placed in."
msgstr ""
"Abyste mohli používat vzdálenou tiskovou frontu lpd,\n"
-"musíte zadat hostname tiskového serveru a jméno fronty\n"
+"musíte zadat jméno tiskového serveru a jméno fronty,\n"
"kam má být posílán tisk."
-#: ../../printerdrake.pm_.c:74
+#: ../../printerdrake.pm_.c:78
msgid "Remote hostname"
-msgstr "Vzdálené hostname"
+msgstr "Jméno vzdáleného počítače"
-#: ../../printerdrake.pm_.c:75
+#: ../../printerdrake.pm_.c:79
msgid "Remote queue"
msgstr "Vzdálená fronta"
-#: ../../printerdrake.pm_.c:84
+#: ../../printerdrake.pm_.c:88
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Možnosti SMB (Windows 9x/NT) tiskárny"
-#: ../../printerdrake.pm_.c:85
+#: ../../printerdrake.pm_.c:89
msgid ""
"To print to a SMB printer, you need to provide the\n"
"SMB host name (Note! It may be different from its\n"
@@ -5399,31 +6494,31 @@ msgid ""
"applicable user name, password, and workgroup information."
msgstr ""
"Abyste mohli tisknout na SMB tiskárně, musíte zadat\n"
-"SMB hostname (Pozor! To může být odlišné od její TCP/IP\n"
-"hostname) a možná i IP adresu tiskového serveru, jméno sdílené tiskárny,\n"
+"jméno SMB počítače(Pozor! To může být odlišné od jeho TCP/IP\n"
+"jména) a možná i IP adresu tiskového serveru, jméno sdílené tiskárny,\n"
"vhodné uživatelské jméno, heslo a informace o pracovní skupině."
-#: ../../printerdrake.pm_.c:90
+#: ../../printerdrake.pm_.c:94
msgid "SMB server host"
-msgstr "Hostname SMB serveru"
+msgstr "Jméno SMB serveru"
-#: ../../printerdrake.pm_.c:91
+#: ../../printerdrake.pm_.c:95
msgid "SMB server IP"
-msgstr "IP SMB serveru"
+msgstr "IP adresa SMB serveru"
-#: ../../printerdrake.pm_.c:92
+#: ../../printerdrake.pm_.c:96
msgid "Share name"
msgstr "Sdílené jméno"
-#: ../../printerdrake.pm_.c:95
+#: ../../printerdrake.pm_.c:99
msgid "Workgroup"
msgstr "Pracovní skupina"
-#: ../../printerdrake.pm_.c:120
+#: ../../printerdrake.pm_.c:124
msgid "NetWare Printer Options"
-msgstr "Možnosti NetWare Tiskárny"
+msgstr "Možnosti NetWare tiskárny"
-#: ../../printerdrake.pm_.c:121
+#: ../../printerdrake.pm_.c:125
msgid ""
"To print to a NetWare printer, you need to provide the\n"
"NetWare print server name (Note! it may be different from its\n"
@@ -5431,55 +6526,55 @@ msgid ""
"wish to access and any applicable user name and password."
msgstr ""
"Abyste mohli tisknout na NetWare tiskárně, musíte zadat jméno NetWare\n"
-"serveru (Pozor! To může být odlišné od jeho TCP/IP hostname!), jméno\n"
-"tiskové fronty tiskárny kterou chcete používat a uživatelské\n"
+"serveru (Pozor! To může být odlišné od jeho jména pro TCP/IP!), jméno\n"
+"tiskové fronty tiskárny, kterou chcete používat a uživatelské\n"
"jméno a heslo."
-#: ../../printerdrake.pm_.c:125
+#: ../../printerdrake.pm_.c:129
msgid "Printer Server"
-msgstr "Tiskový Server"
+msgstr "Tiskový server"
-#: ../../printerdrake.pm_.c:126
+#: ../../printerdrake.pm_.c:130
msgid "Print Queue Name"
-msgstr "Jméno Tiskové Fronty"
+msgstr "Jméno tiskové fronty"
-#: ../../printerdrake.pm_.c:138
+#: ../../printerdrake.pm_.c:142
msgid "Socket Printer Options"
-msgstr "Možnosti Soketové Tiskárny"
+msgstr "Možnosti soketové tiskárny"
-#: ../../printerdrake.pm_.c:139
+#: ../../printerdrake.pm_.c:143
msgid ""
"To print to a socket printer, you need to provide the\n"
"hostname of the printer and optionally the port number."
msgstr ""
"Abyste mohli tisknout na soketové tiskárně, musíte zadat\n"
-"hostname tiskárny a volitelně i číslo portu."
+"jméno počítače s tiskárnou a volitelně i číslo portu."
-#: ../../printerdrake.pm_.c:141
+#: ../../printerdrake.pm_.c:145
msgid "Printer Hostname"
-msgstr "Hostname tiskárny"
+msgstr "Jméno počítače s tiskárnou"
-#: ../../printerdrake.pm_.c:142 ../../printerdrake.pm_.c:417
+#: ../../printerdrake.pm_.c:146 ../../printerdrake.pm_.c:422
msgid "Port"
msgstr "Port"
-#: ../../printerdrake.pm_.c:155
+#: ../../printerdrake.pm_.c:159
msgid "You can specify directly the URI to access the printer with CUPS."
msgstr "S CUPS můžete přímo zadat URI pro přístup k tiskárně."
-#: ../../printerdrake.pm_.c:188 ../../printerdrake.pm_.c:240
+#: ../../printerdrake.pm_.c:192 ../../printerdrake.pm_.c:244
msgid "What type of printer do you have?"
msgstr "Jaký typ tiskárny máte?"
-#: ../../printerdrake.pm_.c:200 ../../printerdrake.pm_.c:307
+#: ../../printerdrake.pm_.c:204 ../../printerdrake.pm_.c:305
msgid "Do you want to test printing?"
msgstr "Chcete vyzkoušet tisk?"
-#: ../../printerdrake.pm_.c:203 ../../printerdrake.pm_.c:318
+#: ../../printerdrake.pm_.c:207 ../../printerdrake.pm_.c:316
msgid "Printing test page(s)..."
-msgstr "Tisknu testovací stránku(ky)"
+msgstr "Tisknu testovací stránku(y)"
-#: ../../printerdrake.pm_.c:210 ../../printerdrake.pm_.c:326
+#: ../../printerdrake.pm_.c:214 ../../printerdrake.pm_.c:324
#, c-format
msgid ""
"Test page(s) have been sent to the printer daemon.\n"
@@ -5496,7 +6591,7 @@ msgstr ""
"\n"
"Proběhl tisk správně ?"
-#: ../../printerdrake.pm_.c:214 ../../printerdrake.pm_.c:330
+#: ../../printerdrake.pm_.c:218 ../../printerdrake.pm_.c:328
msgid ""
"Test page(s) have been sent to the printer daemon.\n"
"This may take a little time before printer start.\n"
@@ -5506,83 +6601,79 @@ msgstr ""
"Může chvilku trvat než začne tisk.\n"
"Proběhl tisk správně ?"
-#: ../../printerdrake.pm_.c:230
+#: ../../printerdrake.pm_.c:234
msgid "Yes, print ASCII test page"
msgstr "Ano, vytiskni testovací ASCII stránku"
-#: ../../printerdrake.pm_.c:231
+#: ../../printerdrake.pm_.c:235
msgid "Yes, print PostScript test page"
msgstr "Ano, vytiskni Postskriptovou testovací stránku"
-#: ../../printerdrake.pm_.c:232
+#: ../../printerdrake.pm_.c:236
msgid "Yes, print both test pages"
msgstr "Ano, vytiskni obě testovací stránky"
-#: ../../printerdrake.pm_.c:239
+#: ../../printerdrake.pm_.c:243
msgid "Configure Printer"
-msgstr "Nastavení Tiskárny"
+msgstr "Nastavení tiskárny"
-#: ../../printerdrake.pm_.c:272
+#: ../../printerdrake.pm_.c:273
msgid "Printer options"
msgstr "Možnosti tiskárny"
-#: ../../printerdrake.pm_.c:273
+#: ../../printerdrake.pm_.c:274
msgid "Paper Size"
-msgstr "Velikost Papíru"
+msgstr "Velikost papíru"
-#: ../../printerdrake.pm_.c:274
+#: ../../printerdrake.pm_.c:275
msgid "Eject page after job?"
msgstr "Vysunout papír po tisku?"
-#: ../../printerdrake.pm_.c:279
+#: ../../printerdrake.pm_.c:280
msgid "Uniprint driver options"
-msgstr "Možnosti Uniprint ovladače"
+msgstr "Možnosti ovladače Uniprint"
-#: ../../printerdrake.pm_.c:280
+#: ../../printerdrake.pm_.c:281
msgid "Color depth options"
-msgstr "Možnosti Barevné hloubky"
+msgstr "Možnosti barevné hloubky"
-#: ../../printerdrake.pm_.c:282
+#: ../../printerdrake.pm_.c:283
msgid "Print text as PostScript?"
msgstr "Tisknout text jako PostScript?"
-#: ../../printerdrake.pm_.c:283
-msgid "Reverse page order"
-msgstr "Tisknout odzadu"
-
#: ../../printerdrake.pm_.c:285
msgid "Fix stair-stepping text?"
msgstr "Opravovat schodovitý text?"
-#: ../../printerdrake.pm_.c:288
+#: ../../printerdrake.pm_.c:287
msgid "Number of pages per output pages"
msgstr "Počet stránek na jeden vytištěný list"
-#: ../../printerdrake.pm_.c:289
+#: ../../printerdrake.pm_.c:288
msgid "Right/Left margins in points (1/72 of inch)"
-msgstr "Pravý/Levý okraj v bodech (1/72 palce)"
+msgstr "Pravý/levý okraj v bodech (1/72 palce)"
-#: ../../printerdrake.pm_.c:290
+#: ../../printerdrake.pm_.c:289
msgid "Top/Bottom margins in points (1/72 of inch)"
-msgstr "Horní/Dolní okraj v bodech (1/72 palce)"
+msgstr "Horní/dolní okraj v bodech (1/72 palce)"
-#: ../../printerdrake.pm_.c:293
+#: ../../printerdrake.pm_.c:291
msgid "Extra GhostScript options"
msgstr "Extra možnosti GhostScriptu"
-#: ../../printerdrake.pm_.c:296
+#: ../../printerdrake.pm_.c:293
msgid "Extra Text options"
msgstr "Speciální textové možnosti"
-#: ../../printerdrake.pm_.c:346
-msgid "Printer"
-msgstr "Tiskárna"
+#: ../../printerdrake.pm_.c:295
+msgid "Reverse page order"
+msgstr "Tisknout odzadu"
-#: ../../printerdrake.pm_.c:347
+#: ../../printerdrake.pm_.c:345
msgid "Would you like to configure a printer?"
msgstr "Chtěli byste nastavit tiskárnu?"
-#: ../../printerdrake.pm_.c:350
+#: ../../printerdrake.pm_.c:351
msgid ""
"Here are the following print queues.\n"
"You can add some more or change the existing ones."
@@ -5590,29 +6681,28 @@ msgstr ""
"Zde jsou tiskové fronty.\n"
"Můžete přidat další nebo změnit stávající."
-#: ../../printerdrake.pm_.c:365
-#, fuzzy
+#: ../../printerdrake.pm_.c:370
msgid "CUPS starting"
-msgstr "Odhaduji"
+msgstr "Startuje se CUPS"
-#: ../../printerdrake.pm_.c:365
+#: ../../printerdrake.pm_.c:370
msgid "Reading CUPS drivers database..."
-msgstr ""
+msgstr "Načítám databázi ovladačů pro CUPS..."
-#: ../../printerdrake.pm_.c:379 ../../printerdrake.pm_.c:444
-#: ../../printerdrake.pm_.c:457 ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:384 ../../printerdrake.pm_.c:450
+#: ../../printerdrake.pm_.c:471 ../../printerdrake.pm_.c:479
msgid "Select Printer Connection"
msgstr "Zvolte připojení tiskárny"
-#: ../../printerdrake.pm_.c:380 ../../printerdrake.pm_.c:458
+#: ../../printerdrake.pm_.c:385 ../../printerdrake.pm_.c:472
msgid "How is the printer connected?"
msgstr "Jak je tiskárna připojena?"
-#: ../../printerdrake.pm_.c:387
+#: ../../printerdrake.pm_.c:392
msgid "Select Remote Printer Connection"
msgstr "Zvolte připojení vzdálené tiskárny"
-#: ../../printerdrake.pm_.c:388
+#: ../../printerdrake.pm_.c:393
msgid ""
"With a remote CUPS server, you do not have to configure\n"
"any printer here; printers will be automatically detected.\n"
@@ -5622,8 +6712,7 @@ msgstr ""
"ty budou automaticky detekovány.\n"
"Pokud si nejste jistí, zvolte \"Vzdálený CUPS server\"."
-#: ../../printerdrake.pm_.c:411
-#, fuzzy
+#: ../../printerdrake.pm_.c:416
msgid ""
"With a remote CUPS server, you do not have to configure\n"
"any printer here; printers will be automatically detected\n"
@@ -5631,24 +6720,29 @@ msgid ""
"latter case, you have to give the CUPS server IP address\n"
"and optionally the port number."
msgstr ""
-"V případě CUPS serveru nemusíte přímo nastavovat tiskárny,\n"
-"ty budou automaticky detekovány.\n"
-"Pokud si nejste jistí, zvolte \"Vzdálený CUPS server\"."
+"V případě vzdáleného CUPS serveru nemusíte přímo nastavovat tiskárny,\n"
+"ty budou automaticky detekovány pokud nemáte server na jiné síti;\n"
+"v dalším kroku zadejte IP adresu pro vzdálený CUPS server\n"
+"a volitelně také číslo portu."
-#: ../../printerdrake.pm_.c:416
-#, fuzzy
+#: ../../printerdrake.pm_.c:421
msgid "CUPS server IP"
-msgstr "IP SMB serveru"
+msgstr "IP adresa CUPS serveru"
-#: ../../printerdrake.pm_.c:424
+#: ../../printerdrake.pm_.c:429
msgid "Port number should be numeric"
-msgstr ""
+msgstr "Číslo portu musí být numerické"
-#: ../../printerdrake.pm_.c:445 ../../printerdrake.pm_.c:464
+#: ../../printerdrake.pm_.c:451 ../../printerdrake.pm_.c:480
msgid "Remove queue"
msgstr "Odebrat frontu"
-#: ../../printerdrake.pm_.c:446
+#: ../../printerdrake.pm_.c:454
+msgid ""
+"Name of printer should contains only letters, numbers and the underscore"
+msgstr "Jméno fronty může obsahovat pouze písmena, číslice a podtržítko"
+
+#: ../../printerdrake.pm_.c:461
msgid ""
"Every printer need a name (for example lp).\n"
"Other parameters such as the description of the printer or its location\n"
@@ -5656,23 +6750,23 @@ msgid ""
"how is the printer connected?"
msgstr ""
"Každá tiskárna musí mít jméno (např. lp).\n"
-"Ostatní parametry jako je popis tiskárny, nebo její umístění\n"
+"Ostatní parametry jako je popis tiskárny nebo její umístění\n"
"mohou také být definovány. Jaké má být použito jméno pro tuto\n"
"tiskárnu a jak je tak tiskárna připojena?"
-#: ../../printerdrake.pm_.c:450
+#: ../../printerdrake.pm_.c:465
msgid "Name of printer"
msgstr "Jméno tiskárny"
-#: ../../printerdrake.pm_.c:451
+#: ../../printerdrake.pm_.c:466
msgid "Description"
msgstr "Popis"
-#: ../../printerdrake.pm_.c:452
+#: ../../printerdrake.pm_.c:467
msgid "Location"
msgstr "Umístění"
-#: ../../printerdrake.pm_.c:465
+#: ../../printerdrake.pm_.c:482
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"
@@ -5683,45 +6777,49 @@ msgstr ""
"jméno (často lp) a vlastní (spool) adresář. Jaké jméno a adresář\n"
"má být použit pro tuto frontu, a jak je tiskárna připojena ?"
-#: ../../printerdrake.pm_.c:468
+#: ../../printerdrake.pm_.c:489
msgid "Name of queue"
msgstr "Jméno fronty"
-#: ../../printerdrake.pm_.c:469
+#: ../../printerdrake.pm_.c:490
msgid "Spool directory"
msgstr "Spool adresář"
-#: ../../printerdrake.pm_.c:470
+#: ../../printerdrake.pm_.c:491
msgid "Printer Connection"
msgstr "Připojení tiskárny"
-#: ../../raid.pm_.c:32
+#: ../../raid.pm_.c:33
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Nemůžu přidat oddíl do _naformátovaného_ RAID md%d"
-#: ../../raid.pm_.c:102
+#: ../../raid.pm_.c:103
msgid "Can't write file $file"
msgstr "Nemůžu zapsat soubor $file"
-#: ../../raid.pm_.c:127
+#: ../../raid.pm_.c:128
msgid "mkraid failed"
msgstr "mkraid neuspěl"
-#: ../../raid.pm_.c:127
+#: ../../raid.pm_.c:128
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "mkraid neuspěl (možná, že chybí raidtools?)"
-#: ../../raid.pm_.c:143
+#: ../../raid.pm_.c:144
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Není dostatek oddílů pro RAID úrovně %d\n"
-#: ../../services.pm_.c:15
+#: ../../services.pm_.c:16
+msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
+msgstr ""
+
+#: ../../services.pm_.c:17
msgid "Anacron a periodic command scheduler."
msgstr "Anacron - spouští opakující se akce"
-#: ../../services.pm_.c:16
+#: ../../services.pm_.c:18
msgid ""
"apmd is used for monitoring batery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
@@ -5729,7 +6827,7 @@ msgstr ""
"apmd je používán pro sledování stavu baterie a zaznamenávání přes syslog.\n"
"Může také být použit pro vypnutí počítače při vybité baterii."
-#: ../../services.pm_.c:18
+#: ../../services.pm_.c:20
msgid ""
"Runs commands scheduled by the at command at the time specified when\n"
"at was run, and runs batch commands when the load average is low enough."
@@ -5737,7 +6835,7 @@ msgstr ""
"Spouští příkazy naplánované příkazem na určitý čas příkazem 'at'.\n"
"Také spouští příkazy při nízkém vytížení systému."
-#: ../../services.pm_.c:20
+#: ../../services.pm_.c:22
msgid ""
"cron is a standard UNIX program that runs user-specified programs\n"
"at periodic scheduled times. vixie cron adds a number of features to the "
@@ -5748,7 +6846,7 @@ msgstr ""
"v předem definovaných intervalech. vixie cron má navíc mnoho vlastností,\n"
"včetně vyšší bezpečnosti a více možností nastavení."
-#: ../../services.pm_.c:23
+#: ../../services.pm_.c:25
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
@@ -5759,13 +6857,19 @@ msgstr ""
"Commander).\n"
"Může také v konzoli provádět operace 'vyjmi' a 'vlož' a ovládat pop-up menu."
-#: ../../services.pm_.c:26
+#: ../../services.pm_.c:28
+msgid ""
+"HardDrake runs a hardware probe, and optionally configures\n"
+"new/changed hardware."
+msgstr ""
+
+#: ../../services.pm_.c:30
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files\n"
"and CGI."
msgstr "Apache je WWW server. Je používán k poskytování HTML a CGI souborů."
-#: ../../services.pm_.c:28
+#: ../../services.pm_.c:32
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
@@ -5779,7 +6883,13 @@ msgstr ""
"telnetu, ftp, rsh a rlogin. Pokud vypnete inetd, vypnete tím i ostatní\n"
"služby které spouští."
-#: ../../services.pm_.c:32
+#: ../../services.pm_.c:36
+msgid ""
+"Launch packet filtering for Linux kernel 2.2 series, to set\n"
+"up a firewall to protect your machine from network attacks."
+msgstr ""
+
+#: ../../services.pm_.c:38
msgid ""
"This package loads the selected keyboard map as set in\n"
"/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n"
@@ -5788,7 +6898,23 @@ msgstr ""
"Tento balíček nahraje zvolenou mapu klávesnice (v /etc/sysconfig/keyboard).\n"
"Pro většinu počítačů byste ho měli nechat zapnutý."
-#: ../../services.pm_.c:35
+#: ../../services.pm_.c:41
+msgid ""
+"Automatic regeneration of kernel header in /boot for\n"
+"/usr/include/linux/{autoconf,version}.h"
+msgstr ""
+
+#: ../../services.pm_.c:43
+msgid "Automatic detection and configuration of hardware at boot."
+msgstr ""
+
+#: ../../services.pm_.c:44
+msgid ""
+"Linuxconf will sometimes arrange to perform various tasks\n"
+"at boot-time to maintain the system configuration."
+msgstr ""
+
+#: ../../services.pm_.c:46
msgid ""
"lpd is the print daemon required for lpr to work properly. It is\n"
"basically a server that arbitrates print jobs to printer(s)."
@@ -5796,7 +6922,13 @@ msgstr ""
"lpd je tiskový démon, bez kterého nebude fungovat lpr (program pro tisk).\n"
"Je to server který posílá tištěné dokumenty jednotlivým tiskárnám."
-#: ../../services.pm_.c:37
+#: ../../services.pm_.c:48
+msgid ""
+"Linux Virtual Server, used to build a high-performance and highly\n"
+"available server."
+msgstr ""
+
+#: ../../services.pm_.c:50
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve\n"
"host names to IP addresses."
@@ -5804,7 +6936,7 @@ msgstr ""
"named (BIND) je DNS server, který překládá hostitelská jména (hostnames) na\n"
"IP adresy."
-#: ../../services.pm_.c:39
+#: ../../services.pm_.c:52
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
@@ -5813,7 +6945,7 @@ msgstr ""
"(NCP)\n"
"přípojné body (mount points)."
-#: ../../services.pm_.c:41
+#: ../../services.pm_.c:54
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
@@ -5821,7 +6953,7 @@ msgstr ""
"Aktivuje a Deaktivuje všechny síťová rozhraní která mají nastartovat při\n"
"startu systému."
-#: ../../services.pm_.c:43
+#: ../../services.pm_.c:56
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
"This service provides NFS server functionality, which is configured via the\n"
@@ -5830,7 +6962,7 @@ msgstr ""
"NFS je oblíbený protokol pro sdílení souborů přes sítě TCP/IP.\n"
"Tato služba poskytuje NFS server, jehož nastavení je v /etc/exports."
-#: ../../services.pm_.c:46
+#: ../../services.pm_.c:59
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP\n"
"networks. This service provides NFS file locking functionality."
@@ -5838,7 +6970,17 @@ msgstr ""
"NFS je oblíbený protokol pro sdílení souborů přes sítě TCP/IP.\n"
"Tato služba poskytuje možnost uzamykání souborů na NFS."
-#: ../../services.pm_.c:48
+#: ../../services.pm_.c:61
+msgid ""
+"Automatically switch on numlock key locker under console\n"
+"and XFree at boot."
+msgstr ""
+
+#: ../../services.pm_.c:63
+msgid "Support the OKI 4w and compatible winprinters."
+msgstr ""
+
+#: ../../services.pm_.c:64
msgid ""
"PCMCIA support is usually to support things like ethernet and\n"
"modems in laptops. It won't get started unless configured so it is safe to "
@@ -5850,7 +6992,7 @@ msgstr ""
"problém\n"
"jí mít nainstalovanou i na počítačích, které ji nepotřebují."
-#: ../../services.pm_.c:51
+#: ../../services.pm_.c:67
msgid ""
"The portmapper manages RPC connections, which are used by\n"
"protocols such as NFS and NIS. The portmap server must be running on "
@@ -5861,13 +7003,13 @@ msgstr ""
"a NIS. portmap sever musí být spuštěn na počítačích, které fungují jako\n"
"servery pro protokoly, které používají mechanismus RPC."
-#: ../../services.pm_.c:54
+#: ../../services.pm_.c:70
msgid ""
"Postfix is a Mail Transport Agent, which is the program that\n"
"moves mail from one machine to another."
msgstr "Postfix je program pro doručování pošty z jednoho počítače na jiný."
-#: ../../services.pm_.c:56
+#: ../../services.pm_.c:72
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
@@ -5875,7 +7017,13 @@ msgstr ""
"Ukládá a obnovuje 'stav entropie' na počítači, což je používáno pro\n"
"kvalitnější generaci náhodných čísel."
-#: ../../services.pm_.c:58
+#: ../../services.pm_.c:74
+msgid ""
+"Assign raw devices to block devices (such as hard drive\n"
+"partitions), for the use of applications such as Oracle"
+msgstr ""
+
+#: ../../services.pm_.c:76
msgid ""
"The routed daemon allows for automatic IP router table updated via\n"
"the RIP protocol. While RIP is widely used on small networks, more complex\n"
@@ -5886,7 +7034,7 @@ msgstr ""
"pro IP adresy. K tomu používá protokol RIP. Zatímco RIP je běžně používán\n"
"v malých sítích, pro složitější sítě je zapotřebí složitější protokoly."
-#: ../../services.pm_.c:61
+#: ../../services.pm_.c:79
msgid ""
"The rstat protocol allows users on a network to retrieve\n"
"performance metrics for any machine on that network."
@@ -5894,7 +7042,7 @@ msgstr ""